﻿/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #061018;
    color: white;
    overflow-x:hidden;
}

/* Top Bar */
.top-bar {
    width: 96%;
    margin-top: -19px;
    background: #D4AF37;
    color: #000;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* ✅ FIX alignment */
    font-size: 14px;
    flex-wrap: wrap;
}

.top-bar .left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar .left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #000;
    font-size: 16px;

    border: 2px solid #e6e6e6;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);

    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    border-color: #ff9800;
    color: #ff9800;
}

/* Navbar */
.navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 18px 0;
    background: transparent;
}

.nav-container {
    width: 90%;
    max-width: 1100px;
    background: #fff;
    padding: 2px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-radius: 45px;
    border: 1px solid rgba(255,255,255,0.2);

}
nav a {
    margin-left: 25px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

nav a i {
    font-size: 16px;
}

nav a:hover {
    color: #ff9800;
}

nav a.active {
    color: #ff9800;
    font-weight: 600;
}

.logo {
    display: flex;
    align-items: center;
    color:#000;
    font-size: 14px;
}

.logo img {
    height: 45px;
    margin-right: 10px;
}

nav a {
    text-decoration: none;
    margin-left: 30px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    color: #222;
}

nav a:hover,
nav a.active {
    color: #f7c34a;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #f7c34a;
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hamburger */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#000;
}

/* Mobile */
@media (max-width:768px){

    .navbar{
        padding:10px;
    }

    .nav-container{
        width:95%;
        padding:12px 20px;
        position:relative;
    }

    .logo h2{
        font-size:20px;
    }

    .logo img{
        height:40px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#fff;
        border-radius:20px;
        box-shadow:0 10px 25px rgba(0,0,0,0.15);

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        max-height:0;
        overflow:hidden;
        transition:all .4s ease;
    }

    nav.active{
        max-height:500px;
        padding:15px 0;
    }

    nav a{
        width:100%;
        margin:0;
        padding:15px 25px;
        border-bottom:1px solid #eee;
    }

    nav a:last-child{
        border-bottom:none;
    }

    nav a::after{
        display:none;
    }
}

@media (max-width:768px){

    .top-bar{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:10px;
        width:100%;
    }

    .top-bar .left{
        display:flex;
        flex-direction:column;
        gap:5px;
    }

    .social-icons{
        margin-top:10px;
    }
}













/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 117px 8%;
    background: url('bg-lines.png');
    background-size: cover;
    background-position: center;
    margin-right: -11px;
    margin-top: -111px;
}

.hero-left h3 {
    letter-spacing: 2px;
    color: #ccc;
}

.hero-left h1 {
    font-size: 65px;
    font-weight: 800;
    line-height: 70px;
}

.hero-left p {
    max-width: 550px;
    margin: 25px 0;
    color: #cfcfcf;
}

.explore-btn {
    display: inline-block;
    border: 2px solid #000;
    padding: 12px 25px;
    color:#000;
    background:#D4AF37;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.explore-btn:hover {
    background: gold;
    color: white;
}

/* RIGHT SIDE IMAGE */
.hero-right {
    position: relative;
}

