 body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F8F9F9;
    color: #4F5E59;
        scrollbar-width: thin; /* 'auto' or 'thin' */
    scrollbar-color: #27B89F transparent;
}


        :root {
            --accent-primary: #27B89F;
            --accent-secondary: #A8E6CF;
            --dark-grey: #2C2C2C;
            --charcoal-black: #0D0E12;
            --light-grey: #F8F9F9;
        }
/*
========================================
SERVICES PAGE V2 HERO STYLES
========================================
*/

/* Main container for the new hero */
/* The whole scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Adjust this for vertical scrollbar width */
    height: 12px; /* Adjust this for horizontal scrollbar height (if present) */
}

/* The scrollbar track (the area the thumb slides along) */
::-webkit-scrollbar-track {
    background: transparent; /* Makes the track background transparent */
    border-radius: 20px; /* Rounded corners for a softer look */
}

/* The scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #149B87; /* Darker teal/green from your scheme (default thumb color) */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 2px solid transparent; /* Optional: Adds a slight transparent border for spacing */
    background-clip: content-box; /* Ensures the border doesn't shrink the thumb's background */
}

/* The scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #27B89F; /* Primary teal/green on hover (more vibrant) */
}

/* The scrollbar thumb when actively being dragged */
::-webkit-scrollbar-thumb:active {
    background-color: #1a7e6c; /* Slightly darker teal/green when active/grabbed */
}

/* Base styles for the navbar */
.navbar {
    background-color: #F8F9F9;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styling */
.navbar-logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Navigation Links (Desktop - CRITICAL FIX HERE) */
.nav-links-container {
    display: flex;}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Keep this for desktop layout */
}

.nav-links li {
    margin-left: 30px;
    /* Initial state for load animation (links dropping from top) */
    transform: translateY(-50px); /* Start above the visible area */
    opacity: 0; /* Start invisible */
    transition: transform 0.6s ease-out, opacity 0.6s ease-out; /* Transition properties */
}

.nav-link {
    text-decoration: none;
    color: #4F5E59;
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 5px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Animating underline on hover */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #27B89F;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Underline for the active page */
.nav-link.active::before {
    transform: scaleX(1);
    background-color: #27B89F;
    transform-origin: bottom left;
}

/* Hamburger Icon */
.hamburger-icon {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2C2C2C;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Responsiveness for Navbar */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .navbar-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .hamburger-icon {
        display: block; /* Show on mobile */
        margin-left: auto;
    }

    .nav-links-container {
        display: none; /* Initially hidden on mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #EDF3F2;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-10px); /* Slight initial offset for container dropdown */
        opacity: 0;
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    }

    .nav-links-container.active {
        display: flex; /* Show when active */
        transform: translateY(0); /* Slide down */
        opacity: 1;
    }

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

    .nav-links li {
        margin: 15px 0;
        /* DO NOT set transform/opacity here. Let the global rule handle initial state
           and JS handle the animation, and nav-links-container.active handle overall display. */
    }

    .nav-link {
        font-size: 1.1rem;
    }
}
.hero-v2-section {
    position: relative;
    padding: 100px 20px;
    background-color: #1e6055;
    height: 25vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* Important for the background animation */
}

/* Container for the content and SVG */
.hero-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative; /* Ensures content is above the background */
    z-index: 2;
}

/* Left side content wrapper */
.hero-v2-content {
    color: #FFFFFF;
    animation: fadeInSlideUp 1s ease-out forwards;
}

.hero-v2-heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-v2-subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a7a9be; /* A light grey for contrast */
    max-width: 500px;
    margin-bottom: 35px;
}

/* Stylish Call-to-Action Button */
.hero-v2-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #27B89F;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(39, 184, 159, 0); /* Initial transparent glow */
}

.hero-v2-cta-button:hover {
    background-color: #27B89F;
    box-shadow: 0 0 25px rgba(39, 184, 159, 0.7);
    transform: translateY(-3px);
}

/* Right side SVG wrapper */
.hero-v2-svg-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* This is crucial for layering */
    min-height: 400px; /* Ensures container has space */
    margin-top: 90px;
}

/* Style for the SVG background */
.hero-v2-svg-wrapper svg {
    position: absolute;
    max-width: 400px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
    z-index: 1; /* Places SVG in the back */
}

