/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary-color: #1DCF61;
    --secondary-color: #02050A;
    --complementary-color: hsl(147, 63%, 93%);
    
    /* Typography */
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* 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;
}

/* ===== 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;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: clamp(3.4rem, 4vw, 2.5rem);
    color: var(--secondary-color)
    ;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
img{
    user-select: none;
}
/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
}

/* Add margin to main content to account for fixed header */
main {
    margin-top: 0;
}

@media (max-width: 768px) {
    main {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    main {
        margin-top: 0;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    user-select: none;
}

.btn--primary {
    background-color: var(--primary-color);
    color: white;
}

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

/* ===== HEADER STYLES ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(29, 207, 97, 0.15);
    box-shadow: 0 4px 32px rgba(29, 207, 97, 0.08);
    transition: all 0.3s ease;
    user-select: none;
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Enhanced header on scroll */
#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(1.3);
    box-shadow: 0 8px 40px rgba(29, 207, 97, 0.12);
    border-bottom: 1px solid rgba(29, 207, 97, 0.2);
}

.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;
}


#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);
    background: rgba(29, 207, 97, 0.12);
    transform: translateY(-1px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(29, 207, 97, 0.15);
}

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

/* Menu bar */
.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: 20px;
    transition: all 0.3s ease;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.menu:hover {
    transform: scale(1.05);
    background: #18b854;
}

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

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

/* Header responsive styles */
/* Mobile menu styles are now handled by the @media (max-width: 768px) rule below */

/* Mobile menu styles are now handled by the @media (max-width: 768px) rule below */

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

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







/* Responsive nav menu */
@media (max-width: 900px) {
  .header-section { padding: 0.5rem 1rem; }
}
@media (max-width: 768px) {
  .link-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    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.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    border: 1px solid rgba(255, 255, 255, 0.2);
    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 {
    transform: scale(1.05);
    background: #18b854;
  }
}
@media (max-width: 480px) {
  .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.3s 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);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding);
    background-color: white;
    text-align: center;
}

.why-choose-us .grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.why-choose-us .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;
}

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

.why-choose-us .item.one { animation-delay: 0.4s; }
.why-choose-us .item.two { animation-delay: 0.6s; }
.why-choose-us .item.three { animation-delay: 0.8s; }
.why-choose-us .item.four { animation-delay: 1s; }
.why-choose-us .item.five { animation-delay: 1.2s; }

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

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

.why-choose-us .item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.why-choose-us .item p {
    font-size: 0.9rem;
    color: #666;
    max-width: 260px;
}

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

.why-choose-us .image-center img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Layouts */
@media (max-width: 768px) {
    .why-choose-us .desktop-only {
        display: none;
    }
    .why-choose-us .mobile-tablet-only {
        display: block;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .why-choose-us .grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }
    .why-choose-us .mobile-tablet-only {
        grid-column: 1 / -1;
    }
    .why-choose-us .item.five {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (min-width: 1025px) {
    .why-choose-us .grid {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
        grid-template-areas:
            "one image two"
            "three image four"
            "five five five";
    }
    .why-choose-us .desktop-only {
        display: block;
    }
    .why-choose-us .mobile-tablet-only {
        display: none;
    }
    .why-choose-us .item.one { grid-area: one; }
    .why-choose-us .desktop-only { grid-area: image; }
    .why-choose-us .item.two { grid-area: two; }
    .why-choose-us .item.three { grid-area: three; }
    .why-choose-us .item.four { grid-area: four; }
    .why-choose-us .item.five { grid-area: five; }
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 4rem;
    background: var(--complementary-color);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    position: relative;
    top: 0;
}

.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: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

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

.hero__buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
}

.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;
}

