@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #FFE082;
    --primary-dark: #A46880;
    --bg-dark: #011A2B;
    --text-light: #FFFFFF;
    --text-muted: #D7D6D6;
    --border-color: rgba(255, 255, 255, 0.2);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: hidden;

    font-weight: 400;
    cursor: url('../images/cursor.png'), auto;

}

/* main {
    background-image: url(../images/bg-pattern3.png);
    background-size: auto;
    background-repeat: repeat;
    background-position: top center;
    position: relative;
    z-index: 2;

} */
section {
    background-image: url(../images/bg-pattern3.png);
    background-size: auto;
    background-repeat: repeat;
    background-position: top center;
    position: relative;
    z-index: 2;

}
.text  {
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0;
     color: #ffffff74;
    background: linear-gradient(to right, rgb(255, 30, 30), rgb(209, 209, 15)) no-repeat;
    -webkit-background-clip: text;
    transition: background-size .5s 
cubic-bezier(.1, .5, .5, 1);
}
/* loeader start */
.preloader {
    z-index: 5000;
    background: var(--bg-dark);
    background: url(../images/bg-pattern3.png);
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: center;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: hidden;
    height: 100vh;
    z-index: 99999;
    transition: all 1.5s ease-in-out;
    box-shadow: rgb(248 247 244 / 15%) 5px 5px 4rem;
}

.preloader.hidden {
    top: -100vh;
    overflow: hidden;
    /* Prevent overflow when hidden */
    border-radius: 0 0 50% 50%;
}

.brand {
    font-size: 30px;
    letter-spacing: 6px;
    font-weight: 300;
    transition: 1s;
}

.preloader.hidden .brand {
    transform: scale(.3);
}

.preloader-center {
    z-index: 50;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.load-text {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 15px;
    text-transform: uppercase;
    z-index: 20;
}

.load-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterAnimation 0.8s ease forwards;
}

/* Different delay for each letter */
.load-text span:nth-child(1) {
    animation-delay: 0.1s;
}

.load-text span:nth-child(2) {
    animation-delay: 0.2s;
}

.load-text span:nth-child(3) {
    animation-delay: 0.3s;
}

.load-text span:nth-child(4) {
    animation-delay: 0.4s;
}

.load-text span:nth-child(5) {
    animation-delay: 0.5s;
}

.load-text span:nth-child(6) {
    animation-delay: 0.6s;
}

.load-text span:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes letterAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* loader end */

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 60px 0;
    transition: .3s;
    background: linear-gradient(180deg, rgba(5, 89, 180, 0.4), transparent);
}

.scrolled.navbar {
    padding: 20px 0;
    background: #0315218c;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
}

.logo img {
    width: 160px;
    transition: .5s;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    transition: 0.3s;
    position: relative;
    display: inline-block;
}
.nav-menu .active a{
    color: #A46880;
    /* Fallback color - important for animation visibility */
    background: linear-gradient(90deg, #A46880, #F9F462);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
   
}
.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-3px)
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn {

    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.5s;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    position: relative;
    padding-right: 50px;

}

.btn:hover {
    padding-right: 0px;
    padding-left: 50px;
}