/* ADD THESE NEW STYLES for the GIF */
.hero-gif-overlay {
    position: absolute;
    width: 250px; /* Adjust size as needed */
    height: 300px;
    border-radius: 30%;
    object-fit: cover;
    z-index: 2; /* Places GIF in the front */
    animation: float 6s ease-in-out infinite; /* Match SVG animation */
    animation-delay: 0.2s; /* Slight delay for a subtle effect */
}

img.hero-gif-overlay{
  top: -25px;
}

/* Keyframes for the floating SVG animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/*
--- Shooting Star Background Animation ---
*/
.night-sky-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateZ(45deg);
    z-index: 1;
}

.shooting_star {
    position: absolute;
    height: 2px;
    background: linear-gradient(-45deg, #27B89F, rgba(0, 0, 255, 0));
    border-radius: 999px;
    filter: drop-shadow(0 0 6px #27B89F);
    animation:
        tail 3s ease-in-out infinite,
        shooting 3s ease-in-out infinite;
}

/* This is the CSS conversion of the SASS @for loop */
.shooting_star:nth-child(1) { top: 52%; left: 45%; animation-delay: 2.1s; }
.shooting_star:nth-child(2) { top: 38%; left: 60%; animation-delay: 0.5s; }
.shooting_star:nth-child(3) { top: 67%; left: 20%; animation-delay: 4.8s; }
.shooting_star:nth-child(4) { top: 22%; left: 55%; animation-delay: 1.3s; }
.shooting_star:nth-child(5) { top: 80%; left: 33%; animation-delay: 3.2s; }
.shooting_star:nth-child(6) { top: 44%; left: 70%; animation-delay: 5.5s; }
.shooting_star:nth-child(7) { top: 59%; left: 15%; animation-delay: 0.9s; }
.shooting_star:nth-child(8) { top: 33%; left: 80%; animation-delay: 2.8s; }
.shooting_star:nth-child(9) { top: 75%; left: 40%; animation-delay: 4.1s; }
.shooting_star:nth-child(10) { top: 48%; left: 25%; animation-delay: 1.7s; }
.shooting_star:nth-child(11) { top: 62%; left: 65%; animation-delay: 3.6s; }
.shooting_star:nth-child(12) { top: 28%; left: 10%; animation-delay: 5.2s; }
.shooting_star:nth-child(13) { top: 85%; left: 50%; animation-delay: 0.2s; }
.shooting_star:nth-child(14) { top: 36%; left: 75%; animation-delay: 2.4s; }
.shooting_star:nth-child(15) { top: 70%; left: 5%; animation-delay: 4.5s; }
.shooting_star:nth-child(16) { top: 55%; left: 90%; animation-delay: 1.1s; }
.shooting_star:nth-child(17) { top: 41%; left: 30%; animation-delay: 3.9s; }
.shooting_star:nth-child(18) { top: 78%; left: 68%; animation-delay: 0.7s; }
.shooting_star:nth-child(19) { top: 25%; left: 35%; animation-delay: 2.9s; }
.shooting_star:nth-child(20) { top: 65%; left: 85%; animation-delay: 4.3s; }

@keyframes tail {
    0% { width: 0; }
    30% { width: 100px; }
    100% { width: 0; }
}

@keyframes shooting {
    0% { transform: translateX(0); }
    100% { transform: translateX(300px); }
}

@media (max-width: 992px) {
    .hero-v2-section {
        height: 75vh;
        padding: 80px 20px;
        flex-direction: column;
        justify-content: center;
    }

    .hero-v2-container {
        margin-top: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-v2-svg-wrapper {
        margin: 30px 0 0 0;
        max-height: 300px;
    }

    .hero-v2-svg-wrapper svg {
        max-width: 250px;
    }

    .hero-gif-overlay {
        width: 180px;
        height: 200px;
    }

    .hero-v2-heading {
        font-size: 2rem;
    }

    .hero-v2-subheading {
        font-size: 1rem;
        margin: 0 auto 30px auto;
    }

    .hero-v2-cta-button {
        font-size: 0.9rem;
        padding: 12px 26px;
    }
}
/* ________________________________________________________________________________ */
/* General Section Styling */
.detailed-services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  max-width: 1200px;
  margin: auto;
}



/* Grid for First 4 Services */
.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  padding: 0 10px;
}

.service-item-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 260px;
}

