/* assets/css/style.css */

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#1e293b;
    line-height:1.7;
}

/* CONTAINER */
.container{
    width:98%;
    max-width: 1400px;
    margin:auto;
}

/* HEADER */
.header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(20px);
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    transition:1.5s ease;
    padding: 0;
}

.header.scrolled{
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(20px);
    box-shadow:0 5px 30px rgba(0,0,0,0.08);
    padding:12px 0;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:70px;
 }


.logo{
    font-size:1.5rem;
    font-weight:700;
    color:#0f172a;
    text-decoration:none;
}

.logo img{
    height:70px;
    width:auto;
    object-fit:contain;
   }


.navbar{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:#0f172a;
    text-decoration:none;
    font-weight:600;
    position:relative;
    transition:0.3s ease;
}


.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#DDA520;
    transition:0.4s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

.nav-links a:hover,
.nav-links a.active{
    color:#DDA520;
}

/* CTA BUTTON */
.nav-btn{
    background:#dda520;     /*#2563eb;*/
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:0.4s;
}

.nav-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px
    rgba(37,99,235,0.25);
}

/* DROPDOWN */
.dropdown-menu{
    position:absolute;
    top:45px;
    left:0;
    width:260px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 20px 50px
    rgba(0,0,0,0.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:0.4s;
    overflow:hidden;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    display:block;
    padding:18px 22px;
}

.dropdown-menu a:hover{
    background:#f8fafc;
    color:#DDA520;
}


/* MOBILE MENU */
.menu-toggle{
    display:block;
    font-size:1.7rem;
    cursor:pointer;
    color:#0f172a;
}


/* HERO */
.hero{
    height:100vh;
    background:url('../images/hero.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    padding-top:80px;
    
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,0.75);
    margin-top:20px;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:30px;
    margin-bottom:20px;
    font-size:0.9rem;
}

.hero-content h1{
    font-size:3.5rem;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.1rem;
    margin-bottom:35px;
    color:#e2e8f0;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.primary-btn{
    background:#dca520;
    color:#fff;
}

.primary-btn:hover{
    background:#0f172a;
}

.secondary-btn{
    border:1px solid #fff;
    color:#fff;
}

.secondary-btn:hover{
    background:#fff;
    color:#0f172a;
}

/* SECTIONS */
section{
    padding:100px 0;
}

.section-header{
    margin-bottom:50px;
}

.section-header span{
    color:#DDA520;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-header h2{
    font-size:2.5rem;
    margin-top:10px;
    color:#0f172a;
}

.center{
    text-align:center;
}

/* ABOUT */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.about-card{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mini-card{
    padding:30px;
    border-radius:16px;
    background:#f8fafc;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* SERVICES */
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    font-size:2rem;
    margin-bottom:20px;
}

/* WHY US */
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-box{
    background:#0f172a;
    color:#fff;
    padding:40px 30px;
    border-radius:18px;
}

/* INDUSTRIES */
.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.industry-card{
    background:#f8fafc;
    padding:25px;
    border-radius:12px;
    text-align:center;
    font-weight:600;
}

/* CTA */
.cta{
    background:#dfa560;
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:2.5rem;
    margin-bottom:0px;
    margin-top:50px;
}

.cta p{
    margin-bottom:30px;
}

/* FOOTER */
.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding-top:70px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.footer h3,
.footer h4{
    color:#fff;
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:10px;
}

.footer a{
    text-decoration:none;
    color:#cbd5e1;
}

.footer-bottom{
    text-align:center;
    padding:25px 0;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.1);
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#fff;
    text-decoration:none;
    transition:0.4s;
}

.social-icons a:hover{
    background:#DDA560;
    transform:translateY(-5px);
}


/* LOADER */
#loader{
    position:fixed;
    width:100%;
    height:100%;
    background:#fff;
    z-index:2000;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top: 20px;
}