.btn>span:nth-child(1) {
    background: linear-gradient(90deg, #A46880, #F9F462);
    padding: 10px 30px;
    color: var(--bg-dark);
    border-radius: 30px;
    height: 50px;
    transition: .5s;
    min-width: 180px;
    text-align: center;
    z-index: 9;

}

.btn>span:nth-child(2) {
    width: 15px;
    height: 25px;
    background-color: #F9F462;
    margin-left: -4px;
    position: absolute;
    right: 43px;
    transition: .5s;


}

.btn>span:nth-child(3) {

    background-color: #F9F462;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    transition: .5s;
    position: absolute;
    right: 0;

}

.btn:hover>span:nth-child(1) {
    background: linear-gradient(270deg, #A46880, #F9F462);
}

.btn:hover>span:nth-child(3) {
    right: calc(100% - 50px);

}

.btn:hover>span:nth-child(2) {
    right: calc(100% - 55px);
}

.btn:hover span:nth-child(3) {
    transform: rotate(20deg);
}

.btn-underline {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 1px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding-top: 150px;
    overflow: hidden;
    background-image: url(../images/hero-bg.png);
    /* background-repeat: no-repeat;
    background-position: top center; */
    background-size: cover;
    flex-direction: column;
    background-attachment: fixed;
}

/* 
.hero::before {
    content: '';
    position: absolute;
    top: -210px;
    left: 50px;
    width: 420px;
    height: 420px;
    background: url(../images/globe.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9;
    animation: rotate2 80s linear infinite;
    transform-origin: center center;
    will-change: transform;
}

@keyframes rotate2 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
} */

.hero::before {
    content: '';
    position: absolute;
    top: -0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000070;

}

.radial-shape {
    position: relative;
    margin-top: -5%;
    width: 100%;

}
 
.radial-shape svg g  path:nth-child(2){
     animation: pulse 3s ease-in-out infinite;
     transform-origin: center;
}
 @keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.01);
    opacity: 0.1;
  }
} 
.radial-shape svg {
    position: absolute;
    top: -1.5%;
    left: 0;
    width: 100%;
    height: 100%;
}

.radial-shape img {
    width: 100%;
    display: flex;
}

.hero .container {
    z-index: 9;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 0 40px 0;
}

.hero-text {
    flex: 1;
    max-width: 700px;
    width: 100%;
   top: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;

}

.gradient-text {
    color: #A46880;
    /* Fallback color - important for animation visibility */
    background: linear-gradient(90deg, #A46880, #F9F462);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}







.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}
@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 5px #ffe08281)
            drop-shadow(0 0 30px #FFE082);
  }
  50% {
    filter: drop-shadow(0 0 15px #a4688085)
            drop-shadow(0 0 45px #A46880);
  }
  100% {
    filter: drop-shadow(0 0 5px #ffe08280)
            drop-shadow(0 0 30px #FFE082);
  }
}

.service-chart svg {
  animation: glowPulse 3s ease-in-out infinite;
}







/* Welcome Section */
.welcome-section {
    padding: 50px 0;
    text-align: center;
}

.center.section-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.center .section-title {
    margin: 0 auto 20px auto;
}

.section-label {
    display: inline-block;
    color: var(--text-light);
    font-weight: 200;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;

}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
    line-height: 42px;

}

.section-title2 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    max-width: 560px;
}

.section-description {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.footer .section-description {
    font-size: 16px;
    color: var(--text-muted);


}

.section-description span {
    font-weight: 700;
}

.section-buttons {
    margin-top: 30px;
}


/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 70px;

}
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 2; 
}
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3; 
}
.service-card {

    transition: all 0.3s;
    position: relative;
    padding: 2px;

    border-radius: 14px;
    background: linear-gradient(180deg, #578097, #011A2B, #011A2B);
    transition: .5s;
    /* overflow: hidden; */
    cursor: pointer;

}

.service-card:hover {


    background: #36444D;
    box-shadow: 0px 0px 50px 17px #be4c8717;


}

.main-card {
    position: relative;
    background: #011420;
    padding: 50px 30px;
    border-radius: 14px;
    height: 100%;
    width: 100%;


}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    margin-bottom: 20px;
    padding: 10px;

    position: relative;
    overflow: hidden;
}

.service-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #a56179, #F2E963);
    width: 0%;
    height: 0%;
    transition: .3s;
    border-radius: 50%;

}

.service-card:hover .service-icon:before {
    width: 80px;
    height: 80px;
}

.service-icon svg {
    z-index: 9;
    height: 42px;
}

