/* 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:#dda560;     /*#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;
}

.dropdown-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.dropdown-icon{
    cursor:pointer;}


/* MOBILE MENU */
.menu-toggle{
    display:none;
    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;
} */


/* HERO SLIDER */

.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    transition:1s ease-in-out;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.08);
    animation:zoomEffect 8s linear infinite;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(15,23,42,0.80),
        rgba(15,23,42,0.75)
    );
}

.hero-content{
    position:relative;
    z-index:5;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
    max-width:760px;
}

.hero-content span{
    color:#dda560;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:4rem;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content p{
    font-size:1.15rem;
    line-height:1.8;
    margin-bottom:35px;
    color:#e2e8f0;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.secondary-btn:hover{
    background:#fff;
    color:#0f172a;
}

.hero-dots{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,0.4);
    cursor:pointer;
    transition:.4s;
}

.dot.active{
    background:#dda560;
}

@keyframes zoomEffect{

    0%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1.15);
    }

}






/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:20px;
    
}

.btn{
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.primary-btn{
    background:#dda560;
    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;
}


/* STRATEGIC SECTORS */

.strategic-sectors{
    padding:100px 0;
    background:#f8fafc;
}

.section-header.center{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-header span{
    color:#2563eb;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-header h2{
    font-size:2.7rem;
    margin:15px 0;
    color:#0f172a;
}

.section-header p{
    color:#64748b;
    line-height:1.8;
}

.sectors-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:30px;
}

.sector-card{
    background:#fff;
    padding:40px 35px;
    border-radius:24px;
    transition:0.4s ease;
    box-shadow:
    0 10px 30px
    rgba(0,0,0,0.05);

    border:1px solid #e2e8f0;
}

.sector-card:hover{
    transform:
    translateY(-10px);

    box-shadow:
    0 20px 40px
    rgba(0,0,0,0.10);
}

.sector-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:#dda560;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:1.7rem;
    margin-bottom:25px;
}

.sector-card h3{
    font-size:1.35rem;
    margin-bottom:15px;
    color:#0f172a;
}

.sector-card p{
    color:#64748b;
    line-height:1.8;
}






/* 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;
}


/* CORPORATE CREDIBILITY */

.credibility-section{
    padding:100px 0;
    background:#ffffff;
}

.credibility-stats{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
    margin-bottom:70px;
}

.stat-box{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:40px 25px;
    border-radius:22px;
    transition:.4s ease;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h3{
    font-size:2.4rem;
    color:#dda560;
    margin-bottom:10px;
}

.stat-box p{
    line-height:1.7;
    color:#cbd5e1;
}


.credibility-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.credibility-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:40px 30px;
    transition:.4s ease;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.05);
}

.credibility-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 40px
    rgba(0,0,0,.10);
}

.credibility-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:#dda560;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:1.7rem;
    margin-bottom:25px;
}

.credibility-card h3{
    font-size:1.3rem;
    margin-bottom:15px;
    color:#0f172a;
}

.credibility-card p{
    color:#64748b;
    line-height:1.8;
}





/* 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;
}



/* GLOBAL PRESENCE */

.global-presence{
    padding:100px 0;
    background:#ffffff;
}

.global-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

.global-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;

    border:1px solid #e2e8f0;

    transition:.4s ease;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.05);
}

.global-card:hover{
    transform:
    translateY(-10px);

    box-shadow:
    0 20px 40px
    rgba(0,0,0,.10);
}

.global-icon{
    font-size:3rem;
    margin-bottom:20px;
}

.global-card h3{
    color:#0f172a;
    margin-bottom:15px;
    font-size:1.3rem;
}

.global-card p{
    color:#64748b;
    line-height:1.8;
}


/* PROJECT PORTFOLIO */

.portfolio-section{
    padding:100px 0;
    background:#ffffff;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#dda560;
    color:#0f172a;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    border-radius:50px;
    margin-bottom:20px;
}

.section-header h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:20px;
}

