/* ================= RESET ================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: sans-serif;

}



a {

    text-decoration: none;

}



body {

    background: #fff;

    color: #111;

}



li {

    list-style: none;

}

/* ================= COLORS ================= */

:root {

    --black: #0b0b0b;

    --gold: #d4af37;

    --blue: #0f2a44;

}





.page-hero {

    /* The gradient goes from a semi-transparent dark blue to a deeper blue overlay */

    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.9) 100%),

        url('assets/img/hero1.jpg');



    /* Ensures the image covers the entire area and stays centered */

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;



    padding: 80px 0;

    text-align: center;

    color: white;

}





.page-hero h1 {

    font-size: 48px;

    margin-bottom: 20px;

    color: #d48d00;

}



.page-hero p {



    color: #fff;

}



/* Globals */

/* SECTION HEADINGS */

section h2 {

    font-size: 35px;

    text-align: center;

    margin-bottom: 25px;

    position: relative;

    color: #0f2a44;

}





.about h2 {



    text-align: left;



}



.about h2::after {

    margin: 10px 6px 41px;

}





section h2::after {

    content: "";

    width: 100px;

    height: 3px;

    background: var(--gold);

    display: block;



    margin: 10px auto 0;

}



/* TEXT */

p {

    line-height: 1.6;

    color: #555;

}



/* ================= TOPBAR ================= */

.topbar {

    background: var(--black);

    color: #fff;

    padding: 8px 20px;

    display: flex;

    justify-content: space-between;

    font-size: 14px;

}



/* ================= NAVBAR ================= */

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 5%;

    background: #fff;

    position: sticky;

    top: 0;

    z-index: 999;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}



.logo img {

    height: 100px;

}



.nav-links {

    display: none;

}



.menu-toggle {

    font-size: 24px;

    cursor: pointer;

}



.active {

    color: #d4af37 !important;



}



/* ================= HERO ================= */

.hero {

    position: relative;

    height: 100vh;

    overflow: hidden;

}



/* SLIDER */

.hero-slider {

    height: 100%;

    position: relative;

    z-index: 1;

}



.slide {

    position: absolute;

    inset: 0;

    opacity: 0;

    transition: opacity 1s ease;

    z-index: 1;

}



.slide.active {

    opacity: 1;

    z-index: 2;

}



/* IMAGE */

.slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transform: scale(1.1);

    transition: transform 6s ease;



}



.slide.active img {

    transform: scale(1);

}



/* OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to right,

            rgba(0, 0, 0, 0.85),

            rgba(0, 0, 0, 0.3));







    z-index: 3;

    pointer-events: none;

    /* 🔥 IMPORTANT */

}



/* CONTENT */

.slide-content {

    position: absolute;

    top: 50%;

    left: 8%;

    transform: translateY(-50%);

    color: #fff;

    max-width: 550px;

    z-index: 5;

}



/* TEXT */

.slide-content h1 {

    font-size: 50px;

    font-weight: 800;

    margin-bottom: 15px;

    text-transform: uppercase;

}



.slide-content p {

    font-size: 18px;

    margin-bottom: 25px;

    color: #ddd;

}



/* ANIMATION */

.slide-content h1,

.slide-content p,

.slide-content .hero-btns {

    opacity: 0;

    transform: translateY(30px);

}



.slide.active h1 {

    animation: fadeUp 0.8s forwards 0.3s;

}



.slide.active p {

    animation: fadeUp 0.8s forwards 0.6s;

}



.slide.active .hero-btns {

    animation: fadeUp 0.8s forwards 0.9s;

}