.service-chart {
    height: 115px;
    margin: 20px 0;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-description {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 300;
}

.service-description b {
    color: var(--text-light);
}

.service-card:nth-child(2) .service-chart svg {
    margin-top: -70px;

}

.service-card:nth-child(3) .service-chart svg {
    margin-top: -20px;

}

.service-card:nth-child(4) .service-chart svg {
    margin-top: -20px;

}




.glow {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    /* Border Radius */
    border-radius: 16px;
    filter: blur(3px);
    opacity: 0;
    transition: .5s;
}




.service-card:hover .glow {
    overflow: hidden;
    filter: blur(30px);
    opacity: .7;

}

.glow:before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    /*border color, change middle color*/
    background-image: conic-gradient(#011420,
            #913462 5%,
            #011420 38%,
            #011420 50%,
            #AE9B59 60%,
            #011420 87%);

    transition: all 2s;
}







.white,
.border,
.darkBorderBg,
.glow {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
    overflow: hidden;
    z-index: -1;
    /* Border Radius */
    border-radius: 8px;
    filter: blur(3px);
}


.white {
    max-height: 100%;
    max-width: 100%;
    border-radius: 10px;
    filter: blur(2px);
    opacity: 0;
}

.service-card:hover .white {
    opacity: 1;
}

.white::before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(83deg);
    position: absolute;
    width: 600px;
    height: 600px;
    background-repeat: no-repeat;
    background-position: 0 0;
    filter: brightness(1.4);
    background-image: conic-gradient(#36444d00 0%,
            #c76496,
            #36444d00 8%,
            #36444d00 50%,
            #d5c68f,
            #36444d00 58%);

    transition: all 2s;
}

.border {
    max-height: 100%;
    max-width: 100%;
    border-radius: 11px;
    filter: blur(0.5px);
    opacity: 0;
}

.service-card:hover .border {
    opacity: 1;
}

.border::before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(70deg);
    position: absolute;
    width: 600px;
    height: 600px;
    filter: brightness(1.3);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(#36444d00,
            #913462 5%,
            #36444d00 14%,
            #36444d00 50%,
            #a48e42 60%,
            #36444d00 64%);

    transition: all 2s;
}

.darkBorderBg {
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
}

.service-card:hover .darkBorderBg {
    opacity: 1;
}

.darkBorderBg::before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(82deg);
    position: absolute;
    width: 600px;
    height: 600px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(#36444d00,
            #913462,
            #36444d00 10%,
            #36444d00 50%,
            #AE9B59,
            #36444d00 60%);
    transition: all 2s;
}

.service-card:hover>.darkBorderBg::before {
    transform: translate(-50%, -50%) rotate(262deg);
}

.service-card:hover>.glow::before {
    transform: translate(-50%, -50%) rotate(240deg);
}

.service-card:hover>.white::before {
    transform: translate(-50%, -50%) rotate(263deg);
}

.service-card:hover>.border::before {
    transform: translate(-50%, -50%) rotate(250deg);
}

.service-card:hover>.darkBorderBg::before {
    transform: translate(-50%, -50%) rotate(-98deg);
}

.service-card:hover>.glow::before {
    transform: translate(-50%, -50%) rotate(-120deg);
}

.service-card:hover>.white::before {
    transform: translate(-50%, -50%) rotate(-97deg);
}

.service-card:hover>.border::before {
    transform: translate(-50%, -50%) rotate(-110deg);
}

.service-card:focus-within>.darkBorderBg::before {
    transform: translate(-50%, -50%) rotate(442deg);
    transition: all 4s;
}

.service-card:focus-within>.glow::before {
    transform: translate(-50%, -50%) rotate(420deg);
    transition: all 4s;
}

.service-card:focus-within>.white::before {
    transform: translate(-50%, -50%) rotate(443deg);
    transition: all 4s;
}

.service-card:focus-within>.border::before {
    transform: translate(-50%, -50%) rotate(430deg);
    transition: all 4s;
}



@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(450deg);
    }
}

