/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary-color: #1DCF61;
    --secondary-color: #02050A;
    --complementary-color: hsl(147, 63%, 93%);

    /* Typography */
    --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --body-font: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Font Metric Overrides */
    --font-fallback-inter: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-fallback-opensans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Font Metric Values */
    --font-inter-ascent-override: 106%;
    --font-inter-descent-override: 29%;
    --font-inter-line-gap-override: 0%;
    --font-opensans-ascent-override: 101%;
    --font-opensans-descent-override: 27%;
    --font-opensans-line-gap-override: 0%;

    /* Layout */
    --max-width: 1280px;
    --container-padding: 0 40px;

    /* Spacing */
    --section-padding: 80px 0;
    --card-padding: 30px;
    --border-radius: 8px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== FONT METRICS ===== */
@supports (font-size: 1px) {
    @font-face {
        font-family: 'Inter';
        src: local('Inter');
        ascent-override: var(--font-inter-ascent-override);
        descent-override: var(--font-inter-descent-override);
        line-gap-override: var(--font-inter-line-gap-override);
        font-display: swap;
    }

    @font-face {
        font-family: 'Open Sans';
        src: local('Open Sans');
        ascent-override: var(--font-opensans-ascent-override);
        descent-override: var(--font-opensans-descent-override);
        line-gap-override: var(--font-opensans-line-gap-override);
        font-display: swap;
    }
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: #ffffff;
    font-feature-settings: 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-feature-settings: 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    font-weight: bold;
}

h2 {
    font-size: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5rem);
}

h3 {
    font-size: clamp(1.4rem, 1.2rem + 1vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
}

img {
    user-select: none;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    position: relative;
}

.about404{
max-width: 1000px;
}
.about-header .about-title{
    font-family:var(--heading-font);
    line-height:1.05;
    color:var(--secondary-color);
    margin:0 auto 60px auto;
    max-width:900px;
    text-align: center;
}

.about-header .highlight{
    color:var(--primary-color);
}

.about-grid{
    display:grid;
    grid-template-columns:360px 1fr;
    gap:40px;
    align-items:center;
    justify-items:center;
}

.about-image .img-wrap{
   overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    /* box-shadow:0 10px 30px rgba(0,0,0,0.08); */
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.about-content{
    max-width:80%;
    color:#222;
}

.about-content p{
    margin-bottom:18px;
    font-size:1rem;
    line-height:1.7;
    color:var(--secondary-color);
}

@media (max-width: 900px){
    .about-grid{
        grid-template-columns:1fr;
        gap:20px;
        text-align:center;
    }
    .about-image .img-wrap{
        margin:0 auto;
        width:240px;
        height:240px;
    }
    .about-content{
        max-width:700px;
    }
}

/* Decorative stars positioning (placed outside the centered container) */
.about-us__decoration{
    position:absolute;
    pointer-events:none;
}
.about-us__decoration--1{ /* left-top */
    left: 2.5%;
    top: 34%;
    transform: translateY(-50%);
}
.about-us__decoration--2{ /* left-middle */
    left: 6.5%;
    top: 62%;
}
.about-us__decoration--3{ /* right-top */
    right: 5.5%;
    top: 26%;
}
.about-us__decoration--4{ /* right-bottom */
    right: 3.5%;
    bottom: 16%;
}

.about-section{ /* ensure relative so decorations position correctly */
    position:relative;
}

/* Heading responsiveness: prevent awkward breaks on small screens */
.about-header .about-title{
    font-size:34px;
}

@media (max-width: 700px){
    .about-header .about-title{
       font-size: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
        line-height:1.15;
    }
    .about-header .title-sub{ display:inline; }
    .about-header .about-label{
        font-size:0.8rem;
    }
    .about-image .img-wrap{
        width:180px;
        height:180px;
    }
    .about-content p{
        font-size:0.95rem;
    }
    .about-us__decoration{ display:none; }
}

/* Desktop: show sub title on its own line for visual match */
@media (min-width: 701px){
    .about-header .title-sub{ display:block; }
}





/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(29, 207, 97, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(29, 207, 97, 0.4);
}

@media screen and (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: clamp(10px, 0.6rem + 0.5vw, 12px) clamp(24px, 1.2rem + 1vw, 32px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    user-select: none;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .btn {
        display: block;
        padding: 16px 32px;
    }
}

.btn--primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(29, 207, 97, 0.2);
}

.btn--primary:hover {
    background-color: #18b854;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 207, 97, 0.3);
}

.btn--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1.6px solid var(--secondary-color);
}

.btn--secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* --- General Button States --- */
button:disabled {
    pointer-events: none;
    opacity: 0.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* ===== HEADER STYLES ===== */
#header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid rgba(29, 207, 97, 0.15);
    user-select: none;
    z-index: 1000;
}

.header-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    position: relative;
}


