

*  {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
      font-family: 'DM Sans', sans-serif;
            background-color: #f8fafc;
            padding-top: 70px;
            line-height: 1.6;
        }

        /*=============== HEADER ===============*/
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: hsl(220, 100%, 99%);
            z-index: 1000;
            padding: 0;
            box-shadow: 0 2px 16px hsla(220, 68%, 12%, 0.1);
            border-bottom: 1px solid #e2e8f0;
        }

        /*=============== NAV ===============*/
        .nav {
            height: 70px;
            display: flex;
            align-items: center;
        }

        .nav__data {
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            position: relative;
        }

        .nav__logo {
            display: inline-flex;
            align-items: center;
            color: hsl(220, 48%, 28%);
            font-weight: 700;
            font-size: 1.5rem;
            text-decoration: none;
            transition: opacity 0.3s;
            flex-shrink: 0;
            z-index: 1001;
        }

        .nav__logo:hover {
            opacity: 0.8;
        }

        .nav__logo img {
            width: 100px;
            height: auto;
        }

        .nav__toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            background: transparent;
            border: none;
            position: relative;
        }

        .nav__toggle span {
            width: 25px;
            height: 3px;
            background: hsl(220, 48%, 28%);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
            transform-origin: center;
        }

        /*=============== MAIN NAVIGATION ===============*/
        .nav__menu {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: end;
            margin: 0 2rem;
        }

        .nav__list {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 3rem;
            margin: 0;
        }

        .nav__link {
            color: hsl(220, 48%, 28%);
            font-weight: 500;
            font-size: 15px;
            padding: 1rem 0;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav__link:hover {
            color: hsl(220, 68%, 54%);
        }

        .nav__link.active {
            color: hsl(220, 68%, 54%);
            border-bottom: 2px solid hsl(220, 68%, 54%);
        }

        /*=============== DROPDOWN ===============*/
        .dropdown__item {
            position: relative;
        }

        .dropdown__button {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: none;
            border: none;
            color: inherit;
            font-size: inherit;
        
        
        }

        .dropdown__arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .dropdown__container {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            min-width: 600px;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            margin-top: 10px;
        }

        .dropdown__container::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid white;
        }

        .dropdown__content {
        display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
    justify-content: flex-start;
        }

       .dropdown__group {
    flex: 1 1 220px; /* min 220px, zgjerohen sipas hapësirës */
    padding: 0;
    border-right: none;
}

        .dropdown__group:first-child {
            border-right: 1px solid #e5e7eb;
        }

        .dropdown__icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, hsl(220, 68%, 54%), hsl(220, 68%, 64%));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .dropdown__icon i {
            color: white;
            font-size: 18px;
        }

        .dropdown__title {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

       .dropdown__description {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    max-width: 260px;
}

        .dropdown__list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .dropdown__list li {
            margin-bottom: 0.5rem;
        }

        .dropdown__link {
            display: flex;
            align-items: center;
            padding: 0.5rem;
            color: #4b5563;
            text-decoration: none;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .dropdown__link:hover {
            background-color: #f3f4f6;
            color: hsl(220, 68%, 54%);
            transform: translateX(4px);
        }

        .dropdown__link i {
            margin-right: 8px;
            width: 16px;
            color: #9ca3af;
        }

        .dropdown__link:hover i {
            color: hsl(220, 68%, 54%);
        }

        /*=============== DROPDOWN HOVER EFFECTS ===============*/
        .dropdown__item:hover .dropdown__container {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown__item:hover .dropdown__arrow {
            transform: rotate(180deg);
        }

        /*=============== RIGHT MENU ===============*/
        .nav__right {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .nav__right .nav__link {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .nav__right .nav__link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /*=============== BUTTONS ===============*/
        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .btn-primary:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            background: linear-gradient(135deg, #5a67d8, #667eea);
        }

        .btn-primary i {
            font-size: 12px;
        }

        /*=============== MOBILE OVERLAY ===============*/
        .mobile__overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile__overlay.active {
            opacity: 1;
        }

        /*=============== RESPONSIVE BREAKPOINTS ===============*/

        /* Large tablets and small desktops */
        @media screen and (max-width: 1024px) {
            .nav__data {
                padding: 0 1.5rem;
            }

            .nav__list {
                gap: 2rem;
            }

            .dropdown__container {
                min-width: 500px;
            }

            .btn-primary {
                padding: 0.6rem 1.2rem;
                font-size: 13px;
            }
        }

        /* Standard tablets */
        @media screen and (max-width: 900px) {
            .nav__list {
                gap: 1.5rem;
            }

            .dropdown__container {
                min-width: 450px;
            }

            .nav__right {
                gap: 1rem;
            }
        }

        /* Small tablets and large phones */
        @media screen and (max-width: 768px) {
            .nav__toggle {
                display: flex;
            }

            .nav__data {
                padding: 0 1rem;
            }

            .nav__logo img {
                width: 80px;
            }

            .nav__menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: hsl(220, 100%, 99%);
                flex-direction: column;
                align-items: stretch;
                overflow-y: auto;
                transition: left 0.3s ease;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                z-index: 999;
                margin: 0;
                justify-content: flex-start;
            }

            .nav__menu.active {
                left: 0;
            }

            .nav__list {
                flex-direction: column;
                padding: 1rem 0;
                gap: 0;
                width: 100%;
            }

            .nav__list li {
                width: 100%;
            }

            .nav__link {
                padding: 1rem 2rem;
                border-bottom: 1px solid #e2e8f0;
                justify-content: space-between;
            }

            .nav__right {
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                border-top: 2px solid #e2e8f0;
                background: rgba(248, 250, 252, 0.8);
            }

            .btn-primary {
                justify-content: center;
                width: 100%;
                padding: 1rem;
            }

            /* Dropdown mobile styles */
            .dropdown__container {
                position: static;
                transform: none;
                min-width: auto;
                margin-top: 0;
                border-radius: 0;
                box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.05);
                background: rgba(248, 250, 252, 0.95);
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transition: all 0.3s ease;
            }

            .dropdown__container::before {
                display: none;
            }

            .dropdown__container.active {
                opacity: 1;
                visibility: visible;
                max-height: 600px;
            }
            .dropdown__item:hover .dropdown__container {
        opacity: 1;
        visibility: visible;
        transform: none; /* Removes the transform property */
    }

            .dropdown__content {
        flex-direction: column;
        gap: 1rem;
    }
  .dropdown__group {
        flex: 1 1 100%;
        border-bottom: 1px solid #e5e7eb;
    
        margin-bottom: 1rem;
    }
            .dropdown__group:first-child {
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
           
                margin-bottom: 1rem;
            }

            .dropdown__button {
                width: 100%;
                justify-content: space-between;
            }

            /* Hamburger animation */
            .nav__toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .nav__toggle.active span:nth-child(2) {
                opacity: 0;
                transform: translateX(-20px);
            }

            .nav__toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .mobile__overlay {
                display: block;
            }
        }

        /* Standard phones */
        @media screen and (max-width: 480px) {
            .nav__data {
                padding: 0 0.75rem;
            }

            .nav__logo img {
                width: 70px;
            }

            .nav__toggle {
                padding: 6px;
            }

            .nav__toggle span {
                width: 22px;
                height: 2.5px;
            }

            .nav__link {
                padding: 0.8rem 1.5rem;
                font-size: 14px;
            }

            .dropdown__content {
                padding: 1rem;
            }

            .dropdown__icon {
                width: 35px;
                height: 35px;
            }

            .dropdown__title {
                font-size: 15px;
            }

            .dropdown__description {
                font-size: 12px;
            }

            .nav__right {
                padding: 0.3rem;
            }

            .btn-primary {
                font-size: 13px;
                padding: 0.8rem;
            }
        }

        /* Small phones */
        @media screen and (max-width: 360px) {
            .nav__data {
                padding: 0 0.5rem;
            }

            .nav__logo img {
                width: 60px;
            }

            .nav__link {
                padding: 0.7rem 1rem;
                font-size: 13px;
            }

            .dropdown__content {
                padding: 0.8rem;
            }

            .nav__right {
                padding: 1rem;
            }

            .btn-primary {
                font-size: 12px;
            }
        }



        /* footer */
    
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
.terms-list li {
    display: inline;
}

li {
    list-style: none;
}
        .footer {
            background-color: rgb(18, 41, 85) !important;
            color: #b0b0b0;
            /* padding: 40px 0; */
            font-size: 14px;
            position: relative;
            z-index: 1;

        }
        .footer a{
           
            gap: 3;
            font-weight: 400;
            color: #ffffff;
            
        }
        .footer h4{
           
            gap: 1;
            font-weight: 400;
            color: #d8d5d5;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            justify-items: left;
            align-items: center;
            padding: 20px;
            column-gap: 2px !important;
             row-gap: 2px !important;

        }
        .app1{
            width:100% !important;
        }
           .list-unstyled li, .terms-list, .txt1 {
             padding-block: 3px !important;
             font-size: 15px;
            color: #ffffff;
           }
           .list-unstyled li:hover, .terms-list:hover{
    color: var(--text-gray);
}
          .t1{
            margin-left: -30px !important;
           }
        /* From Uiverse.io by cssbuttons-io */
        .button1 {
            display: inline-block;
            padding: 10px 18px;
            border: 1px solid #4f4f4f;
            border-radius: 4px;
            transition: all 0.2s ease-in;
            position: relative;
            overflow: hidden;
            font-size: 15px;
            cursor: pointer;
            color: rgb(255, 255, 255);
            z-index: 1;

            background-color: #5B73E8;
        }

        .button {
            display: inline-block;
            padding: 10px 18px;
            border: 1px solid #4f4f4f;
            border-radius: 4px;
            transition: all 0.2s ease-in;
            position: relative;
            
            overflow: hidden;
            font-size: 15px;
            cursor: pointer;
            color: black;
            z-index: 1;
            background-color: #FFC720;
        }

       .button:before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%) scaleY(1) scaleX(1.25);
            top: 100%;
            width: 140%;
            height: 180%;
            background-color: #122955;
            border-radius: 50%;
            display: block;
            transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
            z-index: -1;
        }

        .button:after {
            content: "";
            position: absolute;
            left: 55%;
            transform: translateX(-50%) scaleY(1) scaleX(1.45);
            top: 180%;
            width: 160%;
            height: 190%;
            background-color: #122955;
            border-radius: 50%;
            display: block;
            transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
            z-index: -1;
        }

        .button:hover {
            color: #ffffff;
            border: 1px solid #5B73E8;
        }

        .button:hover:before {
            /* top: -35%; */
            background-color: #5B73E8;
            transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
        }

        .button:hover:after {
            top: -45%;
            background-color: #5B73E8;
            transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
        }

        
.footer-bottom {
  padding-block: 20px;
  border-block-start: 1px solid #374886;
  font-size: 18px;
  color: white;
  display: flex;
  
} 

 .footer-bottom .left-section,
.footer-bottom .center-section {
  display: flex;
  justify-content: center;
}

.footer-bottom .left-section {
  flex-direction: column;
  text-align: left;
} 

.footer-brandbottom {
 
    text-align: center;
  border-block-start: 1px solid #374886;
  padding: 20px 0;
}
.footer-brand {
    margin-top: 20px;
  border-block-start: 1px solid #374886;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-description {
  font-size: 14px;
  color: #b0c4de; 
  margin-bottom: 15px;
  line-height: 1.5;
}

.copyright-link {
  display: inline-block;
}
.footer-brand {
  border-block-start: 1px solid #374886;
  padding: 20px 0;
  display: flex;
  justify-content: space-between; /* Terms on the left, social icons on the right */
  align-items: center;
  flex-wrap: wrap;
}
.social-network a {
        width: 2.1875rem;
        height: 2.1875rem;
        margin: .5rem;
        line-height: 2rem;
        font-size: 20px;
        display: inline-block;
        /* border: .120rem solid #bcc6f5; */
            box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
              background-color: rgba(0, 0, 0, 0.233);
        color: var(--text-gray);
        text-align: center;
     
        -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
      }
    .social-network a:hover {
        background-color: rgba(0, 0, 0, 0.233);
  
        color: var(--text-white);
        box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
        transform: translateY(-0.1875rem);
        /* border: .125rem solid #192841; */
      }

      .social-network{
          color: #bcc6f5 ;
      }

  .flex-container {
    display: flex;
    align-items: center; 
    gap: 13px; 

.flex-item {
    flex: 0 0 auto;
}

.or-text {
    margin: 0 5px;
}}


/* Responsive Design */
@media (max-width: 992px) {
  
    .flex-container {
        flex-direction: column;
        align-items: flex-center;
    }
    .or-text{
        display: none;
    }

    .button, .button1 {
        width: 100%;
        text-align: center;
    }

    .or-text {
        text-align: center;
        width: 100%;
    }

    .app1 {
        width: 100px;
    }

    .terms {
       text-align: center !important;
    }
    .inter1{
        width:100px;
    }
 .social-network{
    margin-left: 30% !important;
 }
}

.footer a:hover {
  color: #e7e0c9;
  text-decoration: underline;
       
}