.section-header p{
    color:#64748b;
    line-height:1.8;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.portfolio-card{
   display:grid;
   opacity:1;
   visibility:visible;
    background:#efefef;
    padding:20px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e2e8f0;

    transition:.4s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.portfolio-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.12);
}

.portfolio-image{
    height:240px;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.portfolio-card:hover img{
    transform:scale(1.05);
}
/*
.portfolio-content{
    padding:25px;
}

.portfolio-category{
    display:inline-block;
    color:#dda560;
    font-weight:700;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.portfolio-content h3{
    color:#0f172a;
    font-size:22px;
    margin-bottom:15px;
}

.portfolio-content p{
    color:#64748b;
    line-height:1.8;
}


.portfolio-card{
    opacity:0;
    transform:translateY(30px);
}

.portfolio-card.show{
    opacity:1;
    transform:translateY(0);
}




/* Partnership Section */

.partners-section {
    background: #ffffff;
    padding: 90px 8%;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: auto;
}

.sub-title {
    color: #b08d57;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 40px;
    color: #0f172a;
    margin: 10px 0 20px;
    font-weight: 700;
}

.section-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.partner-card {
    background: #fff;
    border: 1px solid rgba(176, 141, 87, 0.25);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: #b08d57;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.partner-card img {
    max-width: 120px;
    opacity: 0.85;
    transition: 0.3s ease;
}

.partner-card:hover img {
    opacity: 1;
}

.partner-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-partners {
    display: inline-block;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-partners:hover {
    background: #b08d57;
    color: #fff;
}





/* LEADERSHIP */

.leadership-section{
    padding:100px 0;
    background:#f8fafc;
}

.leadership-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.leader-card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.06);
}

.leader-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 45px
    rgba(0,0,0,.10);
}

.leader-image{
    height:320px;
    overflow:hidden;
}

.leader-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.leader-card:hover img{
    transform:scale(1.08);
}

.leader-content{
    padding:35px 30px;
}

.leader-content h3{
    color:#0f172a;
    font-size:1.35rem;
    margin-bottom:8px;
}

.leader-content span{
    color:#dda560;
    font-weight:600;
}

.leader-content p{
    color:#64748b;
    line-height:1.8;
    margin:20px 0;
}

.leader-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.leader-tags span{
    background:#e0ecff;
    color:#dda560;
    padding:8px 15px;
    border-radius:30px;
    font-size:.9rem;
}







/* CTA */
.cta{
    background:#aeaeae;
    color:#fff;
    text-align:center;
    padding: 50px;
}

.cta h2{
    font-size:2.5rem;
    margin-bottom:0px;
    margin-top:40px;
}

.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;
}




.about-partnership-section {
    background: #f8f9fb;
    padding: 100px 8%;
}

.partnership-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partnership-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border-top: 4px solid #b08d57;
}

.partnership-card:hover {
    transform: translateY(-8px);
}