.loader-spinner{
    width:50px;
    height:50px;
    border:5px solid #e2e8f0;
    border-top:5px solid #DDA560;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* REVEAL EFFECT */
.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* BACK TO TOP */
#backToTop{
    position:fixed;
    bottom:30px;
    right:30px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#DDA560;
    color:#fff;
    font-size:1.2rem;
    cursor:pointer;
    display:none;
}




/* PAGE BANNER */
.page-banner{
    position:relative;
    height: 80vh;
    background:url('../images/about-company.png') center/cover no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(15,23,42,0.88),
        rgba(15,23,42,0.65)
    );
}

.about-banner{
    background:
    url('../images/about-company.png')
    center/cover no-repeat;
}
.banner-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
    animation:fadeUp 1s ease;
}

.banner-content span{
    display:inline-block;
    margin-bottom:20px;
    padding:10px 20px;
    border-radius:30px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    font-size:0.9rem;
    letter-spacing:1px;
    text-transform:uppercase;
}

.banner-content h1{
    font-size:3.2rem;
    line-height:1.2;
    margin-bottom:20px;
}

.banner-content p{
    font-size:1.1rem;
    color:#e2e8f0;
}


/* ABOUT PAGE */
.about-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:24px;
}

.about-image img{
    width:100%;
    display:block;
    transition:0.5s;
}

.about-image:hover img{
    transform:scale(1.06);
}

.about-highlights{
    margin-top:40px;
    display:grid;
    gap:20px;
}

.highlight-box{
    background:#f8fafc;
    padding:25px;
    border-radius:16px;
    border-left:5px solid #DDA560;
    transition:0.4s;
}

.highlight-box:hover{
    transform:translateX(10px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}


/* MISSION & VISION */
.mission-vision{
    background:#f8fafc;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.mission-card{
    background:#fff;
    padding:45px 35px;
    border-radius:22px;
    transition:0.4s;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.mission-card:hover{
    transform:translateY(-10px);
}

.mission-icon{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#2563eb;
    color:#fff;
    border-radius:50%;
    margin-bottom:25px;
    font-size:1.5rem;
}


/* CORE VALUES */
.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.value-card:hover{
    transform:translateY(-10px);
    background:#DDA560;
    color:#fff;
}

.value-card h3{
    margin-bottom:15px;
}


/* ACTIVE NAV LINK */
.nav-links a.active{
    color:#DDA560;
    position:relative;
}

.nav-links a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:#DDA560;
}


/* NAVBAR SCROLL EFFECT */
.header.scrolled{
    background:#ffffff;
    box-shadow:0 4px 25px rgba(0,0,0,0.08);
}


/* ANIMATIONS */
@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}




/* SERVICES PAGE */
.services-banner{
    background:
    url('../images/project-banner.jpg')
    center/cover no-repeat;
}

.intro-text{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:1.1rem;
    color:#475569;
}

/* SERVICE SHOWCASE */
.service-showcase{
    background:#fff;
}

.service-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:100px;
}

.service-row.reverse .service-image{
    order:2;
}

.service-row.reverse .service-content{
    order:1;
}

.service-image{
    overflow:hidden;
    border-radius:28px;
   
}

.service-image img{
    width:100%;
    display:block;
    transition:0.5s ease;
     height:80vh;
}

.service-image:hover img{
    transform:scale(1.08);
}

.service-content span{
    font-size:3rem;
    font-weight:700;
    color:#dbeafe;
}

.service-content h2{
    font-size:2.5rem;
    margin:10px 0 25px;
    color:#0f172a;
}

.service-content p{
    margin-bottom:25px;
    color:#475569;
}

.service-content ul{
    list-style:none;
    margin-bottom:35px;
}

.service-content ul li{
    margin-bottom:15px;
    position:relative;
    padding-left:30px;
    color:#334155;
}

.service-content ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#DDA560;
    font-weight:bold;
}