#logo img {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    will-change: transform;
}

#logo img:hover {
    transform: scale(1.02);
}

.link-list {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    list-style: none;
}

.link-list li {
    display: block;
    transition: all 0.2s linear;
}

.link-list li a {
    text-transform: capitalize;
    font-family: var(--heading-font);
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    position: relative;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 6px;
    will-change: transform, color, background;
}

/* Active link indicator - minimalist approach */
.link-list li a.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact button styling */
.link-list li a.contact-btn {
    background: var(--primary-color);
    color: white !important;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(29, 207, 97, 0.2);
    transition: all 0.3s ease;
}

.link-list li a.contact-btn:hover {
    background: #18b854;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 207, 97, 0.3);
}

.link-list li a.contact-btn.active {
    background: #18b854;
    box-shadow: 0 4px 12px rgba(29, 207, 97, 0.3);
}

/* Desktop navigation hover effects */
.link-list li a.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Active link styling - only color change, no underline */
.link-list li a.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== MOBILE MENU STYLES ===== */
.menu {
    width: 40px;
    height: 40px;
    margin: 8px;
    background: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    will-change: transform;
    box-shadow: 0 2px 8px rgba(29, 207, 97, 0.2);
}

.menu i {
    color: white;
    font-size: 26px;
    transition: all 0.3s ease;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.menu .cross-icon {
    display: none;
}

.menu.open-menu .hamburger-icon {
    display: none;
}

.menu.open-menu .cross-icon {
    display: block;
}

.menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 207, 97, 0.3);
}

/* Header responsive styles */


/* Responsive nav menu */
@media (max-width: 900px) {
    .header-section {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    #logo img {
        width: 180px;
    }
    
    .menu {
        display: flex;
        z-index: 1001;
    }



    .link-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(6, 15, 36, 0.15);
        border-radius: 16px;
        margin: 8px 16px;
        padding: 0;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        transition: all 0.3s ease;
        z-index: 999;
        border: 1px solid rgba(29, 207, 97, 0.1);
        width: calc(100% - 32px);
    }

    .link-list.open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        padding: 40px 24px;
        gap: 16px;
    }

    .link-list li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .link-list.open li {
        opacity: 1;
        transform: translateY(0);
    }

    .link-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .link-list li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .link-list li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .link-list li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .link-list li a {
        display: block;
        width: calc(100% - 16px);
        padding: 18px 24px;
        font-weight: 500;
        color: var(--secondary-color);
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0 8px;
        box-sizing: border-box;
    }

    .link-list li a:hover {
        background: rgba(29, 207, 97, 0.1);
        color: var(--primary-color);
        transform: translateX(4px);
    }

    .link-list li a.contact-btn {
        background: var(--primary-color);
        color: white;
        margin: 12px 16px;
        border-radius: 8px;
        font-weight: 600;
        width: calc(100% - 32px);
    }


    .link-list li a.contact-btn:hover {
        background: #18b854;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(29, 207, 97, 0.3);
    }

    .menu {
        display: flex;
        cursor: pointer;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
    }

    .menu:hover {
        background: #040114;
       
    }
}

@media (max-width: 480px) {
       #logo img {
    width: 180px;
    padding-left:5px;
    padding-top: 5px;
   
}
    .header-section {
        padding: 0.5rem 0.5rem;
    }
}

/* Blur effect for main content when menu is open */
.main-blur {
    filter: blur(4px) grayscale(0.1);
    pointer-events: none;
    transition: filter 0.3s;
}

body.menu-open {
    overflow: hidden;
}

/* Background blur when dropdown is open */
body.dropdown-open {
    overflow: hidden;
}