.service-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-item-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-item-title {
  font-size: 1.4rem;
  color: #1e3530;
  margin-bottom: 10px;
}

.service-item-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.service-item-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item-features li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
}

.service-item-features i {
  color: #1e3530;
  margin-right: 8px;
}

/* Scroll Section */
.scroll-section-wrapper {
  position: relative;
  padding: 0 40px;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory; /* enable snap scroll */
}

.scroll-container > .service-item-card {
  flex: 0 0 calc((100% - 50px) / 3); /* shows exactly 3 cards at once */
  scroll-snap-align: start;
}


.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1e3530;
  color: #fff;
  border: none;
  padding: 12px 15px;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.scroll-arrow.left {
  left: 0;
}

.scroll-arrow.right {
  right: 0;
}

.scroll-arrow:hover {
  background-color: #2c4a44;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .scroll-container > .service-item-card {
  flex: 0 0 85%; /* larger cards on mobile scroll */
}

  .detailed-services-grid {
    grid-template-columns: 1fr;
  }
    .section-heading {
        font-size: 1.7rem;
        margin-left: 0px;
    }

.section-heading::after {
        margin-left: 90px;
}


  .scroll-section-wrapper {
    padding: 0 10px;
  }

  .scroll-arrow {
    display: none; /* hide arrows on small screens */
  }
}

    /* _____________________________________________________________________________________________________ */

    .cta-section {
      background: #edf3f2;
      padding: 80px 20px;
      text-align: center;
    }

    .cta-container {
      max-width: 800px;
      margin: auto;
    }

    .cta-container h2 {
      font-size: 2.4rem;
      margin-bottom: 15px;
    }

    .cta-container p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #4f5e59;
    }

    .cta-button {
      padding: 12px 30px;
      background-color: #27b89f;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .cta-button:hover {
      background-color: #1a8b78;
    }

    @media (max-width: 768px) {
      .services-hero-heading {
        font-size: 2.4rem;
      }
      .service-item-card {
        padding: 30px 20px;
      }
      .cta-container h2 {
        font-size: 2rem;
      }
    }

    
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.main-footer {
  background: radial-gradient(circle at top left, #1e3530, #162825, #101f1d);
  padding: 60px 30px 20px;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h2 {
  font-size: 28px;
  color: #27B89F;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #c9d6d2;
}

.footer-links h4, .footer-contact h4 {
  font-size: 18px;
  color: #27B89F;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #c9d6d2;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #27B89F;
}

.footer-contact p {
  font-size: 14px;
  color: #c9d6d2;
  margin-bottom: 8px;
}

.social-icons a {
  color: #c9d6d2;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #27B89F;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  color: #9ca9a5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}

/* ___________________________________________________________________________ */
        /* ========================================
        WORKFLOW SECTION STYLES
        ========================================
        */ */
        .workflow-section {
            position: relative;
            padding: 100px 20px;
            overflow: hidden;
                background-color: var(--charcoal-black) ;
            font-family: 'Inter', sans-serif;
            color: var(--light-grey) ;
            margin: 0;
            /* Added for scroll demonstration */
            padding-bottom: 50vh;
        }

        /* --- Section Heading --- */
        .workflow-heading {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            color: #fff;
        }
        /* Shine animation for the heading */
        .workflow-heading::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: shine 2s infinite linear;
            background-size: 200% 100%;
        }

        @keyframes shine {
            0% { background-position: 200% center; }
            100% { background-position: -200% center; }
        }

        /* --- Timeline Container --- */
        .workflow-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        /* --- SVG Path Connector --- */
        .svg-connector {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        /* Style for the SVG path */
        #workflow-path {
            stroke: var(--accent-primary);
            stroke-width: 3;
            stroke-dasharray: 1; /* These will be set by JS */
            stroke-dashoffset: 1; /* Initially hidden */
            fill: none;
            filter: drop-shadow(0 0 5px var(--accent-primary));
        }

        /* --- Workflow Step Cards --- */
        .workflow-step {
            position: relative;
            width: 45%;
            padding: 30px;
            margin-bottom: 80px;
            background: rgba(44, 44, 44, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 2;
            /* Scroll reveal setup */
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        /* Add hover effect for 3D feel */
        .workflow-step:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        /* Add class via JS to trigger animation */
        .workflow-step.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Zig-zag alignment */
        .workflow-step:nth-child(odd) {
            left: 0;
            margin-left: 0;
        }
        .workflow-step:nth-child(even) {
            left: 55%;
        }

        /* --- Step Content --- */
        .step-counter {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 60px;
            height: 60px;
            background: var(--dark-grey);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-primary);
            text-shadow: 0 0 10px var(--accent-primary);
            border: 2px solid var(--accent-primary);
        }
        .workflow-step:nth-child(even) .step-counter {
            left: auto;
            right: -20px;
        }

        .step-content h3 {
            font-size: 1.75rem;
            color: #fff;
            margin: 0 0 10px 0;
        }
        .step-content p {
            font-size: 1rem;
            color: var(--accent-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /*
        ========================================
        RESPONSIVENESS
        ========================================
        */
        @media (max-width: 768px) {
            .workflow-timeline {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .svg-connector {
                display: none; /* Hide complex SVG path on mobile */
            }
            /* Replace with a simple vertical line */
            .workflow-timeline::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 3px;
                height: 100%;
                background-color: rgba(39, 184, 159, 0.2);
            }

            .workflow-step,
            .workflow-step:nth-child(even),
            .workflow-step:nth-child(odd) {
                width: 80%;
                left: auto; /* Reset horizontal positioning */
                margin-bottom: 60px;
            }
        }
/* ___________________________________________ */
/*
========================================
FIXED: Radial Client Section
========================================
*/

.radial-client-section {
background: url(../img/service\ bg\ \(2\).png);
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden; /* Prevents layout overflow on small screens */
}

.radial-client-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Center the section title */
}

/* Use a more responsive margin */
.radial-client-section .section-title {
    color: #16564b;
    font-size: clamp(2rem, 5vw, 2.5rem); /* Responsive font size */
    margin: 0 auto 60px auto;
}

.radial-layout {
    position: relative;
    /* Use clamp() for a fluid container that scales between a min, ideal, and max size */
    width: clamp(320px, 90vw, 600px);
    height: clamp(320px, 90vw, 600px);
    margin: 0 auto;
    /* Define a responsive radius using a CSS variable */
    --radius: clamp(130px, 35vw, 240px);
    --rotation: 0deg; /* For a subtle rotation animation on hover */
    transition: transform 0.4s ease-in-out;
}

.radial-layout:hover {
    --rotation: 10deg; /* Rotates the whole layout slightly on hover */
}

.center-circle {
    position: absolute;
    width: clamp(120px, 25vw, 160px); /* Responsive size */
    height: clamp(120px, 25vw, 160px); /* Responsive size */
    background: #27b89f;
    color: #ffffff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1rem, 3vw, 1.3rem); /* Responsive font size */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 2; /* Ensure it's above client items if they overlap */
}

.client-item {
    position: absolute;
    top: 50%; /* Center the origin point */
    left: 50%;
    margin: -70px; /* Offset by half of its own width/height */
    width: 140px;
    height: 140px;
    text-align: center;
    /* The transform now uses the responsive --radius variable */
    transform:
        rotate(calc(var(--rotation) + (60deg * var(--i))))
        translate(var(--radius))
        rotate(calc(-1 * (var(--rotation) + (60deg * var(--i)))));
    transition: transform 0.4s ease;
}

.client-item:hover {
    transform:
        rotate(calc(var(--rotation) + (60deg * var(--i))))
        translate(var(--radius))
        rotate(calc(-1 * (var(--rotation) + (60deg * var(--i)))))
        scale(1.1); /* Add a hover effect for items */
}

.client-item .icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 3px solid #16564b;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #16564b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.client-item h3 {
    color: #16564b;
    font-size: 1rem;
    margin-bottom: 6px;
}

.client-item p {
    font-size: 0.9rem;
    color: #4f5e59;
    line-height: 1.4;
}


/* Fully corrected responsive layout */
@media (max-width: 768px) {
    .radial-layout {
        /* On mobile, we abandon the radial layout entirely */
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
        gap: 40px; /* Space between items */
    }

    .center-circle {
        position: static; /* Let it be part of the flex flow */
        transform: none; /* Reset transform */
        margin-bottom: 20px;
    }

    .client-item {
        position: static; /* Let it be part of the flex flow */
        transform: none; /* Reset transform */
        width: 100%;
        max-width: 350px; /* Give it more space */
        height: auto;
        margin: 0;
    }
}