.hero-image {
    width: 480px;
    animation: float 2s ease-in-out infinite;
    border-radius: 10px;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* INFO CARD */
.info-card {
    position: absolute;
    bottom: -29px;
    right: 0;
    padding: 20px 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 10px;
}

.info-card h2 {
    font-size: 40px;
    margin: 0;
    color: #D4AF37;
}

.info-card p {
    margin: 0;
    color: #fff;
}

.hero {
    position: relative; /* Essential for containing the absolute particles */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 118px 8%;
    background: #0a0a0a; /* Dark background recommended for web effects */
    overflow: hidden; /* Prevents overflow if particles drift */
}

/* Ensure your content stays on top of the particles */
.hero-left, .hero-right {
    position: relative;
    z-index: 1;
    margin-top: 39px;
}


/* Ensure the parent has relative positioning */
.hero {
    position: relative;
    overflow: hidden;
}
/* hide hero until animation loads */
.hero {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero.loaded {
    opacity: 1;
}

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 90px 20px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        margin-top: 0;
    }

    .hero-image {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .info-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0;
        display: inline-block;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .hero {
        padding: 70px 15px;
    }

    .hero-image {
        max-width: 260px;
    }

    .info-card h2 {
        font-size: 28px;
    }

    .info-card p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .hero-left h3 {
        font-size: 14px;
        letter-spacing: 1px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 38px;
        line-height: 45px;
        text-align: center;
    }

    .hero-left p {
        max-width: 100%;
        margin: 18px auto;
        font-size: 15px;
        text-align: center;
        padding: 0 10px;
    }
}

/* small mobile */
@media (max-width: 480px) {

    .hero-left h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .hero-left p {
        font-size: 14px;
    }
}


.slider-wrapper {
    position: relative;
    width: 100%;
}

.slide {
    display: none; /* Hide all by default */
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Container must be relative */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Set a fixed height or min-height */
}

/* Force slides to stack */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden; /* Use visibility to hide from flow */
    transition: opacity 0.8s ease-in-out;
    display: flex; /* Keep your flex layout */
    justify-content: center;
    align-items: center;
    gap: 80px;
}

/* Show only the active slide */
.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Keeps the active one visible in the flow */
}
.hero-left {
    flex: 1; /* Takes up 50% of the available space minus gap */
    max-width: 600px;
}

.hero-right {
    flex: 1; /* Takes up 50% of the available space */
    display: flex;
    justify-content: center;
}
.slide.active {
    display: flex; /* Makes the flex layout work for the active slide */
    opacity: 1;
}
@media (max-width: 768px) {

    .slider-wrapper {
        height: auto; /* remove fixed height for mobile */
    }

    .slide {
        flex-direction: column; /* stack content */
        gap: 20px;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        flex: unset;
    }

    .hero-right {
        flex: unset;
        width: 100%;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .hero-left h3 {
        font-size: 14px;
    }

    .hero-left p {
        font-size: 14px;
        margin: 15px auto;
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
    }

    .info-card {
        position: relative; /* important for mobile */
        margin-top: 15px;
        right: auto;
        bottom: auto;
        display: inline-block;
    }
}

@media (max-width: 480px) {

    .hero-left h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-left p {
        font-size: 13px;
    }

    .hero-image {
        max-width: 240px;
    }

    .info-card h2 {
        font-size: 28px;
    }

    .info-card p {
        font-size: 13px;
    }
}

/* Ensure the hero section remains the base for Vanta */
#hero {
    position: relative;
    overflow: hidden;
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 50%;
    transition: 0.3s;
}