body.dropdown-open main {
    filter: blur(3px) brightness(0.7);
    transition: all 0.2s ease;
    pointer-events: none;
}

body.dropdown-open #header {
    filter: none;
    z-index: 10000;
}

/* Ensure header stays on top and clear when menu is open */
body.dropdown-open .header {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
}



/* ===== HERO SECTION ===== */
.hero {
    background: var(--complementary-color);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
}

.hero__content {
    width: 60%;
    flex-shrink: 0;
    z-index: 2;
}

.hero__title {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.1;
}

.hero__title span {
    color: var(--primary-color);
}

.hero__description {
    font-size: clamp(1rem, 0.95rem + 0.5vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}



.hero__image {
    position: absolute;
    right: -30%;
    top: 50%;
    transform: translateY(-35%);
    width: 70%;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero__image img {
    width: 115%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.hero_decoreation {
    position: inherit;
    position: absolute;
    bottom: 5%;
    left: -10%;
    width: 50%;
    z-index: 0;
}

.hero_decoreation img {
    width: 40vh;
    /* z-index: -1; */
}

/* Hide decorative image on mobile */
@media (max-width: 768px) {
    .hero_decoreation {
        display: none;
    }
}

.hero__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== SERVICES SCROLLING BANNER ===== */
.services-banner {
    background: var(--secondary-color);
    padding: 1.4rem 0;
    overflow: hidden;
    position: relative;
    
}

.services-scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.services-scroll__content {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    position: relative;
    width: max-content;
}

.service-item {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.service-item i {
    font-size: 1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* custom icon for services banner (replaces font-awesome arrow) */
.service-item__icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
    opacity: 0.85;
    display: inline-block;
}



.services-contact-cta__wrap{
    display: flex;
    justify-content: center;
    padding-bottom: 4em;
}


/* ==== WHY ME SECTION ==== */
.grid {
    display: grid;
    gap: 30px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.image-center.mobile-tablet-only {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

.item.one {
    animation-delay: 0.4s;
}

.item.two {
    animation-delay: 0.6s;
}

.item.three {
    animation-delay: 0.8s;
}

.item.four {
    animation-delay: 1s;
}

.item.five {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon {
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 10px;
}

.item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.item p {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 260px;
}

.image-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.image-center img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.desktop-only {
    display: none;
}

.mobile-tablet-only {
    display: block;
}

/* Tablet layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .mobile-tablet-only {
        grid-column: 1 / -1;
    }

    .item.five {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

/* Desktop layout */
@media (min-width: 1025px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
        grid-template-areas:
            "one image two"
            "three image four"
            "five five five";
    }

    .desktop-only {
        display: block;
    }

    .mobile-tablet-only {
        display: none;
    }

    .item.one {
        grid-area: one;
    }

    .desktop-only {
        grid-area: image;
    }

    .item.two {
        grid-area: two;
    }

    .item.three {
        grid-area: three;
    }

    .item.four {
        grid-area: four;
    }

    .item.five {
        grid-area: five;
        
    }
}



/* ===== SECTIONS ===== */
.section__title {
    text-align: center;
    margin-bottom: 3rem;
}





/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: var(--section-padding);
    background-color: white;
}

.why-choose_title{
    padding-bottom: 3rem;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature__card {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(6, 15, 36, 0.1);
    text-align: center;
    transition: var(--transition);
}

.feature__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 15, 36, 0.15);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background-color: #080808;
}

.feature__title {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature__description {
    color: #666;
}

.fea_icon img{
width: 3.6rem;
margin-bottom: 10px;
box-shadow: 0 2px 4px 0 rgba(1, 48, 23, 0.2), 0 6px 20px 0 rgba(64, 255, 26, 0.19);
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
   

    .nav__toggle {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-top: 12%;

    }

    .hero__content {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero__image {
        position: relative;
        right: 1.6em;
        padding-top: 20px;
        transform: none;
        width: 95%;
        max-width: 500px;
        margin: 0 auto;
        align-items: center;
    }

    .about-us .container {
        flex-direction: column;
        text-align: center;
    }

    .about-us__content {
        width: 100%;
        margin-bottom: 2rem;

    }

    .about-us__image {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-us__decoration {
        display: none;
    }

  

    .stat__item {
        flex: 1;
        min-width: 120px;
    }

    .services-scroll__content {
        gap: 2rem;
    }

    .service-item {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .hero__buttons {
        justify-content: center;
    }

   

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
        flex-direction: row;
    }
       .hero__image {
        right: 1.4em;
        width: 90%;
        max-width: 400px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

  
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}



/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background-color: var(--complementary-color);
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.breadcrumb__text {
    color: var(--primary-color);
    color: #181818;
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb__arrow {
    width: 14px;
}

.services-section .section__title {
    margin-bottom: 40px;
    text-align: center;
}

/* Main Service Card */
.main-service__card {
    background: var(--secondary-color);
    /* background-color: var(--primary-color); */
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 80px;
    /* padding-top: 80px; */
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.main-service__content {
    position: relative;
    z-index: 2;
    display: flex;
    /* gap: 20px; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-service__Content-1 {
    flex: 1;
}

.main-service__Content-2 {
    padding: 5px 0;
    flex: 0 0 30%;
}

.main-service__title {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.main-service__title .highlight {
    color: var(--primary-color);
}

.main-service__description {
    font-family: var(--heading-font);
    color: white;
    font-size: clamp(1.1rem, 0.9rem + 1vw, 1.4rem);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.main-service__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    align-self: flex-start;
}

.main-service__link:hover {
    text-decoration: underline;

}

.main-service-button {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    /* let .btn and .btn--primary control padding, background and color */
}

/* Make secondary service buttons match the main service CTA sizing/layout on desktop */
.secondary-service__card .btn--secondary {
    display: inline-flex;
   
    min-width: 160px;
   
}



.main-service__decorative-1 {
    position: absolute;
    width: 30%;
    height: 30%;
}

.main-service__decorative-1 img {
    position: absolute;
    width: 80%;
    left: -40%;
    bottom: -280%;
    transform: rotate(-60deg);
    opacity: 70%;
}

.main-service__decorative-2 img {
    position: absolute;
    width: 30%;
    right: -20%;
    top: -80%;
    opacity: 70%;
    transform: rotate(20deg);
}


/* Secondary Service Cards */
.secondary-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 32px);
    margin-top: clamp(32px, 4vw, 48px);
}

.service__decorative-3 img {
    position: absolute;
    width: 40%;
    right: -10%;
    top: -10%;
    opacity: 30%;
    transform: rotate(20deg);
}

.secondary-service__card {
    background: white;
    border-radius: 16px;
    padding: clamp(32px, 4vw, 48px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.secondary-service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secondary-service__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(29, 207, 97, 0.15);
    border-color: var(--primary-color);
}

.secondary-service__card:hover::before {
    opacity: 1;
}

.secondary-service__title {
    font-size: clamp(2rem, 1.6rem + 2vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: clamp(16px, 2vw, 24px);
    margin-top: clamp(16px, 2vw, 24px);
    position: relative;
    transition: color 0.3s ease;
}

.secondary-service__description {
    color: #666;
    font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: clamp(32px, 4vw, 48px);
    flex-grow: 1;
}

.secondary-service__card .btn {
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.secondary-service__card .btn--secondary {
    border: 1.6px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 768px) {
    .secondary-service__card .btn--secondary {
        margin-top: 24px;
        text-align: center;
    }

    .secondary-service__card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .secondary-service__description {
        flex-grow: 1;
    }
}

.secondary-service__card .btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.secondary-service__card .btn--secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.secondary-service__card .btn--secondary:hover::before {
    transform: translateX(100%);
}

/* Tablet responsiveness: make secondary cards resemble main card */
@media (max-width: 1024px) {
    .main-service__card {
        border-radius: 12px;
        padding: 40px;
        margin-bottom: 1rem;

    }

    .main-service__title {
        font-size: 3.6rem;
        font-size: clamp(3rem, 6vw, 5rem);
        margin-bottom: 12px;
    }

    .main-service__description {
        font-size: 1rem;
        font-weight: 400;
    }

    .secondary-services__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .secondary-service__card {
        border: 1px solid var(--primary-color);
        padding: 40px;
    }

    .secondary-service__title {
        font-family: var(--heading-font);
        font-size: clamp(3rem, 6vw, 5rem);
        color: #000000;

    }

    .secondary-service__description {
        color: rgba(46, 46, 46, 0.85);
        font-size: 1rem;
        line-height: 1.6;
    }

   

}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .main-service__card {
        padding: 42px 36px;
    }

    .main-service__content {
        flex-direction: column;
        align-items: baseline;
        gap: 0;
    }

    .main-service__title {
        font-size: clamp(2.5rem, 6vw, 3rem);
        margin-bottom: 12px;
        margin-top: 24px;
    }

    .main-service__description {
        font-size: 1rem;
        max-width: 80%;
    }

    .main-service-button {
        margin-top: 64px;
        width: auto;
        text-align: center;
    }

    .main-service__decorative-1 img {
        display: none;
    }

    .main-service__decorative-2 img {
        width: 50%;
        right: -20%;
        top: -35%;
        transform: rotate(17deg);
        opacity: 60%;
    }

    .secondary-services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .secondary-service__card {
        padding: 42px 36px;
    }

    .secondary-service__title {
        font-size: clamp(2.5rem, 6vw, 3rem);
        max-width: 100%;
    }

    .secondary-service__card .btn {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: auto;
    }
}

/* Override: keep secondary buttons same size as primary (don't force full width) */
.secondary-service__card .btn {
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: clamp(10px, 0.6rem + 0.5vw, 12px) clamp(24px, 1.2rem + 1vw, 32px) !important;
    margin-top: 24px;
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .main-service__card {
        padding: 45px 34px;
    }

    .main-service__title {
        font-size: clamp(2.5rem, 5vw, 2.4rem);

    }


    .main-service__description {
        font-weight: 400;
        line-height: 140%;
        width: 100%;
    }

    .main-service__decorative-2 img {
        width: 60%;
        right: -20%;
        top: -20%;
    }

    .secondary-service__card {
        padding: 45px 34px;
    }

   
      .secondary-service__title {
        font-size: clamp(2.5rem, 5vw, 2.4rem);
        font-weight: 600;
    }
  .secondary-service__card .btn--secondary {
    border: 1.5px solid var(--secondary-color);;
}

}

/* ===== PORTFOLIO SECTION STYLES ===== */
.portfolio-section {
    background-color:var(--secondary-color);
    /* background-color: #272727; */
    position: relative;
    overflow: hidden; /* This will contain the pseudo-elements */
    z-index: 1; /* Establish a stacking context */
    padding: 4em 0;
}


.portfolio-cta{
   text-align: center; 
   margin-top: 3rem;
   display: flex;
   justify-content: center;
}
/* ===== CTA SECTION ===== */
#cta-section {
    background-color: #1DCF61;
    color: #060F24;
    padding: 80px 0;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.cta-graphic {
    display:flex;
    align-items:center;
    justify-content:center;
}
.cta-graphic img { max-width:360px; width:100%; height:auto; opacity:0.95 }

.cta-content { color:#060F24 }
.cta-label{ font-size:14px; text-transform:uppercase; letter-spacing:0.05em; color:#060F24; margin-bottom:10px; font-weight:600 }
.cta-title{ font-size:40px; line-height:1.2; margin:0 0 12px 0; font-weight:700 }
.cta-title .highlight{ color:#060F24; background:transparent }
.cta-paragraph{ max-width:480px; font-size:16px; color:rgba(6,15,36,0.9); margin-top:16px }
.cta-button{ display:inline-block; background:#060F24; color:#fff; padding:12px 30px; border-radius:6px; text-decoration:none; font-weight:600; margin-top:24px }

@media (max-width: 900px){
    .cta-inner { grid-template-columns: 1fr; padding: 0 6%; gap:32px }
    .cta-graphic{ order:2 }
    .cta-content{ order:1; text-align:center }
    .cta-title{ font-size:28px }
}

.portfolio-section::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 30%;
    transform: translateX(-50%);
    width: 700px;
    height: 900px;
    background: radial-gradient(circle, rgba(106, 109, 255, 0.566), transparent 70%);
    filter: blur(200px);
    border-radius: 50%;
    z-index: -1; /* Behind the content */
}

.portfolio-section::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(137, 255, 91, 0.508), transparent 70%);
    filter: blur(200px);
    border-radius: 50%;
    z-index: -1; /* Behind the content */
}

.portfolio-container {
    position: relative; /* Ensure content is stacked above the pseudo-elements */
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2em 40px;
}
.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-header .breadcrumb__text{
color: var(--complementary-color);
}

.portfolio-header h2 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 0.5rem;
    color: var(--complementary-color);
}

.portfolio-header p {
    font-size: 1.1rem;
    color: var(--text-muted-color);
    max-width: 600px;
    margin: 0 auto;
}

/* The responsive grid container */
.portfolio-grid {
   
    display: grid;
    /* 2 columns on desktop */
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

/* ===== PORTFOLIO ITEM STYLES (VIDEOS & IMAGES) ===== */
.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 10;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
     z-index: 100;
}

/* --- UPDATED: Subtle Zoom Hover Effect --- */
.portfolio-item-image:hover {
    transform: scale(1.03);
    /* Simple and clean zoom effect */
    box-shadow: 0 12px 32px rgba(6, 15, 36, 0.12);
    z-index: 10;
}

.portfolio-item img,
.portfolio-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

/* --- Overlay for item info --- */
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item-image:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay h3 {
    font-family: var(--heading-font);
    margin: 0 0 5px 0;
}

/* Image overlays: center the button only (hide title/desc). Keep translateY animation for reveal. */
.portfolio-item-image .item-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0; /* button controls its own padding */
    background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
}

.portfolio-item-image .item-overlay h3,
.portfolio-item-image .item-overlay p {
    display: none;
}

.portfolio-item-image .overlay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.50rem 1.2rem;
    border-radius: 6px;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.portfolio-item-image .overlay-btn:hover,
.portfolio-item-image .overlay-btn:focus {
    filter: brightness(0.95);
    outline: none;
}

/* For video items: prevent hover overlay/zoom */
.portfolio-item-video .item-overlay{
    transform: translateY(100%);
}
.portfolio-item-video .item-overlay{
    transform: translateY(100%);
}
.portfolio-item-video:hover{
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(6, 15, 36, 0.12);
    z-index: 10;
}

/* Specific cursor for images to indicate they are clickable */
.portfolio-item-image {
    cursor: pointer;
}

/* ===== LIGHTBOX (MODAL) STYLES ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 15, 36, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* For Safari */

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.visible {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: auto;
    max-width: 960px;
    max-height: 94vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.visible .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Custom scrollbar for the modal content */
.lightbox-content::-webkit-scrollbar {
    width: 8px;
}

.lightbox-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.lightbox-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.lightbox-content::-webkit-scrollbar-thumb:hover {
    background: #18b854;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 85%;
        max-height: 90vh;
    }
}

.lightbox-close {
    position: fixed;
    top: 35px;
    right: 5%;
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background-color: var(--primary-color);
    color: white;
}

/* ===== PROCESS SECTION STYLES ===== */
.process-section {
    height: 600vh;
    background-color: var(--complementary-color);
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.process-heading {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    background: linear-gradient(to bottom, var(--background-color) 60%, rgba(255, 255, 255, 0));
}

.process-heading h2 {
    color: var(--text-primary);
    line-height: 1.1;
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
}

.process-heading p {
    max-width: 42rem;
    margin: 1rem auto 0;
    color: var(--text-secondary);
}

.process-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 3rem);
    max-width: 48rem;
    /* background-color: var(--card-background); */
    background-color: #ffffff;
    border: 1px solid #aefdd2;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    /* Spring-like transition */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.card-header h3 {
    color: var(--text-primary);
    margin-bottom: 0;
    font-family: var(--heading-font);
    font-weight: 700;
}

.card-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #fff;
    border: 1px solid #E0F8EB;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.card-icon-wrapper svg {
    width: 1.75rem;
    height: 1.75rem;
}

.card-content {
    padding-left: 4.75rem;
    padding-right: 4.9;
}

.card-content p {
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.card-step-number {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-size: 6rem;
    font-weight: 800;
    color: var(--complementary-color);
    line-height: 1;
    z-index: -1;
}

.process-final-cta {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 2rem;
    z-index: 30;
    opacity: 0;
}

.process-final-cta p {
    max-width: 36rem;
    margin: 0 auto;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.process-final-cta button{
    margin: 0 auto;
}
/* Helper to prevent body scroll when lightbox is open */
.no-scroll {
    overflow: hidden;
    
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .lightbox {
        max-height: 100vh;

    }

    .process-card {
        width: 90%;
        padding: 2rem 1.5rem;
        transform-origin: center center;
    }

    .lightbox-close {
        top: 86%;
        right: 44%;

    }

    .process-heading {
        width: 90%;
        padding: 0 1rem;
    }

    .process-heading h2 {
        font-size: 1.75rem;
    }

    /* .process-final-cta .btn{
    max-width: 100%;

} */
    .card-step-number {
        font-size: 4.5rem;
        top: 0.25rem;
        right: 1rem;
    }

    .card-content {
        padding-left: 0;
        margin-top: 1rem;
    }


    .process-card {
        padding: 3rem;
        width: calc(100% - 3rem);
        max-width: 48rem;
    }

    .process-final-cta {
        bottom: 6rem;
    }

    .card-header h3 {
    width:60%
}

}






/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 50%;
    height: 200%;
    background: var(--primary-color);
    opacity: 0.03;
    transform: rotate(-35deg);
    border-radius: 100px;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: var(--primary-color);
    opacity: 0.03;
    transform: rotate(-35deg);
    border-radius: 100px;
}

.faq-section h2,
.FAQ {
    color: var(--secondary-color);
    position: relative;
}

.faq-section h2 span {
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.95;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.7;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(29, 207, 97, 0.15);
    opacity: 1;
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 28px;
    background: none;
    border: none;
    text-align: left;
    color: white;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 220, 130, 0.05);
}

.faq-question i {
    transition: all 0.3s ease;
    font-size: 16px;
    color: #00DC82;
    opacity: 0.7;
}

.faq-question:hover i {
    opacity: 1;
}

.faq-question[aria-expanded="true"] {
    background: rgba(0, 220, 130, 0.05);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(45deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
    background: rgba(29, 207, 97, 0.05);
    border-top: 1px solid rgba(29, 207, 97, 0.1);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.faq-question[aria-expanded="true"] {
    border-bottom: none;
    background: rgba(29, 207, 97, 0.1);

}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-question[aria-expanded="true"]+.faq-answer {
        padding: 0 20px 20px;
    }
}


.Contact_Us{
    min-height: 50vh;
    background-color: var(--primary-color);
}


/* ===== FOOTER ===== */
.footer {
    /* background-color: var(--secondary-color); */
    background-color: #02050A;
    color: white;
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer__description {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
}

.footer__subtitle {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__contact {
    list-style: none;
    color: #ccc;
}

.footer__contact li {
    margin-bottom: 0.5rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
}


/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
        background-color:var(--primary-color) ;
            background-color:#FFF ;
            background-image: url("https://images.pexels.com/photos/18105/pexels-photo.jpg");
            background-size: contain;
        height: 80vh;
}

.cta-banner img {
    width: 100%;
    height: auto;
    display: block;
}



/* ===== FOOTER SECTION ===== */
.footer {
    background: linear-gradient(180deg, #0A1218 0%, #02050A 100%);
    color: #000000;


    padding: 60px 0 20px;
    margin: 0;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;

}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo img {
    max-width: 150px;
    height: auto;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(29, 207, 97, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(29, 207, 97, 0.4);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__section {
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links {
        text-align: center;
    }

    .footer__links a:hover {
        padding-left: 0;
        color: var(--primary-color);
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }
}

/* ===== FOOTER SECTION ===== */
.footer {
    background-color: var(--secondary-color);
background-color: red;
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer__content {
    margin-bottom: 50px;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.footer__brand {
    flex-shrink: 0;
    max-width: 300px;
}

.footer__logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}

.footer__tagline {
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer__links-grid {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer__links-column {
    min-width: 160px;
}

.footer__links-column h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer__links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links-column ul li {
    margin-bottom: 12px;
}

.footer__links-column ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.footer__links-column ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer__social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer__social-links a {
    color: #f0f0f0;
    font-size: 1.2rem;
    opacity: 0.9;
    transition: all 0.2s ease;
}

.footer__social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.footer__bottom p {
    color: #f0f0f0;
    opacity: 0.9;
}

.footer__bottom a {
    color: #f0f0f0;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.2s ease;
}

.footer__bottom a:hover {
    color: var(--primary-color);
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer__main {
        gap: 60px;
    }

    .footer__links-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer__main {
        flex-direction: column;
        gap: 40px;
    }

    .footer__brand {
        max-width: 100%;
        text-align: center;
    }

    .footer__logo {
        margin: 0 auto 20px;
    }

    .footer__links-grid {
        justify-content: center;
        text-align: center;
    }

    .footer__social-links {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Footer Responsive Styles */
@media screen and (max-width: 1024px) {
    .footer__section--company {
        grid-column: span 1;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer__legal {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer__form {
        flex-direction: column;
    }

    .footer__form button {
        width: 100%;
    }

    .footer__social {
        justify-content: center;
    }
}


/* ========= for service.html ============*/

 .se_container {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Services Section */
        .se_services-section {
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
        }

        /* Section Header */
        .se_section-header {
            text-align: center;
            max-width: 48rem; /* max-w-3xl */
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem; /* mb-12 */
        }

        .se_section-header h2 {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 800; /* font-extrabold */
            color: #0F172A; /* text-slate-900 */
            letter-spacing: -0.025em; /* tracking-tight */
        }

        .se_section-header p {
            margin-top: 1rem;
            font-size: 1.125rem; /* text-lg */
            color: #475569; /* text-slate-600 */
        }

        /* Service List */
        .se_services-list {
            display: flex;
            flex-direction: column;
            gap: 5rem; /* space-y-20 */
        }
        
        /* Service Item Layout */
        .se_service-item {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem; /* gap-10 */
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }
        
        .se_service-item.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .se_service-item-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16 / 9;
            border-radius: 1rem; /* rounded-2xl */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
            transition: transform 0.5s ease;
        }

        .se_service-item-image:hover img {
            transform: scale(1.05);
        }

        /* Service Content Styling */
        .se_service-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 9999px;
            margin-bottom: 0.75rem;
        }
        .se_tag-indigo { background-color: #E0E7FF; color: #3730A3; }
        .se_tag-emerald { background-color: #D1FAE5; color: #065F46; }
        .se_tag-sky { background-color: #E0F2FE; color: #0369A1; }
        .se_tag-orange { background-color: #FFEDD5; color: #9A3412; }
        

        .se_service-item-content h3 {
            font-size: 1.5rem; /* text-2xl */
            font-weight: 700;
            color: #0F172A; /* text-slate-900 */
            letter-spacing: -0.025em;
        }

        .se_service-item-content p {
            margin-top: 1rem;
            color: #475569; /* text-slate-600 */
            font-size: 1.125rem; /* text-lg */
        }

        .se_service-features {
            margin-top: 1.5rem;
        }
        
        .se_service-features h4 {
            font-size: 1.125rem; /* text-lg */
            font-weight: 600;
            color: #1E293B;
        }
        
        .se_service-features ul {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem; /* space-y-3 */
        }

        .se_service-features li {
            display: flex;
            align-items: flex-start;
        }

        .se_service-features li svg {
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }
        
        .se_icon-indigo { color: #6366F1; }
        .se_icon-emerald { color: #10B981; }
        .se_icon-sky { color: #38BDF8; }
        .se_icon-orange { color: #F97316; }

        /* Responsive Adjustments */
        @media (min-width: 768px) {
            .se_services-section {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
            .se_section-header {
                margin-bottom: 5rem;
            }
            .se_section-header h2 {
                font-size: 3rem; /* md:text-5xl */
            }
            .se_section-header p {
                font-size: 1.25rem; /* md:text-xl */
            }
            .se_services-list {
                gap: 7rem; /* md:space-y-28 */
            }
            .se_service-item {
                grid-template-columns: repeat(2, 1fr);
                gap: 4rem; /* md:gap-16 */
            }
            .se_service-item:nth-child(even) .se_service-item-image {
                order: 2;
            }
            .se_service-item-content h3 {
                font-size: 1.875rem; /* md:text-3xl */
            }
        }


                                                                                                                              