@keyframes fadeUp {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* BUTTONS */

.hero-btns {

    display: flex;

    gap: 12px;

}



.btn {

    padding: 8px 20px;

    font-size: 14px;

    border-radius: 4px;

    transition: 0.3s ease;

}



.primary {

    background: var(--gold);

    color: #000;

}



.primary:hover {

    background: #c19b2e;

}



.secondary {

    border: 1px solid #fff;

    color: #fff;

}



.secondary:hover {

    background: #fff;

    color: #000;

}



/* CONTROLS */

.slider-controls {

    position: absolute;

    bottom: 30px;

    right: 30px;

    z-index: 6;

}



.slider-controls span {

    background: rgba(0, 0, 0, 0.5);

    color: #fff;

    padding: 10px 14px;

    margin: 0 5px;

    border-radius: 50%;

    cursor: pointer;

}



/* PROGRESS BAR */

.progress-bar {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: rgba(255, 255, 255, 0.2);

    z-index: 6;

}



.progress {

    height: 100%;

    width: 0%;

    background: var(--gold);

}



/* ================= SECTIONS ================= */

.container {

    padding: 50px 20px;

}



/* ABOUT */

.about img {

    width: 100%;

    border-radius: 10px;

}



.about-text {

    margin-top: 20px;

}



/* WHY */

.whyus {

    background: var(--blue);

    color: #fff;

    padding: 50px 20px;

    text-align: center;

}



.whyus p {

    color: #fff;

}



.why-grid {

    display: grid;

    /* grid-template-columns: repeat(2, 1fr); */

    gap: 20px;

    margin-top: 20px;

}



/* SERVICES */

.service-grid {

    display: grid;

    gap: 20px;

}



.service-card img {

    width: 100%;

    border-radius: 10px;

}







/* Leader Team */

.leader-team-grid {

    display: grid;

    grid-template-columns: 1fr 2fr 2fr 1fr;

    gap: 15px;

    /* max-width:1200px; */

    margin: auto;

}



/* TEAM */

.team-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

}



.team-grid img {

    width: 100%;

    border-radius: 10px;

}



/* FOOTER */

.footer {

    background: var(--black);

    color: #fff;

    padding: 40px 20px;

}



.footer h4 {

    color:#c19b2e;

}



.footer a {

    color:#fff;

}



/* FLOATING */

.floating {

    position: fixed;

    bottom: 25px;

    right: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 999;

}



.floating a {

    padding: 14px;

    background: var(--gold);

    color: #000;

    border-radius: 50%;

    text-align: center;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}



/* ================= DESKTOP ================= */

@media (min-width: 768px) {

    

    .nav-links {

        display: flex;

        gap: 30px;

        margin-left: auto;

    }



    .nav-links a {

        color: #000;

        font-weight: 500;

        position: relative;

    }



    .nav-links a::after {

        content: "";

        position: absolute;

        bottom: -5px;

        left: 0;

        width: 0%;

        height: 2px;

        background: var(--gold);

        transition: 0.3s;

    }



    .nav-links a:hover::after {

        width: 100%;

    }



    .menu-toggle {

        display: none;

    }



    .slide-content h1 {

        font-size: 52px;

    }



    .slide-content p {

        font-size: 20px;

    }



    .why-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .service-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .team-grid {

        grid-template-columns: repeat(4, 1fr);

    }

}



@media (min-width: 768px) {



    .about {

        grid-template-columns: 1fr;

        align-items: center;

    }



    .service-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .team-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .footer-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}





/* about */

.about {

    display: grid;

    gap: 30px;

}



.about-img img {

    width: 100%;

    border-radius: 12px;

}



.about-text h2 {

    text-align: left;

}



.about-text ul {

    margin-top: 15px;

}



.about-text li {

    margin-bottom: 10px;

    font-weight: 500;

}





.why-grid {

    margin-top: 30px;

}



.why-card {

    background: rgba(255, 255, 255, 0.05);

    padding: 20px;

    border-radius: 10px;

    transition: 0.3s;

    border: 1px solid rgba(255, 255, 255, 0.1);

}



.why-card:hover {

    transform: translateY(-5px);

    background: var(--gold);

    color: #000;

}





.services h2 {

    margin-bottom: 30px;

}



.service-card {

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    transition: 0.3s;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}



.service-card img {

    width: 100%;

    height: 200px;

    object-fit: cover;

}



.service-card h3 {

    /* padding: 15px; */

    font-size: 16px;

    text-transform: uppercase;

    color: #0f2a44;

}



.service-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

}





.team-grid img {

    transition: 0.3s;

}



.team-grid img:hover {

    transform: scale(1.05);

}