.nav-arrow:hover { background: #D4AF37; color: #000; }
.prev { left: 20px; }
.next { right: 20px; }









/*about section*/
.about-section{
    padding:100px 8%;
    background:#000;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    min-width:300px;
}

.about-image img{
   width: 104%;
    border-radius: 20px;
    margin-top: -39px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    
}

.about-content{
    flex:1;
    min-width:300px;
}

.about-tag{
    display:inline-block;
    background:#D4AF37;
    color:#000;
    padding:8px 20px;
    border-radius:30px;
    font-size:17px;
    font-weight:bold;
    margin-bottom:-4px;
}

.about-content h2{
    font-size:42px;
    color:#fff;
    margin-bottom:20px;
    line-height:1.3;
}

.about-content p{
    color:#fff;
    line-height:1.8;
    margin-bottom:18px;
    font-size:16px;
    text-align:justify;
}



.about-content p1{
    color:#000;
    line-height:1.8;
    margin-bottom:18px;
    font-size:16px;
}


.about-features{
    display:flex;
    gap:20px;
    margin:30px 0;
    flex-wrap:wrap;
}

.feature-box{
    background:#D4AF37;
    padding:9px;
    border-radius:15px;
    text-align:center;
    flex:1;
    min-width:140px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box h3{
    font-size:30px;
    color:#000;
    margin-bottom:10px;
}

.feature-box p{
    margin:-9px;
    color:#000;
}
.feature-box i{
    font-size:29px;
    color:#000;
    margin-bottom:-29px;
    display:block;
}
.about-btn{
    display:block;
    width:fit-content;
    margin:20px auto;
    padding:14px 35px;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.about-btn:hover{
    background:#ff6b00;
}

@media(max-width:768px){

    .about-section{
        padding:60px 20px;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-features{
        flex-direction:column;
    }
}



/* Initial State */
.about-image{
    flex:1;
    min-width:300px;
    opacity:0;
    transform:translateX(-100px);
    transition:all 1s ease;
}

.about-content{
    flex:1;
    min-width:300px;
    opacity:0;
    transform:translateX(100px);
    transition:all 1s ease;
}

/* Animation Active */
.about-image.show{
    opacity:1;
    transform:translateX(0);
}

.about-content.show{
    opacity:1;
    transform:translateX(0);
}


/* About Section Mobile View */
@media (max-width:768px){

    .about-section{
        padding:60px 20px;
    }

    .about-container{
        flex-direction:column;
        gap:30px;
    }

    .about-image,
    .about-content{
        min-width:100%;
        width:100%;
    }

    .about-image img{
        width:100%;
        margin-top:0;
        border-radius:15px;
    }

    .about-content{
        text-align:center;
    }

    .about-tag{
        margin-bottom:15px;
    }

    .about-content h2{
        font-size:30px;
        line-height:40px;
    }

    .about-content p{
        font-size:15px;
        line-height:1.7;
    }

    .about-features{
        flex-direction:column;
        gap:15px;
    }

    .feature-box{
        min-width: 90%;
        padding: 11px 15px;
    }

    .feature-box i{
        font-size:32px;
        margin-bottom: -22px;
    }

    .feature-box h3{
        font-size:26px;
    }

    .about-btn{
        padding:12px 30px;
        font-size:15px;
    }

    /* Fix Animation for Mobile */
    .about-image{
        transform:translateY(50px);
    }

    .about-content{
        transform:translateY(50px);
    }

    .about-image.show,
    .about-content.show{
        transform:translateY(0);
    }
}

/* Small Mobile Devices */
@media (max-width:480px){

    .about-section{
        padding:50px 15px;
    }

    .about-content h2{
        font-size:26px;
        line-height:34px;
    }

    .about-content p{
        font-size:14px;
    }

    .feature-box h3{
        font-size:22px;
    }

    .feature-box i{
        font-size:28px;
    }
}












/* Vision Mission Section */
.vision-mission-section{
    background:#111;
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    background:#D4AF37;
    color:#000;
    font-weight:bold;
    padding:8px 20px;
    border-radius:30px;
    font-size:18px;
    margin-bottom:15px;
}

.section-title h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#bbb;
    max-width:700px;
    margin:auto;
}

.vm-container{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.vm-card{
    flex:1;
    min-width:320px;
    max-width:550px;
    background:#1a1a1a;
    padding:40px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,175,55,0.3);
    transition:0.4s;
}

.vm-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(212,175,55,0.25);
}

.vm-icon{
    width:90px;
    height:90px;
    margin:auto;
    background:#D4AF37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.vm-icon i{
    font-size:35px;
    color:#fff;
}

.vm-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
}

.vm-card p{
    color:#ccc;
    line-height:1.8;
    font-size:16px;
    text-align:justify;
}

@media(max-width:768px){

    .vision-mission-section{
        padding:60px 20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .vm-card{
        padding:30px 20px;
    }

    .vm-icon{
        width:75px;
        height:75px;
    }

    .vm-icon i{
        font-size:30px;
    }
}
/* Initial Hidden State */
.vm-card{
    opacity:0;
    transform:scale(0.7);
    transition:all 0.8s ease;
}

/* Show Animation */
.vm-card.show{
    opacity:1;
    transform:scale(1);
}

@media(max-width:1024px){

    .vision-mission-section{
        padding:80px 6%;
    }

    .section-title h2{
        font-size:36px;
    }

    .vm-card{
        max-width:100%;
        padding:35px;
    }

    .vm-container{
        gap:25px;
    }
}


@media(max-width:768px){

    .vision-mission-section{
        padding:60px 20px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:14px;
        padding:0 10px;
    }

    .vm-container{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .vm-card{
        width:100%;
        max-width:100%;
        padding:30px 20px;
    }

    .vm-icon{
        width:70px;
        height:70px;
    }

    .vm-icon i{
        font-size:28px;
    }

    .vm-card h3{
        font-size:22px;
    }

    .vm-card p{
        font-size:14px;
        text-align:justify;
    }
}


@media(max-width:480px){

    .section-title h2{
        font-size:26px;
    }

    .section-title span{
        font-size:14px;
        padding:6px 15px;
    }

    .vm-card{
        padding:25px 4px;
    }

    .vm-card h3{
        font-size:20px;
    }

    .vm-card p{
        font-size:13px;
    }
}








/*our services*/
/* Services Section */
.services-section{
    background:#000;
    padding:100px 8%;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.service-card{
    background:#111;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,175,55,0.25);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,0.15),
        transparent
    );
    transition:.7s;
}

.service-card:hover::before{
    left:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(212,175,55,0.25);
}

.service-card i{
    width:80px;
    height:80px;
    background:#D4AF37;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:32px;
}

.service-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.service-card p{
    color:#bbb;
    line-height:1.8;
    font-size:15px;
}

/* Mobile */
@media(max-width:768px){

    .services-section{
        padding:60px 20px;
    }

    .service-card{
        padding:30px 20px;
    }

    .service-card i{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .service-card h3{
        font-size:22px;
    }
}

/* Tablet View */
@media(max-width:1024px){

    .services-container{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .service-card{
        padding:35px 25px;
    }

    .service-card i{
        width:75px;
        height:75px;
        font-size:30px;
    }

    .service-card h3{
        font-size:22px;
    }
}
/* Mobile View */
@media(max-width:768px){

    .services-section{
        padding:60px 20px;
    }

    .services-container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        padding:30px 20px;
    }

    .service-card i{
        width:65px;
        height:65px;
        font-size:26px;
    }

    .service-card h3{
        font-size:20px;
    }

    .service-card p{
        font-size:14px;
    }
}
/* Small Mobile View */
@media(max-width:480px){

    .services-section{
        padding:50px 15px;
    }

    .service-card{
        padding:25px 15px;
    }

    .service-card i{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .service-card h3{
        font-size:18px;
    }

    .service-card p{
        font-size:13px;
    }
}










/* Projects Section */
.projects-section{
    background:#111;
    padding:100px 8%;
}

.projects-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:50px;
}

.project-card{
    background:#1a1a1a;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(212,175,55,0.20);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(212,175,55,0.25);
}

.project-image{
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.6s;
}

.project-card:hover .project-image img{
    transform:scale(1.1);
}

.project-content{
    padding:25px;
}

.project-type{
    display:inline-block;
    background:#D4AF37;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.project-content h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.project-content p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:20px;
}

.project-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#D4AF37;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.project-btn:hover{
    gap:14px;
}

/* Mobile */
@media(max-width:768px){

    .projects-section{
        padding:60px 20px;
    }

    .project-image img{
        height:220px;
    }

    .project-content h3{
        font-size:22px;
    }
}
@media(max-width:768px){

    .projects-section{
        padding:60px 20px;
    }

    .projects-container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .project-card{
        border-radius:15px;
    }

    .project-image img{
        height:200px;
    }

    .project-content{
        padding:20px;
        text-align:center;
    }

    .project-content h3{
        font-size:20px;
    }

    .project-content p{
        font-size:14px;
    }

    .project-type{
        font-size:12px;
    }

    .project-btn{
        justify-content:center;
    }
}
@media(max-width:480px){

    .projects-section{
        padding:50px 15px;
    }

    .project-image img{
        height:180px;
    }

    .project-content h3{
        font-size:18px;
    }

    .project-content p{
        font-size:13px;
    }
}













/*gallery*/
/* Gallery Section */
.gallery-section{
    background:#000;
    padding:100px 8%;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:50px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.2);
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
}

.gallery-item:hover .overlay{
    opacity:1;
}

.overlay h3{
    color:#fff;
    font-size:22px;
    background:#D4AF37;
    padding:10px 20px;
    border-radius:30px;
}

/* Mobile */
@media(max-width:768px){
    .gallery-container{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:220px;
    }
}

@media(max-width:768px){

    .gallery-section{
        padding:60px 20px;
    }

    .gallery-container{
        grid-template-columns:1fr;
        gap:15px;
    }

    .gallery-item img{
        height:200px;
    }

    .overlay h3{
        font-size:18px;
        padding:8px 15px;
    }
}
@media(max-width:480px){

    .gallery-section{
        padding:50px 15px;
    }

    .gallery-item img{
        height:180px;
    }

    .overlay h3{
        font-size:16px;
        padding:6px 12px;
    }
}














/* Partner Section */
.partner-section{
    background:#0a0a0a;
    padding:100px 8%;
}

.partner-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT */
.partner-left{
    flex:1;
    min-width:300px;
}

.partner-left .tag{
    display:inline-block;
    background:#D4AF37;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.partner-left h2{
    font-size:40px;
    color:#fff;
    margin-bottom:20px;
    line-height:1.3;
}

.partner-left p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:20px;
}

.partner-left ul{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.partner-left ul li{
    color:#ddd;
    margin-bottom:12px;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
}

.partner-left ul li i{
    color:#D4AF37;
}

/* BUTTON */
.partner-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 30px;
    background:#D4AF37;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.partner-btn:hover{
    background:#ff9800;
}

/* RIGHT IMAGE */
.partner-right{
    flex:1;
    min-width:300px;
    text-align:center;
}

.partner-right img{
    width:100%;
    max-width:500px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

/* MOBILE */
@media(max-width:768px){

    .partner-section{
        padding:60px 20px;
    }

    .partner-left h2{
        font-size:30px;
    }

    .partner-container{
        flex-direction:column;
        text-align:center;
    }

    .partner-left ul li{
        justify-content:center;
    }
}

@media(max-width:1024px){

    .partner-container{
        gap:40px;
    }

    .partner-left h2{
        font-size:34px;
    }

    .partner-right img{
        max-width:450px;
    }
}
@media(max-width:768px){

    .partner-section{
        padding:60px 20px;
    }

    .partner-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .partner-left h2{
        font-size:28px;
    }

    .partner-left p{
        font-size:15px;
    }

    .partner-left ul{
        margin:15px 0;
    }

    .partner-left ul li{
        justify-content:center;
        font-size:15px;
    }

    .partner-right img{
        width:100%;
        max-width:380px;
    }

    .partner-btn{
        padding:12px 25px;
        font-size:15px;
    }
}
@media(max-width:768px){

    .partner-section{
        padding:60px 20px;
    }

    .partner-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .partner-left h2{
        font-size:28px;
    }

    .partner-left p{
        font-size:15px;
    }

    .partner-left ul{
        margin:15px 0;
    }

    .partner-left ul li{
        justify-content:center;
        font-size:15px;
    }

    .partner-right img{
        width:100%;
        max-width:380px;
    }

    .partner-btn{
        padding:12px 25px;
        font-size:15px;
    }
}
















.faq-section {
    display: flex;
    background-color: #050a0e;
    color: #fff;
    padding: 100px;
    gap: 100px;
    font-family: sans-serif;
}

/* LEFT SIDE */
.left-col {
    flex: 1;
}

.left-col h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.left-col p {
    color: #D4AF37;
    font-size: 1.1rem;
}

.arrow-container {
    margin-top: 30px;
    width: 200px;
}

/* RIGHT SIDE */
.right-col {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ CARD */
.faq-card {
    background: #111820;
    border: 1px solid #1e293b;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* QUESTION */
.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
}

/* ARROW */
.toggle {
    font-size: 22px;
    transition: 0.3s;
}

/* ANSWER */
.answer {
    display: none;
    margin-top: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* ACTIVE STATE */
.faq-card.active {
    border-color: #D4AF37;
}

.faq-card.active .answer {
    display: block;
}

.faq-card.active .toggle {
    transform: rotate(90deg);
    color: #D4AF37;
}

/* MOBILE */
@media(max-width:768px){

    .faq-section{
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .left-col{
        text-align: center;
    }

    .left-col h1{
        font-size: 2.2rem;
    }

    .arrow-container{
        margin: 20px auto;
        width: 150px;
    }
}

@media(max-width:1024px){

    .faq-section{
        padding:80px 40px;
        gap:60px;
    }

    .left-col h1{
        font-size:2.8rem;
    }

    .left-col p{
        font-size:1rem;
    }
}
@media(max-width:768px){

    .faq-section{
        flex-direction:column;
        padding:60px 20px;
        gap:40px;
        margin-top:0;
    }

    .left-col{
        text-align:center;
    }

    .left-col h1{
        font-size:2.2rem;
    }

    .left-col p{
        font-size:0.95rem;
    }

    .arrow-container{
        margin:20px auto;
        width:150px;
    }

    .right-col{
        width:100%;
    }

    .faq-card{
        font-size:15px;
        padding:16px;
    }

    .faq-card.active .answer{
        font-size:14px;
    }
}
@media(max-width:480px){

    .faq-section{
        padding:50px 15px;
    }

    .left-col h1{
        font-size:1.8rem;
    }

    .faq-card{
        font-size:14px;
        padding:14px;
    }
}


















/* Footer */
.footer{
    background:#0a0a0a;
    color:#fff;
    padding:80px 8% 20px;
    border-top:2px solid rgba(212,175,55,0.3);
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    margin-bottom:40px;
}

.footer-box h3{
    color:#D4AF37;
    margin-bottom:20px;
    font-size:20px;
}

.footer-box p{
    color:#ccc;
    line-height:1.8;
    font-size:14px;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#D4AF37;
}

/* Social Icons */
.social-icons{
    margin-top:15px;
}

.social-icons a{
    display:inline-flex;
    width:35px;
    height:35px;
    background:#D4AF37;
    color:#000;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:8px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#fff;
    transform:translateY(-5px);
}

/* Bottom */
.footer-bottom{
    text-align:center;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#aaa;
    font-size:14px;
}

/* Mobile */
@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
        display:flex;
        gap:10px;
    }
}

.designer{
    color:#D4AF37;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.designer:hover{
    color:#fff;
    text-decoration:underline;
}
@media(max-width:1024px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .footer{
        padding:70px 6% 20px;
    }
}
@media(max-width:768px){

    .footer{
        padding:60px 20px 20px;
        text-align:center;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .footer-box{
        text-align:center;
    }

    .footer-box h3{
        font-size:18px;
    }

    .footer-box p,
    .footer-box ul li a{
        font-size:14px;
    }

    .social-icons{
        display:flex;
        justify-content:center;
        gap:10px;
        flex-wrap:wrap;
    }

    .footer-bottom{
        font-size:13px;
        padding-top:15px;
    }
}
@media(max-width:480px){

    .footer{
        padding:50px 15px 15px;
    }

    .footer-box h3{
        font-size:16px;
    }

    .footer-box p{
        font-size:13px;
    }

    .footer-bottom{
        font-size:12px;
    }
}