@keyframes leftright {
    0% {
        transform: translate(0px, 0px);
        opacity: 1;
    }

    49% {
        transform: translate(250px, 0px);
        opacity: 0;
    }

    80% {
        transform: translate(-40px, 0px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}


/* join section start */
.join-section {
    padding: 50px 0 150px 0;
    position: relative;
    overflow: hidden;

}

.join-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
     background: linear-gradient(0deg, #043554, transparent);
    /* border-radius: 50% 50% 0 0; */
    /* backdrop-filter: blur(60px); */
    opacity: .6;
}

.join-section .join-card {
    overflow: hidden;
    border-radius: 26px;
    position: relative;
}

.join-section .join-card::before {
    content: '';
    position: absolute;
    background-color: #011421cc;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.join-section .join-card .main-card2 {
    /* background: url(../images/join-bg.png); */
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    z-index: 2;
    position: relative;


}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 60px 0;

}

.join-grid h4 {
    color: var(--primary-color);
    font-size: 25px;
}

.join-grid p {
    font-weight: 300;
    font-size: 14px;
}
.join-section .section-description{
    max-width: 700px;
    margin: auto;
}
.join-section .center.section-header {
    max-width: 900px;

}


/* faq section start */
.faq-section {
    position: relative;
    padding: 120px 0px;
    overflow: hidden;
    background: var(--bg-dark);
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: url('/images/faq-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.faq-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000009;
}

.faq-row {
    display: flex;
    flex-wrap: wrap;


}

.faq-left {
    width: 40%;
}

.faq-left .section-header {
    max-width: 300px;
}

.faq-left .btn {
    margin-top: 30px;
}

.faq-right {
    position: relative;
    width: 60%;
    padding-left: 60px;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {



    overflow: hidden;
    transition: all 0.3s ease;
}


.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    border-bottom: .01rem solid rgba(255, 255, 255, 0.1);
}


.accordion-question {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    flex: 1;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-icon::before {
    content: '+';
    font-size: 26px;
    color: #fff;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon::before {
    content: '-';
    font-size: 26px;
    color: #fff;
    transition: transform 0.3s ease;
}


.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 20px 0px 35px 0;
    font-size: 16px;
    line-height: 1.6;
}

/* contact section start */
.contact-section {
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, #043554, transparent);
    /* border-radius:0 0 50% 50%; */
    backdrop-filter: blur(60px);
    opacity: .6;
}

.contact-section .container {
    max-width: 1000px;
}

.contact-section .section-header {
    max-width: 600px;
}

.contact-section .section-description {
    font-size: 16px;
}

.contact-section form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-top: 50px;
}

.contact-section {

    input,
    textarea {
        width: 100%;
        border: none;
        border-bottom: 1px solid #ffffff84;
        background: transparent;
        outline: none;
        color: white;
        font-size: 14px;
        padding: 15px 0;
    }
}

.contact-section textarea {
    min-height: 140px;
    grid-column: 1 / -1;
}

.contact-section .form-btn {
    margin-top: 20px;
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.last-shape {
    position: relative;
    overflow: hidden;
    margin-bottom: -80px;
   
}
.last-shape  svg{
     opacity: .5;
}
.last-shape svg:nth-child(1){
    margin-bottom: -15px;
    /* animation: swing 5s ease-in-out infinite;
     transform-origin: center; */
}
 /* @keyframes swing {
  0%, 100% {
    transform: rotate(.7deg);

  }
  50% {
    transform:  rotate(-.7deg);

  }
} */
.last-shape svg:nth-child(2) {
    position: absolute;
    top: 0%;

    left: 0;
     /* animation: swing2 5s ease-in-out infinite;
     transform-origin: center; */
}
 /* @keyframes swing2 {
  0%, 100% {
    transform: rotate(-.7deg);

  }
  50% {
    transform:  rotate(.7deg);

  }
} */


.last-shape svg {
    width: 100%;
    height: 100%;
}

.last-shape:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(0deg, #043554,  transparent);
    opacity: .7;
    z-index: 99;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    position: relative;
    z-index: 9;

}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
    border-top: 1px dashed var(--border-color);

}

.footer-top-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0 60px 0;
}

.footer-logo {
    width: 100%;
    max-width: 200px;
}