.testimonials {

    background: #f8f8f8;

    padding: 60px 20px;

    text-align: center;

}



.testimonial-card {

    background: #fff;

    padding: 20px;

    border-radius: 10px;

    margin: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}



.testimonial-card p {

    font-style: italic;

}





.footer {

    background: var(--black);

    color: #fff;

}



.footer-grid {

    display: grid;

    gap: 20px;

}



.footer h3,

.footer h4 {

    margin-bottom: 10px;

}



.footer p {

    color: #bbb;

    font-size: 14px;

}



/* ================= TYPOGRAPHY ================= */

body {

    font-family: 'Poppins', sans-serif;

}



h2 {

    font-size: 32px;

    font-weight: 700;

    color: #0b0b0b;

}



.section-tag {

    display: inline-block;

    font-size: 13px;

    font-weight: 600;

    color: var(--gold);

    margin-bottom: 8px;

    letter-spacing: 1px;

}



.section-tag.center {

    display: block;

    text-align: center;

}



/* ================= ABOUT ================= */

.about-grid {

    display: grid;

    gap: 40px;

    align-items: center;

}



/* IMAGE */

.about-img img {

    width: 100%;

    border-radius: 12px;

}



.about-content {

    position: relative;

}



.about-content p {

    margin: 15px 0;

}



.about-list {

    margin: 20px 0;

    list-style: none;

}



.about-list li {

    margin-bottom: 10px;

    position: relative;

    padding-left: 25px;

}



.about-list li::before {

    content: "✔";

    position: absolute;

    left: 0;

    color: var(--gold);

}



/* EXPERIENCE BADGE */

.experience-badge {

    /* position: absolute; */

    margin: auto;

    right: 0;

    /* top: 30px; */

    background: var(--blue);

    color: #fff;

    padding: 20px;

    border-radius: 10px;

    text-align: center;

    width: 120px;

    border: 2px solid goldenrod;

}



.experience-badge h3 {

    font-size: 28px;

    color: var(--gold);

}



/* ================= WHY ================= */

.whyus {

    background: var(--blue);

    color: #fff;

    padding: 70px 20px;

}



.whyus h2 {

    color: #fff;

}



.why-grid {

    margin-top: 40px;

    display: grid;

    gap: 20px;

}



.why-card {

    text-align: center;

    padding: 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.1);

}



.why-card:last-child {

    border-right: none;

}



.why-card .icon {

    font-size: 28px;

    margin-bottom: 10px;

    color: var(--gold);

}



.why-card h4 {

    margin-bottom: 8px;

}



/* ================= SERVICES ================= */

.services h2 {

    margin-bottom: 30px;

}



.service-grid {

    display: grid;

    gap: 25px;

}



.service-card {

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    transition: 0.3s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

    padding: 20px;

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}



.service-card img {

    width: 100%;

    height: 200px;

    object-fit: cover;

}



.service-body {

    padding: 20px;

    text-align: center;

}



.service-icon {

    width: 50px;

    height: 50px;

    background: var(--gold);

    color: #000;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: -40px auto 10px;

    font-size: 20px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    display: none;

}



.service-body h3 {

    margin-bottom: 10px;

}



.service-body p {

    margin-bottom: 15px;

    font-size: 15px;

    color: #081c2f;

}



/* ================= TESTIMONIAL ================= */

.testimonials {

    background: var(--blue);

    color: #fff;

    padding: 70px 20px;

}



.testimonials h2,

.testimonials p {

    color: #fff;

}



.testimonial-grid {

    display: grid;

    gap: 25px;

    margin-top: 40px;

}



.testimonial-card {

    background: rgba(255, 255, 255, 0.05);

    padding: 25px;

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, 0.1);

}



.stars {

    color: var(--gold);

    margin-bottom: 10px;

}



.client {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

}



.client img {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: none;

}



/* ================= TEAM ================= */

.team-grid {

    display: grid;

    gap: 20px;

    margin-top: 30px;

}



.team-card img {

    width: 100%;

    border-radius: 10px;

    transition: 0.3s;

}



.team-card img:hover {

    transform: scale(1.05);

}



.center-btn {

    text-align: center;

    margin-top: 20px;

}