.partnership-icon {
    width: 70px;
    height: 70px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.partnership-card h3 {
    color: #0f172a;
    margin-bottom: 15px;
    font-size: 24px;
}

.partnership-card p {
    color: #555;
    line-height: 1.8;
}

/* PARTNER LOGOS */
.partner-logo-area {
    margin-top: 80px;
    text-align: center;
}

.partner-logo-area h4 {
    color: #0f172a;
    margin-bottom: 30px;
    font-size: 26px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logos img {
    width: 140px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.partner-logos img:hover {
    transform: translateY(-5px);
}







/* 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:#dda560;
    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;
}



   /*ABOUT LEADERSHIP SECTION */
.about-leadership-section {
    padding: 100px 8%;
    background: #ffffff;
}

.section-header.center {
    text-align: center;
    max-width: 750px;
    margin: auto;
}

.section-header span {
    color: #b08d57;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 42px;
    color: #0f172a;
    margin: 12px 0;
}

.section-header p {
    color: #555;
    line-height: 1.8;
}

.leadership-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.executive-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-left: 5px solid #b08d57;
}

.executive-card:hover {
    transform: translateY(-6px);
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-avatar{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#0f172a;
    color:#dda560;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    font-weight:700;
    margin:0 auto 25px;
    border:3px solid #dda560;
}


.executive-content {
    padding: 35px;
}

.executive-top h3 {
    font-size: 28px;
    color: #0f172a;
}

.executive-top span {
    display: inline-block;
    margin-top: 8px;
    color: #b08d57;
    font-weight: 600;
    margin-bottom: 20px;
}

.executive-content p {
    color: #555;
    line-height: 1.8;
}

.executive-meta {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #ddd;
}

.executive-meta h4 {
    color: #0f172a;
    margin-bottom: 10px;
}




/* 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 2.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-management.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.jpg')
    center/cover no-repeat;
}

.trade-banner{
    background:
    url('../images/global.jpg')
    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/partnership.jpg')
    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(5,1fr);
    gap:20px;
}

.social-card{
    background:#001123;
    padding:10px;
    border-radius:20px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    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: 800px){

    .logo img{
    height:50px;
    width:auto;
    object-fit:contain;
   }

    .menu-toggle{
        display:block;
        z-index:1001;
        font-size:2rem;
    cursor:pointer;
    color:#0f172a;

    }

   .nav-btn{display:none;}
   
    .navbar{
       position:fixed;
        top:70px;
    right:0;
        width:40%;
        height:40vh;
        background:#dda560;
        padding:10px;
        transform:translateX(100%);
        transition:0.4s ease;
        box-shadow:0 15px 40px rgba(0,0,0,0.08);
        z-index:999;
    }

        .navbar.active{
        transform:translateX(0);
    }


   
    .nav-links{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        display: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;
    }


    .hero-content h1{
        font-size:2.5rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .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;
    }

    .sectors-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:2rem;
    }


    .credibility-stats{
        grid-template-columns:
        repeat(2,1fr);
    }

    .credibility-grid{
        grid-template-columns:1fr;
    }

    .leadership-grid{
        grid-template-columns:1fr;
    }

    .global-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .executive-card {
        grid-template-columns: 1fr;
    }

    .executive-image {
        height: 320px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .executive-top h3 {
        font-size: 24px;
    }




    .credibility-stats{
        grid-template-columns:1fr;
    }


    .global-grid{
        grid-template-columns:1fr;
    }



    .section-header h2 {
        font-size: 30px;
    }

    .partners-section {
        padding: 70px 5%;
    }



    .about-partnership-section {
        padding: 70px 5%;
    }

    .partnership-card {
        padding: 30px 25px;
    }

    .partnership-card h3 {
        font-size: 22px;
    }

    .partner-logos img {
        width: 110px;
    }

    .about-leadership-section {
        padding: 70px 5%;
    }

    .executive-content {
        padding: 25px;
    }

    .executive-image {
        height: 280px;
    }


.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding-top:50px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:50px;
}

.footer h3,
.footer h4{
    color:#fff;
    margin-bottom:5px;
}


.industry-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:5px;
}

.industry-card{
    background:#f8fafc;
    padding:30px;
    border-radius:12px;
    text-align:center;
    font-weight:600;
    margin:10px 50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:0px;
}

.why-box{
    background:#0f172a;
    color:#fff;
    padding:40px 30px;
    border-radius:18px;
    margin:10px 50px;
}


.about-grid{
    display:grid;
    grid-template-columns:1 1fr;
    gap:50px;
}

.about-card{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    gap:20px;
}

.mini-card{
    padding:30px;
    border-radius:16px;
    background:#f8fafc;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:10px;
    margin: 10px 50px;
}

.btn{
    padding:14px 10px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    margin:5px 10px;
}

/* MOBILE MENU 
.menu-toggle{
    display:block;
    font-size:1.7rem;
    cursor:pointer;
    color:#0f172a;
}
*/
}


.success-message{
    background:#e8f8ee;
    color:#0f5132;
    border:1px solid #b7ebc6;
    padding:15px 20px;
    border-radius:8px;
    margin:20px 0;
    font-size:16px;
    font-weight:500;
}