/* ===== ABOUT US SECTION ===== */
.about-us {
    padding: var(--section-padding);
    background: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

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

.about-us__content {
    width: 50%;
    flex-shrink: 0;
    z-index: 2;
    margin-left: auto;
}

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

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

.about-us__description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

.about-us__stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat__item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat__item:hover {
    transform: translateY(-5px);
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat__label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 500;
}

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

.about-us__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.about-us__decoration {
    position: absolute;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.about-us__decoration img {
    width: 100%;
    height: auto;
}

.about-us__decoration--1 {
    top: 10%;
    right: 5%;
    width: 80px;
    animation-delay: 0s;
}

.about-us__decoration--2 {
    top: 25%;
    left: 8%;
    width: 60px;
    animation-delay: 1s;
}

.about-us__decoration--3 {
    bottom: 20%;
    right: 15%;
    width: 100px;
    animation-delay: 2s;
}

.about-us__decoration--4 {
    bottom: 35%;
    left: 15%;
    width: 70px;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== SERVICES SCROLLING BANNER ===== */
.services-banner {
    background: var(--secondary-color);
    padding: 2rem 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.3rem;
    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;
}



/* ===== PROJECT HERO SECTION ===== */
.project-hero {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--complementary-color) 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.project-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-hero__title {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.project-hero__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.project-hero__meta {
    margin-bottom: 2rem;
}

.project-meta__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.meta__label {
    font-weight: 600;
    color: var(--secondary-color);
    min-width: 80px;
}

.meta__value {
    color: #666;
}

.project-hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-hero__placeholder {
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(6, 15, 36, 0.1);
    text-align: center;
    max-width: 350px;
    font-size: 6rem;
}

/* ===== PROJECT OVERVIEW SECTION ===== */
.project-overview {
    padding: var(--section-padding);
    background-color: white;
}

.project-overview__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.project-overview__text p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
}

.project-overview__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat__item {
    background: var(--complementary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== PROJECT FEATURES SECTION ===== */
.project-features {
    padding: var(--section-padding);
    background-color: var(--complementary-color);
}

.project-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

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

.project-feature__item .feature__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-feature__item h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.project-feature__item p {
    color: #666;
    margin-bottom: 0;
}

/* ===== PROJECT GALLERY SECTION ===== */
.project-gallery {
    padding: var(--section-padding);
    background-color: white;
}

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

.gallery__item {
    background: var(--complementary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

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

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

.gallery__item p {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* ===== PROJECT PROCESS SECTION ===== */
.project-process {
    padding: var(--section-padding);
    background-color: var(--complementary-color);
}

.project-process__timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline__item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -30px;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline__number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

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

.timeline__content p {
    color: #666;
    margin-bottom: 0;
}

/* ===== PROJECT RESULTS SECTION ===== */
.project-results {
    padding: var(--section-padding);
    background-color: white;
}

.project-results__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.results__text p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
}

.results__list {
    list-style: none;
    margin-bottom: 0;
}

.results__list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.results__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.results__testimonial {
    background: var(--complementary-color);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    position: relative;
}

.results__testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
}

.results__testimonial blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author__avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author__info h4 {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.author__info p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}



/* ==== 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; }
    }

/* ===== RELATED PROJECTS SECTION ===== */
.related-projects {
    padding: var(--section-padding);
    background-color: var(--complementary-color);
}

.related-projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-project__item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(6, 15, 36, 0.1);
    transition: var(--transition);
}

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

.related-project__image {
    height: 200px;
    background-color: var(--complementary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-project__placeholder {
    font-size: 3rem;
}

.related-project__content {
    padding: var(--card-padding);
}

.related-project__content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.related-project__content p {
    margin-bottom: 1rem;
    color: #666;
}

.related-project__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.related-project__link:hover {
    color: #18b854;
}

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


/* ===== CONTACT FAQ SECTION ===== */

/* .contact-faq-section {
    padding: var(--section-padding);
    background-color: var(--complementary-color);
}

.contact-faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq__item {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(6, 15, 36, 0.1);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq__item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.faq__question {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.faq__answer {
    color: #666;
    margin-bottom: 0;
} */

/* ===== MAP SECTION ===== */
/* .map-section {
    padding: var(--section-padding);
    background-color: white;
}

.map__container {
    max-width: 800px;
    margin: 0 auto;
}

.map__placeholder {
    background: var(--complementary-color);
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(6, 15, 36, 0.1);
}

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

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

.map__placeholder p {
    color: #666;
    margin-bottom: 0.5rem;
} */

/* ===== PORTFOLIO FILTER ===== */
/* .portfolio-filter {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.filter__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter__btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter__btn:hover,
.filter__btn.active {
    background-color: var(--primary-color);
    color: white;
} */



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

.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;
}

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

.feature__description {
    color: #666;
}

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

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

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

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

.service__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service__description {
    margin-bottom: 1.5rem;
    color: #666;
}

.service__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service__link:hover {
    color: #18b854;
}

.services__cta {
    text-align: center;
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
    padding: var(--section-padding);
    background-color: white;
}

.services__detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service__detailed-card {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(6, 15, 36, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service__detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 15, 36, 0.15);
    border-color: var(--primary-color);
}

.service__features {
    list-style: none;
    margin: 1.5rem 0;
}

.service__features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service__price {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.duration {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--section-padding);
    background-color: var(--complementary-color);
}

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

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

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

.process__number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.process__description {
    color: #666;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding);
    background-color: white;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq__item {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(6, 15, 36, 0.1);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq__item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.faq__question {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.faq__answer {
    color: #666;
    margin-bottom: 0;
}

/* ===== PORTFOLIO PREVIEW SECTION ===== */
.portfolio-preview {
    padding: var(--section-padding);
    background-color: white;
}

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

.portfolio__card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(6, 15, 36, 0.1);
    transition: var(--transition);
    position: relative;
}

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

.portfolio__image {
    height: 200px;
    background-color: var(--complementary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio__placeholder {
    font-size: 3rem;
}

.portfolio__content {
    padding: var(--card-padding);
}

.portfolio__title {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.portfolio__description {
    margin-bottom: 1rem;
    color: #666;
}

.portfolio__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.portfolio__link:hover {
    color: #18b854;
}

.portfolio__cta {
    text-align: center;
}

/* ===== CONTACT BANNER SECTION ===== */
.contact-banner {
    padding: var(--section-padding);
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%); */
    color: white;
    height: 100vh;
    background:image(url='');
    text-align: center;
}

.contact-banner__title {
    margin-bottom: 1rem;
    color: white;
}

.contact-banner__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== 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;
}

.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;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top:hover {
    background-color: #18b854;
    transform: translateY(-2px);
}

.scroll-top.show {
    display: flex;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: 0 2px 10px rgba(6, 15, 36, 0.1);
    }

    .nav__menu.show {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }

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

    .hero__content {
        width: 100%;
        margin-bottom: 2rem;
        /* gap: 12px; */
    }

    .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;
    }

    .about-us__stats {
        justify-content: center;
        gap: 1rem;
    }

    .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;
    }

    .project-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .project-overview__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-results__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline__item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .timeline__item:not(:last-child)::after {
        display: none;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-faq__grid {
        grid-template-columns: 1fr;
    }

    .filter__buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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

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

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

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

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

    .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;
    }

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

    .service__detailed-card {
        padding: 20px;
    }

    .process__step {
        padding: 1.5rem;
    }

    .portfolio__item {
        margin-bottom: 1rem;
    }

    .contact__item {
        flex-direction: column;
        text-align: center;
    }

    .contact__icon {
        margin: 0 auto;
    }

    .about-us__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat__item {
        min-width: auto;
    }

    .services-scroll__content {
        gap: 1.5rem;
    }

    .service-item {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
}

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

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

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } 

/* ===== 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: 1.4rem;
    line-height: 1.3;
    margin-bottom: px;
}

.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;
width: 100%;
color: var(--secondary-color);
font-weight: 700;
}

.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: 24px;
}

.service__decorative-3 img{
    position: absolute;
    width: 40%;
    right: -10%;
    top: -10%;
    opacity: 30%;
    transform: rotate(20deg);
}
.secondary-service__card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    
}

.secondary-service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.secondary-service__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    margin-top: 24px;
}

.secondary-service__description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.secondary-service__card .btn {
    align-self: flex-start;
    margin-top: 64px;

}

/* 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;
    }
    /* Buttons on dark card */
    .secondary-service__card .btn--secondary {
        background-color: var(--primary-color);
        color: #ffffff;
    }
    .secondary-service__card .btn--secondary:hover {
        background-color: #18b854;
        color: #ffffff;
    }
}

/* 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;
        
    }
    .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: 50%;
    }
    .secondary-service__card .btn {
        width: 100%;
    
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .main-service__card {
        padding: 40px 24px;
    }
    
    .main-service__title {
        font-size: 2rem;
        
    }

    
    .main-service__description {
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
        width: 100%;
    }
    .main-service__decorative-2 img{
        width: 50%;
        right: -20%;
        top: -30%;
    }

    .secondary-service__card {
        padding: 20px 15px;
    }
    
    .secondary-service__title {
        font-size: 1.3rem;
    }
   
} 

/* ===== PORTFOLIO SECTION STYLES ===== */
.portfolio-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em 0;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-header h2 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 0.5rem;
    color: var(--secondary-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: 30px;
}

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

/* --- UPDATED: Subtle Zoom Hover Effect --- */
.portfolio-item: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:hover .item-overlay {
    transform: translateY(0);
}

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

.item-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* ===== LIGHTBOX (MODAL) STYLES ===== */
.lightbox {
    position: fixed;
    top: 4%;
    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;
    z-index: 1000;
}

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

.lightbox-content {
    position: relative;
    width: auto;
    max-width: 80%;
    max-height: 88vh;
    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;
}

.lightbox-close {
    position: fixed;
    top: 50px;
    right: 20px;
    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;
    transition: opacity 0.3s ease;
    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: 10rem 2.5rem;
    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);
}

/* 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: 89%;
       right: 44%;
        width: 38px;
        height: 38px;
        
    }
    .process-heading {
        width: 90%;
        padding: 0 1rem;
    }

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

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

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

@media (min-width: 768px) {
    .process-card { 
        padding: 3rem;
        width: calc(100% - 3rem);
        max-width: 48rem;
    }
    .process-final-cta { bottom: 6rem; }
} 

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #02050A;
    color: white;
}

.faq-section h2, .FAQ{
    color:var(--complementary-color);
    background: #02050A;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 220, 130, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 220, 130, 0.3);
    box-shadow: 0 0 20px rgba(0, 220, 130, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    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(0, 220, 130, 0.02);
}

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

/* 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;
    }
}