/* ================= FOOTER ================= */

.footer {

    background: #0b0b0b;

    color: #fff;

    padding-top: 60px;

}



.footer-grid {

    display: grid;

    gap: 30px;

}



.footer h4 {

    margin-bottom: 10px;

}



.footer ul li {

    margin-bottom: 8px;

    color: #bbb;

}



.footer p {

    color: #bbb;

}



.footer-form input,

.footer-form textarea {

    width: 100%;

    padding: 10px;

    margin-bottom: 10px;

    border: none;

    outline: none;

}



.footer-form textarea {

    height: 80px;

}



.footer-bottom {

    text-align: center;

    padding: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    margin-top: 30px;

    font-size: 14px;

}



/* ================= BUTTON VARIANTS ================= */

.btn.dark {

    background: var(--blue);

    color: #fff;

}



.btn.dark:hover {

    background: #081c2f;

}



/* ================= DESKTOP ================= */

@media (min-width: 768px) {



    .about-grid {

        grid-template-columns: 2fr 2fr 1fr;

        align-items: center;

    }



    .why-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .service-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .testimonial-grid {

        grid-template-columns: repeat(3, 1fr);

    }



    .team-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .footer-grid {

        grid-template-columns: repeat(4, 1fr);

    }

}







/* Developers Credits */

/* ========================

   DEVELOPER CREDIT - SEO OPTIMIZED

   ======================== */



.developer-credit {

    background: linear-gradient(135deg, #0a0a15 0%, #0f0f1a 100%);

    padding: 16px 0;

    text-align: center;

    border-top: 1px solid rgba(240, 165, 0, 0.15);

    position: relative;

    z-index: 1;

}



.developer-credit .container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



.developer-credit p {

    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: rgba(255, 255, 255, 0.6);

    letter-spacing: 0.3px;

}



.developer-credit .credit-text {

    color: rgba(255, 255, 255, 0.5);

    margin-right: 6px;

}



.developer-credit a {

    color: #f0a500;

    text-decoration: none;

    font-weight: 600;

    position: relative;

    display: inline-block;

    transition: all 0.3s ease;

    padding: 2px 4px;

    border-radius: 4px;

}



/* SEO Friendly Hover Effects */

.developer-credit a:hover {

    color: #ffd700;

    background: rgba(240, 165, 0, 0.1);

    transform: translateY(-1px);

}



.developer-credit a:focus {

    outline: 2px solid #f0a500;

    outline-offset: 2px;

}



/* Underline effect for better UX */

.developer-credit a::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 1px;

    background: #f0a500;

    transition: width 0.3s ease;

}



.developer-credit a:hover::after {

    width: 100%;

}



/* Mobile Responsive */

@media (max-width: 768px) {

  

  .leader-team-grid {

    display: grid;

    grid-template-columns: 1fr;

    }



  

    .developer-credit {

        padding: 12px 0;

    }



    .developer-credit p {

        font-size: 11px;

    }



    .developer-credit a {

        font-size: 11px;

    }

}



/* Print Styles */

@media print {

    .developer-credit {

        background: none;

        border-top: 1px solid #ccc;

        color: #000;

    }



    .developer-credit a {

        color: #000;

        text-decoration: underline;

    }

}







/* NAVBAR BASE */

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 5%;

    background: #fff;

    position: sticky;

    top: 0;

    z-index: 999;

}



/* NAV LINKS DEFAULT (MOBILE HIDDEN) */

.nav-links {

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: #fff;

    display: none;

    flex-direction: column;

    padding: 15px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



/* ACTIVE STATE */

.nav-links.active {

    display: flex;

}



/* LINKS */

.nav-links a {

    padding: 10px 0;

    color: #000;

    font-weight: 500;

}



/* MENU ICON */

.menu-toggle {

    font-size: 22px;

    cursor: pointer;

}



/* DESKTOP */

@media (min-width: 768px) {



    .nav-links {

        position: static;

        display: flex !important;

        flex-direction: row;

        gap: 30px;

        box-shadow: none;

        width: auto;

    }



    .menu-toggle {

        display: none;

    }

}