.footer-column:last-child {
    align-content: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo svg {
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s;
    border: 1px solid var(--text-light);
}

.social-links a:hover {

    transform: translateY(-1px);
    border: 1px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
        linear-gradient(90deg, #a56179, #F2E963) border-box;
}

.social-links a:hover svg * {
    fill: #F2E963;

}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}



.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    padding: 40px 0 10px 0;
    border-top: 1px dashed var(--border-color);

    font-size: 14px;
    color: var(--text-muted);

}



/* Responsive Design */
@media (min-width: 1200px) {
    footer {
        position: sticky;
        bottom: 0;
    }

}
@media (max-width: 1300px) {
    .nav-menu {

    gap: 15px;
}
.header-right{
    gap: 30px;
}
.nav-menu a{
    font-size: 14px;
}
}
@media (max-width: 1024px) {
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }



    .hero-text {
        max-width: 100%;
        margin-top: -60px;
        z-index: 9;
    }

    .hero-buttons {
        justify-content: center;
    }

.services-grid {
    grid-template-columns: repeat(2, 1fr);

}
.service-card {
    grid-column: span 1!important;
}

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {

        /* padding-top: 150px; */
        background-position: 30% center;

    }

    .join-section .join-card .main-card2 {

        padding: 60px;
        padding: 60px;
    }

    .join-grid {

        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 500px;
        margin: auto;

    }
}

@media (max-width: 990px) {

    .nav-actions {
        display: none;
    }

    .nav-menu {
        left: 100%;
        transition: .5s;
        flex-direction: column;
        position: absolute;
        top: 100%;
        background: #031521e8;
        backdrop-filter: blur(20px);
        padding: 20px;
        height: 100vh;
        overflow: auto;
        top: 0;
        padding-top: 100px;
        text-align: center;
        width: 100%;
        border-radius: 500px 0 0 500px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span:nth-child(2) {
        width: 20px;
        margin-left: auto;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 4px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu.active {
        left: 0;
        border-radius: 0;


    }

    .nav-menu a {
        font-size: 30px;
    }

    .faq-right,
    .faq-left {

        width: 100%;
        padding: 0;

    }

    .faq-right {
        margin-top: 50px;

    }

    .faq-bg {
        width: 100%;
        opacity: 0.3;
    }

}

@media (max-width: 768px) {

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }



    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }



    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

    .footer-top-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 0 0px 0;
    }

    .footer-heading {

        margin-bottom: 10px;

    }

    .footer-top-content {
        padding: 40px 0 50px 0;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }


    .navbar {

        padding: 30px 0;

    }

    .scrolled .logo img {
        width: 120px;
    }

    .container {

        padding: 0 20px;

    }

    .hero {

        min-height: auto;

    }

    .contact-section form {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .contact-section textarea {
        min-height: 100px;
    }

    .last-shape svg {
        width: 150%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }



    .stat-value {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.4;
    }



    .hero-visual img {
        max-width: 280px;
        margin-bottom: 20px;
    }

    .services-section,
    .join-section,
    .faq-section,
    .contact-section {
        padding: 70px 0;
    }

    .services-section,
    .welcome-section {
        padding-bottom: 20px;
    }

    .main-card {

        padding: 25px;

    }

    .service-description {

        font-size: 16px;
        line-height: 1.4;

    }

    .join-grid {

        padding: 30px 0;

    }

    .join-grid h4 {
        font-size: 20px;
    }

    .join-section .join-card .main-card2 {
        padding: 40px 20px;
    }

    .services-grid {

        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        margin-top: 50px;
    }

    .service-card {

        min-width: 320px;
    }

    .section-header {
        text-align: center;
        margin: auto;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .accordion-question {
        font-size: 18px;
    }

    .accordion-body {
        font-size: 14px;
    }

    .radial-shape {
        margin-top: 0;
    }
  .last-shape svg {
        width: 200%;
    }

    .last-shape:before {

        height: 110px;

    }

    .faq-bg::after {

        background: #00000054;
    }
    .hero::before {

    background: #000000a8;
}

    .join-grid > div {

        width: calc(50% - 10px);

    }
        .join-grid > div:last-child {

        width: 100%;

    }
    .join-grid p {

    font-size: 13px;
}
}