/* PROCESS */
.process-section{
    background:#f8fafc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-card{
    background:#fff;
    padding:45px 35px;
    border-radius:24px;
    text-align:center;
    transition:0.4s;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.process-card:hover{
    transform:translateY(-12px);
}

.process-card h3{
    margin-bottom:15px;
    color:#0f172a;
}


/* SERVICE DETAIL PAGE */
.service-banner{
    background:
    url('../images/project-banner.jpg')
    center/cover no-repeat;
}

.service-overview-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.service-overview-image{
    overflow:hidden;
    border-radius:28px;
}

.service-overview-image img{
    width:100%;
    display:block;
    transition:0.5s;
}

.service-overview-image:hover img{
    transform:scale(1.06);
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    transition:0.4s;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.feature-card:hover{
    transform:translateY(-12px);
}

.feature-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#DDA560;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
}



/* SERVICE PAGE BACKGROUNDS */

.procurement-banner{
    background:
    url('../images/procurement.png')
    center/cover no-repeat;
}

.trade-banner{
    background:
    url('../images/global-trade.png')
    center/cover no-repeat;
}



.feature-card{
    transform-style:preserve-3d;
    will-change:transform;
}

.service-overview-image{
    will-change:transform;
}


/* CONTACT PAGE */

.contact-banner{
    background:
    url('../images/hero.png')
    center/cover no-repeat;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-card{
    background:#fff;
    padding:45px 30px;
    border-radius:24px;
    text-align:center;
    transition:0.4s;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#DDA560;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.8rem;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.contact-form-box{
    background:#fff;
    padding:45px;
    border-radius:28px;
    box-shadow:
    0 20px 50px rgba(0,0,0,0.06);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #e2e8f0;
    padding:18px;
    border-radius:14px;
    outline:none;
}

.social-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.social-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    text-decoration:none;
    color:#0f172a;
    transition:0.4s;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.social-card:hover{
    background:#DDA560;
    color:#fff;
    transform:translateY(-10px);
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}



/* RESPONSIVE */
@media(max-width: 992px){

    .logo img{
    height:50px;
    width:auto;
    object-fit:contain;
   }

    .menu-toggle{
        display:block;
        z-index:1001;
        font-size:1.7rem;
    cursor:pointer;
    color:#0f172a;
    }

   .nav-btn{display:none;}
   
    .navbar{
        position:fixed;
        top:70px;
        left:-100%;
        width:100%;
        background:#000;
        padding:30px;
        transition:0.4s ease;
        box-shadow:0 15px 40px rgba(0,0,0,0.08);
        z-index:999;
    }

    .navbar.active{left:0; }

   
    .nav-links{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        dsiplay:flex;
    }
   
   
     .dropdown-menu{
        position:relative;
        top:0;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        width:100%;
        box-shadow:none;
        margin-top:10px;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .about-page-grid,
    .mission-grid,
    .values-grid{
        grid-template-columns:1fr;
    }

    .banner-content h1{
        font-size:2.5rem;
    }

    .page-banner{
        height:60vh;
        text-align:center;
    }

    .banner-content{
        margin:auto;
    }

    .banner-content h1{
        font-size:2rem;
    }

    .about-page-grid{
        gap:40px;
    }

    section{
        padding:80px 0;
    }

    .service-row,
    .process-grid{
        grid-template-columns:1fr;
    }

    .service-row.reverse .service-image,
    .service-row.reverse .service-content{
        order:unset;
    }

    .service-content h2{
        font-size:2rem;
    }

    .service-row{
        gap:40px;
        margin-bottom:70px;
    }

    .service-content h2{
        font-size:1.8rem;
    }

    .service-content span{
        font-size:2.3rem;
    }


    .service-overview-grid,
    .features-grid{
        grid-template-columns:1fr;
    }


    .contact-grid,
    .social-row,
    .contact-wrapper{
        grid-template-columns:1fr;
    }

}

