
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1C3A5E;
            --secondary: #2B6C2B;
            --light-bg: #f8f9fa;
            --dark-bg: #1C3A5E;
            --text-dark: #333;
            --text-light: #666;
            --border: #ddd;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: #fff;
        }

        html {
            scroll-behavior: smooth;
        }
        body {
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Desktop Menu */
.navbar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #2B6C2B;
}

.nav-item i {
    font-size: 0.7rem;
    color: #888;
    transition: transform 0.2s ease;
}

.nav-item:hover i {
    transform: rotate(180deg);
}
/* Mobile Menu Fixes */
@media (max-width: 768px) {
    /* Jab menu open ho to hamburger hide karo */
    .navbar-right.active ~ .hamburger {
        display: none;
    }
    
    /* Ya ye bhi kar sakte ho */
    body.menu-open .hamburger {
        display: none;
    }
    
    /* Sidebar ka top gap hatao */
    .navbar-right {
        padding-top: 50px !important; /* 60px se kam kiya */
    }
    /* Jab menu open ho to hamburger hide karo */
body.menu-open .hamburger {
    display: none;
}
}
/* Desktop Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1001;
    padding: 8px 0;
    margin-top: 5px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #2B6C2B;
}

.lang-selector {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
}

.lang-selector:hover {
    border-color: #2B6C2B;
}

.btn-contact {
    background-color: #2B6C2B;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

.btn-contact:hover {
    background-color: #1f4f1f;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
}

.close-btn {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 998;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .hamburger {
        display: block;
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        z-index: 1002;
    }

    .navbar-right {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 280px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 70px 20px 20px 20px;
        gap: 15px;
        transition: 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .navbar-right.active {
        right: 0;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    /* Mobile Nav Item */
    .nav-item {
        position: static;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        justify-content: space-between;
    }

    .nav-item i {
        transition: transform 0.2s ease;
    }

    .nav-item.active i {
        transform: rotate(180deg);
    }

    /* Mobile Dropdown - Niche khulega */
    .dropdown-menu {
        position: static !important;
        width: 100%;
        display: none;
        margin-top: 10px;
        margin-left: 0;
        padding: 0;
        background: #f8f9fa;
        border-radius: 8px;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-item.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-item {
        padding: 10px 15px;
    }

    .lang-selector {
        width: 100%;
        margin-top: 10px;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
}
/* Mobile Dropdown Fix - Sirf ye daal */
@media (max-width: 768px) {
    .navbar-right {
        overflow-x: hidden;
    }
    
    .dropdown-menu {
        position: absolute !important;
        /*top: auto !important;*/
        /*left: auto !important;*/
        width: 100% !important;
        display: none;
        margin-top: 10px;
        margin-bottom: 5px;
        box-shadow: none;
        background: #f0f0f0;
    }
    
    .nav-item.active .dropdown-menu {
        display: block !important;
    }
}
/* ===== MOBILE MENU FIXES ===== */
@media (max-width: 768px) {
    /* Close button styling */
    .close-btn {
        display: block !important;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        z-index: 1002;
        background: transparent;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
    }
    
    .close-btn i {
        font-size: 22px;
    }
    
    /* Sidebar - top space remove */
    .navbar-right {
        position: fixed;
        top: 0 !important;
        right: -100%;
        height: 100%;
        width: 280px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 60px 20px 20px 20px !important;
        gap: 15px;
        transition: 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    /* Menu items ko thoda upar shift karo */
    .nav-menu {
        margin-top: 0;
        padding-top: 0;
    }
}
       /* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(28, 58, 94, 0.7), rgba(28, 58, 94, 0.7)), url('img/hero-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 5rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
}

.hero p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    opacity: 0.95;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--secondary);
    color: #fff;
}

.btn-primary:hover {
    background-color: #1f4f1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 108, 43, 0.3);
}

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

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

/* Video Hero Section - Replace image with video */
.hero.video-hero {
    position: relative;
    overflow: hidden;
    background: none;  /* Remove background image */
    padding: 5rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(28, 58, 94, 0.7), rgba(28, 58, 94, 0.7));
    z-index: 1;
}

.hero.video-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Rest all CSS remains SAME as your existing */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
}

.hero p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    opacity: 0.95;
}


/* ===== STATS BAR ===== */
        .stats {
            background: #F2F8FF;
            padding: 1.4rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0;
            border-top: 3px solid var(--secondary);
            border-bottom: 1px solid var(--border);
        }

        .stat-item {
            padding: 1.5rem;
            text-align: center;
            border-right: 1px solid var(--border);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
            line-height: 1.4;
        }

        /* ===== WHO WE ARE ===== */
.who-we-are {
    padding: 80px 20px;
    position: relative;
}

/* White overlay for readability */
.who-we-are::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.who-we-are-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    color: #2c6e9e;
    background: #eef4ff;
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display:none;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.section-description {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* 3 Cards Grid */
.three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
    padding: 0px 50px;
}

/* Card Styling */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Card Content */
.card-content {
    padding: 25px 20px 30px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 12px;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .three-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .who-we-are {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .three-cols {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }
}
/* Card with border radius and transparent background */
.card {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 16px;
    overflow: hidden;
}

.card-image {
    background: transparent;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    padding:10px;
}

.card-image img {
    display: block;
    width: 100%;
    border-radius: 16px 16px 0 0;
}

.card-content {
    background: transparent !important;
    padding: 20px;
    border-radius: 0 0 16px 16px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
}
        

        /* ===== PROTECTED INNOVATION ===== */
.protected-innovation {
    background: #E8EEF5;
    padding: 4rem 2rem;
}

.protected-innovation-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #1C3A5E;
    font-size: 2.5rem; 
    font-weight: 700;
    margin-bottom: 1.5rem; 
} 

.section-description {
    text-align: center;
    color: #555555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-description strong {
    color: #000000;
    font-weight: 600;
}

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

.innovation-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: visible;
    border: 1px solid #D0D8E8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.innovation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.innovation-circle {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border: 5px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 35px;
    top: -50px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.innovation-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px 10px;
}

.innovation-header {
    background: #2B6C2B;
    color: #ffffff;
    padding: 2rem 2rem 2rem 170px;
    text-align: right;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 100px;
}

.innovation-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.innovation-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.innovation-description {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 2rem;
    height:100px;
}

.innovation-meta {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding: 20px 0 0;
    border-top: 1px solid #D0D8E8;
}

.innovation-meta div {
    margin-bottom: 0.5rem;
}

.innovation-meta strong {
    color: #1a1a1a;
    font-weight: 700;
}

.btn-learn-more {
    background: #2B6C2B;
    color: #ffffff;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    margin-top: auto;
}

.btn-learn-more:hover {
    background: #1f3f2a;
    transform: scale(1.05);
}

.btn-learn-more:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .innovation-cards {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .innovation-circle {
        width: 100px;
        height: 100px;
        left: 20px;
        top: -25px;
    }

    .innovation-header {
        padding: 1.5rem 1.5rem 1.5rem 140px;
        min-height: 80px;
    }

    .innovation-header h3 {
        font-size: 1.2rem;
    }

    .innovation-body {
        padding: 2rem 1.5rem;
    }

    .innovation-description {
        font-size: 1rem;
    }
}

       /* RESET */

/* CONTAINER */
.container {
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

/* TAG */
.tag {
    display: inline-block;
    background: #2f6f3e;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* HEADING */
h1 {
    font-size: 34px;
    margin: 10px 0;
    font-weight: 700;
}

.subtitle {
    color: #6b7280;
    /*margin-bottom: 70px;*/
    font-size: 1rem;
}

/* TIMELINE WRAPPER */
.timeline {
    position: relative;
    width: 100%;
    height: 220px;
    /*margin: 60px auto;*/
}

/* SVG CURVE */
.curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.curve path {
    stroke: #2f6f3e;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
}

/* STEPS */
.step {
    position: absolute;
    text-align: center;
}

/* LEFT STEP POSITION */
.step.left {
    left: 15%;
    top: 105px;
}

/* RIGHT STEP POSITION */
.step.right {
    right: 5%;
    top: 60px;
}

/* ICON CIRCLE */
.circle {
    width: 52px;
    height: 52px;
    background: #2B6C2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* LABEL TEXT */
.label {
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* YEAR TEXT */
.year {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* DESCRIPTION */
.desc {
    max-width: 780px;
    margin: 50px auto 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

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

    .timeline {
        height: 180px;
    }

    .step.left {
        left: 10%;
        top: 90px;
    }

    .step.right {
        right: 10%;
        top: 20px;
    }

    h1 {
        font-size: 26px;
    }
}
.custom-cta-section .form-group label {
     text-align: left !important;
}
 /* ===== CLINICAL VALIDATION ===== */
    .container {
  max-width: 1200px;
  margin: 30px auto;
  text-align: center;
  padding: 20px;
}

/* Badge */
.badge {
  display: inline-block;
  background: #2B6C2B;
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Heading */
h1 {
  font-size: 40px;
  margin: 20px 0 10px;
  font-weight: 700;
}

.subtitle {
  color: #666;
  /*margin-bottom: 60px;*/
}

/* Timeline */
.timeline {
  position: relative;
  height: 280px;
}

/* SVG curve */
.timeline svg {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Nodes */
.node {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Circles */
.circle {
  width: 64px;
  height: 64px;
  background: #2B6C2B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  margin-left: 20px;
    
}

/* Labels */
.label {
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.label1 {
  margin-top: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.small {
  font-size: 13px;
  color: #555;
  margin-bottom:20px;
}

/* Positions (matched to curve) */
.preclinical {
     left: 20%;
    top: 75%;
}

.clinical {
    left: 72%;
    top: 62%;
}

/* Big faded numbers */
.big-number {
  position: absolute;
  font-size: 95px;
  color: rgba(0,0,0,0.05);
  font-weight: 700;
}

.num1 {
    left: 26%;
    top: 28%;
}
.num2 {
  right: 15%;
  top:45%;
}

/* Description */
.desc {
  margin-top: 60px;
  color: #555;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


        /* ===== THERAPEUTIC AREAS ===== */
.therapeutic {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
}

.therapeutic-content {
    max-width: 1200px;
    margin: 0 auto;
}

.therapeutic-label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: #ffffff;
}

/* GRID: Exactly 5 items per row */
.areas-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.8rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-item {
    background:#ffffff;
    backdrop-filter: blur(2px);
    padding: 1rem 0.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color:#000000 !important;
}

.area-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

/* Responsive: Tablet pe 3 columns */
@media (max-width: 992px) {
    .areas-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

/* Responsive: Mobile pe 2 columns */
@media (max-width: 576px) {
    .therapeutic {
        padding: 2rem 1rem;
    }
    
    .areas-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .area-item {
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
    }
}


      
/* ===== SERVICES SECTION ===== */
.services {
    background: #ffffff;
    padding: 4rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Badge - Green Pill */
.services-badge {
    display: inline-block;
    background: #2B6C2B;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* Heading */
.services-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 0.75rem;
}

/* Subheading */
.services-subheading {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 3rem;
}

/* 4 Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

/* Card - Background #F1F8FF, Center Aligned */
.service-card {
    background: #F1F8FF;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display:flex;
    flex-direction: column;
}

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

/* Title - Center, Bold */
.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Description - Center, Light Grey */
.service-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex:1;
    font-weight:400;
}
.service-link-upcoming i{
    margin-left:5px;
}

/* Separator Line - Above Button */
.service-separator {
    width: 230px;
    height: 1px;
    background: #1C3A5E;
    margin: 1rem auto 1rem;
}

/* Link Button - Green, Center, No Background */
.service-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #1C3A5E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1f4f1f;
    transform: translateX(4px);
}

/* Upcoming Link - Grey Color */
.service-link-upcoming {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #1C3A5E;
    text-decoration: none;
    cursor: default;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 3rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-heading {
        font-size: 1.5rem;
    }
}



        /* ===== BRANDS SECTION ===== */
.brands {
    background: #ffffff;
    padding: 4rem 2rem;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Badge - Green Pill */
.brands-badge {
    display: inline-block;
    background: #2B6C2B;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Heading */
.brands-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1rem;
}

/* Description */
.brands-description {
    font-size: 1rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Logo Grid - 7 Brands Single Row */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

/* Brand Card */
.brand-card {
    /*background: #ffffff;*/
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Brand Logo Image */
.brand-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.brand-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 50px;
}

/* Bottom Text */
.brands-bottom-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.brands-bottom-text {
    font-size: 1rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .brands {
        padding: 3rem 1rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brands-heading {
        font-size: 1.5rem;
    }
}



/*=====================   */

    .gm-section {
      /*background: linear-gradient(160deg, #0d5db5 0%, #0a3f80 40%, #083068 100%);*/
      padding: 40px 20px 48px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* TITLE */
    .gm-title {
     
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      text-align: center;
      letter-spacing: 0.02em;
      margin-bottom: 28px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }

    /* MAP CARDS WRAP */
    .gm-map-cards-container {
      width: 100%;
      max-width: 1100px;
      position: relative;
      padding-bottom: 20px;
    }

    /* MAP */
    .gm-map-wrapper {
      width: 100%;
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    }

 .gm-map-wrapper img {
width: 100%;
height: auto;
display: block;
border-radius: 14px;
}

/* MOBILE FIX */
@media (max-width:768px){

.gm-map-wrapper img{
width:100%;
height:auto;
object-fit:contain;
min-height:auto;
}

}

    /* Map pins overlay */
    .gm-pins {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .gm-pin {
      position: absolute;
      transform: translate(-50%, -100%);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .gm-pin svg {
      width: clamp(22px, 3.5vw, 42px);
      height: clamp(28px, 4.5vw, 54px);
      filter: drop-shadow(0 3px 6px rgba(0,0,0,0.45));
    }

    /* pin positions (% of image) */
    .pin-india  { left: 62%; top: 52%; }
    .pin-us     { left: 19%; top: 42%; }
    .pin-eu     { left: 47%; top: 33%; }
    .pin-uae    { left: 58%; top: 42%; }

    /* CARDS GRID — overlaps map bottom */
    .gm-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      width: calc(100% - 40px);
      margin: -90px 20px 0;
      position: relative;
      z-index: 10;
    }

    @media (max-width: 900px) {
      .gm-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -50px;
      }
    }
    @media (max-width: 520px) {
      .gm-cards {
        grid-template-columns: 1fr;
        margin-top: -30px;
      }
    }

    .gm-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
      display: flex;
      flex-direction: column;
    }

    /* Card headers */
    .gm-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px 10px;
    }

    .card-india  .gm-card-header { background: #f47f1a; }
    .card-us     .gm-card-header { background: #1a3a6b; }
    .card-eu     .gm-card-header { background: #1a3a6b; }
    .card-uae    .gm-card-header { background: #1a6b3a; }

    .gm-flag {
      width: 36px;
      height: 24px;
      border-radius: 3px;
      object-fit: cover;
      flex-shrink: 0;
      box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    }

    /* Inline SVG flags */
    .flag-wrap {
      width: 36px;
      height: 24px;
      border-radius: 3px;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    }

    .flag-wrap svg { width: 100%; height: 100%; display: block; }

    .gm-card-title-block {}
    .gm-card-title-block h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.85rem, 1.5vw, 1rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }
    .gm-card-title-block span {
      font-size: clamp(0.7rem, 1.1vw, 0.78rem);
      color: rgba(255,255,255,0.85);
      font-weight: 400;
    }

    /* Card body */
    .gm-card-body {
      padding: 14px 14px 16px;
      flex: 1;
    }

    .gm-card-body ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .gm-card-body ul li {
      font-size: clamp(0.72rem, 1.2vw, 0.82rem);
      color: #1a2a40;
      line-height: 1.4;
      display: flex;
      align-items: flex-start;
      gap: 7px;
    }

    .gm-card-body ul li::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .card-india  .gm-card-body ul li::before { background: #f47f1a; }
    .card-us     .gm-card-body ul li::before { background: #1a3a6b; }
    .card-eu     .gm-card-body ul li::before { background: #1a3a6b; }
    .card-uae    .gm-card-body ul li::before { background: #1a6b3a; }

    /* italic items (matching image style) */
    .italic { font-style: italic; }
    
    .gm-tagline{
text-align:center;
    margin-top: 40px;
    font-size: 24px;
    color: #1C3A5E;
}


        /* ===== CERTIFICATIONS SECTION WITH TABS ===== */
        .certifications {
            background: #F1F8FF;
            padding: 2.5rem 2rem 0.5rem;
        }
        .custom-certifications{
            padding-bottom:2.5rem;
        }

        .certifications-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .certifications-heading {
            font-size: 2rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 1rem;
        }

        /* ===== TABS STYLING (4 tabs, brand colors) ===== */
        .cert-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            border-bottom: 1px solid rgba(43, 108, 43, 0.25);
            padding-bottom: 0;
        }

        .tab-btn {
            background: transparent;
            border: none;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            font-weight: 600;
            color: #1C3A5E;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 30px 30px 0 0;
            font-family: inherit;
        }

        .tab-btn:hover {
            color: #2B6C2B;
            background: rgba(43, 108, 43, 0.05);
        }

        .tab-btn.active {
            color: #ffffff;
            background: #2B6C2B;
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #2B6C2B;
            border-radius: 3px 3px 0 0;
        }

        /* ===== GRID: 3 cards per row, center aligned ===== */
        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            justify-items: center;
            align-items: center;
        }

        /* Horizontal Card - same design, white bg, rounded */
        .certification-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 320px;
            justify-content: flex-start;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }

        .certification-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        /* Left Side - PNG Image (fixed 55x55) */
        .certification-icon {
            width: 55px;
            height: 55px;
            flex-shrink: 0;
        }

        .certification-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Right Side - Text */
        .certification-info {
            text-align: left;
        }

        .certification-title {
            font-size: 1rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.2rem;
            line-height: 1.3;
        }

        .certification-desc {
            font-size: 0.65rem;
            color: #2B6C2B;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* Tab content animation */
        .tab-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .tab-content.active-content {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE (max-width: 768px) ===== */
        @media (max-width: 768px) {
            .certifications {
                padding: 3rem 1.2rem;
            }

            /* tabs become smaller, more compact */
            .cert-tabs {
                gap: 0.3rem;
                margin-bottom: 1.8rem;
            }

            .tab-btn {
                padding: 0.5rem 1rem;
                font-size: 1rem;
                font-weight: 600;
            }

            .certifications-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                justify-items: center;
            }

            .certification-card {
                max-width: 100%;
                padding: 1rem;
                gap: 0.8rem;
            }

            .certification-icon {
                width: 50px;
                height: 50px;
            }

            .certification-title {
                font-size: 1rem;
            }

            .certifications-heading {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 550px) {
            .certifications-grid {
                gap: 0.9rem;
            }
            .certification-card {
                padding: 0.8rem;
            }
            .certification-icon {
                width: 48px;
                height: 48px;
            }
            .certification-title {
                font-size: 1rem;
            }
        }

        /* ensure that on very small devices like 375px cards don't break */
        @media (max-width: 480px) {
            .certifications-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            .certification-card {
                gap: 0.6rem;
            }
        }
        
        /* ===== CERTIFICATIONS SECTION WITHout TABS ===== */



/* additional section styles - complements your existing .certifications CSS */
.certifications-description {
    font-size: 1rem;
    color: #4a5b6e;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

/* section wrapper with left-aligned titles */
.cert-section {
    margin-bottom: 3rem;
    text-align: left;
}

.cert-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid #2B6C2B;
    padding-left: 1rem;
}

.section-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2B6C2B;
    background: rgba(43, 108, 43, 0.12);
    padding: 0.2rem 0.7rem;
    border-radius: 40px;
    letter-spacing: 0.5px;
}


/*=============================*/

/* ===== CTA SECTION ===== */
.cta-left{
    padding: 75px 10px 0 40px;
}
.cta-section {
    padding: 4rem 2rem;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side */
.cta-left h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-left p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Right Side - Form */
.cta-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
}

/* Form Grid - 2 Columns */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1C3A5E;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2B6C2B;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    background: #2B6C2B;
    color: #ffffff;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1f4f1f;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-left h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

       
       
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-locations {
                grid-template-columns: 1fr;
            }

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

            .navbar {
                flex-wrap: wrap;
            }

            .navbar-center {
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.8rem 1rem;
            }

            .navbar-center {
                display: none;
            }

            .navbar-right {
                width: 100%;
                justify-content: flex-end;
                /*margin-top: 0.8rem;*/
            }

            .hero {
                padding: 3rem 1rem;
                min-height: auto;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-buttons {
                flex-direction: row;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 0;
                padding: 1.5rem;
            }

            .stat-item {
                padding: 1rem;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }

            .stat-item:nth-child(odd) {
                border-right: 1px solid var(--border);
            }

            .stat-item:last-child,
            .stat-item:nth-last-child(2) {
                border-bottom: none;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .three-cols,
            .four-grid,
            .six-grid,
            .innovation-cards,
            .location-cards {
                grid-template-columns: 1fr;
            }

            .timeline {
                flex-direction: column;
                gap: 1.5rem;
            }

            .timeline-connector {
                display: none !important;
            }

            .areas-list {
                flex-direction: column;
                gap: 0.8rem;
            }

            .area-item:not(:last-child)::after {
                content: none;
                margin: 0;
            }

            .logo-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .cert-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-locations {
                grid-template-columns: 1fr;
            }

            .form-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .navbar-logo-text .main {
                font-size: 1rem;
            }

            .hero h1 {
                font-size: 1.4rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

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

            .cert-grid {
                grid-template-columns: 1fr;
            }
        }
  .nav-item {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0; /* hover area bada kiya */
}

/* invisible bridge (gap fix) */
.nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px; /* gap cover */
}

/* dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%; /* gap hata diya (120% â†’ 100%) */
    left: 0;
    background: #fff;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

/* hover stay stable */
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #fff;
}

/* Right side container */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap; /* ðŸ”¥ wrap rokega */
} 

/* Menu items container */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Each nav item */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.logo-img {
    height: 45px;   /* adjust as needed */
    width: auto;
    object-fit: contain;
}

/* ===== NAVBAR ===== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* LOGO */
        .navbar-logo {
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        /* RIGHT SIDE CONTAINER */
        .navbar-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        /* MENU ITEMS */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-item {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            font-weight: 500;
            font-size: 1rem;
            color: #333;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .nav-item:hover {
            color: #2B6C2B;
        }

        .nav-item i {
            font-size: 0.7rem;
            color: #888;
            transition: transform 0.2s ease;
            margin-top:3px;
        }

        .nav-item:hover i {
            transform: rotate(180deg);
        }

        /* ===== DROPDOWN - DESKTOP (NICHE KHULEGA) ===== */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: -35px;
            background: #fff;
            border-radius: 8px;
            min-width: 3000px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s ease;
            z-index: 1001;
            padding: 8px 0;
            margin-top: 5px;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: #333;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: #f5f5f5;
            color: #2B6C2B;
        }

        /* LANGUAGE SELECTOR */
        .lang-selector {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            background: #fff;
            cursor: pointer;
            font-weight: 500;
            font-size: 1rem;
            color: #333;
            transition: border-color 0.3s ease;
        }

        .lang-selector:hover {
            border-color: #2B6C2B;
        }

        /* CONTACT BUTTON */
        .btn-contact {
            background-color: #2B6C2B;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .btn-contact:hover {
            background-color: #1f4f1f;
        }

        /* HAMBURGER (Hidden on Desktop) */
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            z-index: 1001;
        }

        /* OVERLAY */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease;
            z-index: 998;
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 768px) {
            .navbar {
                padding: 12px 20px;
            }

            .hamburger {
                display: block;
            }

            .navbar-right {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100%;
                width: 300px;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 70px 20px 20px 20px;
                gap: 15px;
                transition: 0.3s ease;
                z-index: 999;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
            }

            .overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 5px;
            }

            .nav-item {
                width: 100%;
                padding: 12px 0;
                border-bottom: 1px solid #eee;
                justify-content: space-between;
            }
 
            /* ===== MOBILE DROPDOWN - SIDEBAR KE ANDAR NICHE KHULEGA ===== */
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                margin-left: 15px;
                display: none;
                width: calc(100% - 15px);
                background: #f8f9fa;
                border-radius: 8px;
            }

            .nav-item.active .dropdown-menu {
                display: block;
            }

            .dropdown-item {
                padding: 10px 15px;
                font-size: 1rem;
                margin-left:10px;
            }

            .lang-selector {
                width: 100%;
                padding: 10px;
                margin-top: 5px;
            }

            .btn-contact {
                width: 100%;
                text-align: center;
                padding: 10px;
                margin-top: 5px;
            }
        }
        
        
        /* ===== DESKTOP DROPDOWN FIX ===== */
@media (min-width: 769px) {
    .nav-item {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        border-radius: 8px;
        min-width: 220px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        padding: 8px 0;
        margin-top: 5px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        display: block !important;
        z-index: 1001;
    }
    
    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}



/* ========== MAKIN FOOTER CSS - NO CONFLICT ========== */

.makin-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #F2F8FF;
    padding: 4rem 2rem 0 2rem;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ROW 1 - 3 COLUMNS */
.makin-row-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #cccccc;
}

/* COLUMN 1 */
.makin-col-1 {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}


.makin-footer-logo {
    max-width: 160px;
    height: auto;
    display: block;
}

.makin-section-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.makin-connect-form {
    display: flex;
    flex-direction: column;
    max-width: 260px;
}

.makin-connect-form input {
    padding: 0.7rem 1rem;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    font-family: inherit;
    margin-bottom:1rem;
}

.makin-connect-form input:focus {
    outline: none;
    border-color: #2B6C2B;
}

.makin-connect-form button {
    background: #2B6C2B;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s;
}

.makin-connect-form button:hover {
    background: #2B6C2B;
}

.makin-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.makin-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
}

.makin-contact-item i {
    width: 20px;
    color: #000000;
    font-size: 1rem;
}

.makin-contact-item a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.2s;
    word-break: break-all;
}


/* COLUMN 2 */
.makin-col-2 {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.makin-col-2 h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.8px;
    margin-bottom: 1.8rem;
}
.makin-connect-form label {
  display: block;
  font-size: 14px;
  color: #777;        
  margin-bottom: 3px; 
  font-weight: 500;
}
.makin-service-block {
    margin-bottom: 2.4rem;
}

.makin-service-block h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.makin-service-block ul {
    list-style: none;
    padding-left: 12px;
}

.makin-service-block li {
    list-style: disc;
    font-size: 10px;
    line-height: 1.8;
}

.makin-service-block a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    transition: color 0.2s;
}

.makin-service-block a:hover {
    color: #2B6C2B;
}
.makin-social-icons a img{
    width:25px;
    margin-right:5px;
}

/* COLUMN 3 */
.makin-col-3 {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.makin-company-block h3, .makin-resources-block h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.8px;
    margin-bottom: 0.8rem;
}

.makin-company-block ul, .makin-resources-block ul {
    list-style: none;
    padding-left: 12px;
}

.makin-company-block li, .makin-resources-block li {
    list-style: disc;
    font-size: 10px;
    line-height: 1.8;
}

.makin-company-block a, .makin-resources-block a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #2D3A3A;
    transition: color 0.2s;
}

.makin-company-block a:hover, .makin-resources-block a:hover {
    color: #2B6C2B;
}

/* ROW 2 - LOCATIONS (EXACT SCREENSHOT STYLE) */
.makin-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 1.5rem 0 2rem 0;
    padding: 1rem 0;
}

.makin-location {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.makin-location > div {
    flex: 1;
}

.makin-location i {
    font-size: 14px;
    color: #000000;
    margin-top: 10px;
    min-width: 22px;
}

.makin-location h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
}

.makin-location p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

/* COPYRIGHT */
.makin-copyright {
    text-align: center;
    padding: 1.5rem 0 2rem 0;
    font-size: 1rem;
    color: #000000;
    border-top: 1px solid #cccccc;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .makin-row-1 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .makin-row-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .makin-footer-container {
        padding: 2rem 1.5rem 0 1.5rem;
    }
    .makin-connect-form {
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .three-cols {
        padding:0 !important;
    }
    .num1 {
        left: 35%;
        top: 0%;
    }
    .big-number {
        position: absolute;
        font-size: 60px;
    }
    
    .num2 {
        right: 6%;
        top: 58%;
    }
    .certification-card {
        padding:10px;
    }
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 0px;
    display: none;
}

/* Firefox */
* {
    scrollbar-width: none;
}

.custom-hidden{
    overflow:hidden;
}

/* Brands Auto Slider */
.brands-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-slider-track {
    display: flex;
    gap: 30px;
    animation: scrollBrands 20s linear infinite;
    width: fit-content;
}

.brands-slider-track:hover {
    animation-play-state: paused;
}

.brand-card {
    flex: 0 0 auto;
    width: 180px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand-logo img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

/* Animation */
@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brand-card {
        width: 140px;
    }
    .brand-logo img {
        height: 60px;
    }
}

/* ===== COMMON STYLES ===== */
.section-badge {
    display: inline-block;
    background: #2B6C2B;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* ===== MAKIN ADVANTAGE SECTION ===== */
.makin-advantage {
    background: #f8f9fa;
    padding: 3rem 0 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.makin-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.makin-title {
    color: #1C3A5E;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.makin-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.makin-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.makin-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 27px;
    will-change: transform;
}

.makin-card {
    flex: 0 0 calc(33.333% - 18px);
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.8rem;
    text-align: center;
    border: 1px solid #e8ecef;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

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

.makin-icon {
    width: 85px;
    height: 85px;
    background: #2B6C2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.makin-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.makin-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1rem;
}

.makin-card-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Slider Buttons */
.makin-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #1C3A5E;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.makin-slider-btn:hover {
    background: #2B6C2B;
    transform: translateY(-50%) scale(1.05);
}

.makin-slider-btn-prev {
    left: -20px;
}

.makin-slider-btn-next {
    right: -20px;
}

.makin-slider-btn i {
    /*color: white;*/
    font-size: 1.2rem;
}

/* Dots Container */
.makin-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.makin-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display:none;
}

.makin-dot.active {
    width: 28px;
    background: #2B6C2B;
    border-radius: 20px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet: Show 2 cards */
@media (max-width: 992px) {
    .makin-card {
        flex: 0 0 calc(50% - 13.5px);
    }
    .makin-slider-btn-prev {
        left: -10px;
    }
    .makin-slider-btn-next {
        right: -10px;
    }
}

/* Mobile: Show 1 card */
@media (max-width: 640px) {
    .makin-advantage {
        padding: 3rem 1rem;
    }
    
    .makin-slider-track {
        gap: 16px;
    }
    
    .makin-card {
        flex: 0 0 calc(100% - 0px);
        padding: 1.5rem;
    }
    
    .makin-slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .makin-slider-btn-prev {
        left: 5px;
    }
    
    .makin-slider-btn-next {
        right: 5px;
    }
    
    .makin-slider-btn i {
        font-size: 1rem;
    }
    
    .makin-card-title {
        font-size: 1rem;
    }
    
    .makin-card-desc {
        font-size: 1rem;
    }
    
    .makin-icon {
        width: 65px;
        height: 65px;
    }
    
    .makin-icon img {
        width: 35px;
        height: 35px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: #F1F8FF;
    padding: 4rem 2rem;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.testimonials-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1rem;
}

.testimonials-description {
    font-size: 1rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.testimonials-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 24px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-icon {
    width: 85px;
    height: 85px;
    background: #ffffff;
    border: 5px solid #F1F8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -65px auto 1.2rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* ===== SLIDER BUTTONS (COMMON) ===== */
.makin-slider-btn,
.testimonials-slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1C3A5E;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.makin-slider-btn:hover,
.testimonials-slider-btn:hover {
    background: #2B6C2B;
    color: #ffffff;
    border-color: #2B6C2B;
}

.makin-slider-btn-prev,
.testimonials-slider-btn-prev {
    left: 0px;
}

.makin-slider-btn-next,
.testimonials-slider-btn-next {
    right: 0px;
}

/* ===== DOTS (COMMON) ===== */
.makin-dots,
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.makin-dot,
.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.makin-dot.active,
.testimonials-dot.active {
    background: #2B6C2B;
    width: 25px;
    border-radius: 10px;
}

/* ===== RESPONSIVE (MOBILE - 1 CARD ONLY) ===== */
@media (max-width: 768px) {
    .makin-advantage, .testimonials {
        padding: 3rem 0 0;
    }
    .makin-title,
    .testimonials-heading {
        font-size: 1.5rem;
    }
    
    .makin-slider-wrapper,
    .testimonials-slider-wrapper {
        padding: 20px 0;
    }
    
    .makin-slider-track,
    .testimonials-slider-track {
        gap: 16px;
    }
    
    .makin-card,
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .makin-slider-btn,
    .testimonials-slider-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .makin-slider-btn-prev,
    .testimonials-slider-btn-prev {
        left: 5px;
    }
    
    .makin-slider-btn-next,
    .testimonials-slider-btn-next {
        right: 5px;
    }
    
    .makin-icon,
    .testimonial-icon {
        width: 70px;
        height: 70px;
    }
    
    .makin-icon img {
        width: 38px;
        height: 38px;
    }
    
    .testimonial-icon img {
        width: 40px;
        height: 40px;
    }
}

/* Additional fix for slider track */
.makin-slider-track,
.testimonials-slider-track {
    will-change: transform;
}

.makin-card,
.testimonial-card {
    flex-shrink: 0;
} 

/* Mobile Slider Fix - Only for mobile */
@media (max-width: 768px) { 
    .makin-slider-track,
    .testimonials-slider-track {
        gap: 16px !important;
    }
    
    .makin-card,
    .testimonial-card {
        flex: 0 0 calc(100% - 0px) !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}
.section-badge{
    display:none;
}


/*-------------------About-us page css--------------------------*/
/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Hero Section - Left aligned text with #0e1f2b background */
.about-hero-custom {
    background: #0e1f2b;
    padding: 5rem 2rem;
    min-height: 360px;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.about-hero-ey {
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-hero-h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0 1.2rem;
    line-height: 1.2;
}

.about-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    line-height: 1.6;
}

.about-hero-img-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2rem;
    font-style: italic;
}

/* Who We Are - Left aligned */
.who-we-are-left {
    padding: 5rem 2rem;
    background: #fff;
}

.who-we-are-left .container-max {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.who-we-are-left .section-badge-about {
    display: inline-block;
    background: #2B6C2B;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.who-we-are-left .section-title-about {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1.5rem;
    text-align: center;
}

.who-we-are-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
}

/* ========================================
   VISION AND MISSION - PROFESSIONAL DESIGN
   ======================================== */

/* ========================================
   VISION AND MISSION - PROFESSIONAL DESIGN
   ======================================== */

.section-subtitle {
    font-size: 1rem;
    color: #5a8f5a;
    margin-top: -10px;
    margin-bottom: 40px;
}

.vision-mission-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vm-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Wrapper */
.vm-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vm-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.vision-icon-bg {
    background: linear-gradient(135deg, #1C3A5E, #2a5a8a);
}

.mission-icon-bg {
    background: linear-gradient(135deg, #2B6C2B, #3e8e3e);
}

.vm-card:hover .vm-icon {
    transform: scale(1.1);
}

/* Card Number */
.vm-number {
    font-size: 4rem;
    font-weight: 800;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.08;
    font-family: monospace;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-number {
    opacity: 0.15;
    font-size: 4.2rem;
}

/* Card Title */
.vm-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1C3A5E;
}

/* Card Description */
.vm-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Bottom Line */
.vm-line {
    width: 50px;
    height: 3px;
    background: #5a8f5a;
    margin: 0 auto;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.vm-card:hover .vm-line {
    width: 80px;
}

/* Vision Card specific hover */
.vision-card:hover .vm-line {
    background: #1C3A5E;
}

.mission-card:hover .vm-line {
    background: #2B6C2B;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-mission-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .vm-card {
        padding: 2rem;
    }
    
    .vm-number {
        font-size: 3rem;
        top: 0.5rem;
        right: 1rem;
    }
    
    .vm-card h3 {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Difference Cards */
.diff-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.diff-icon {
    width: 70px;
    height: 70px;
    background: #2B6C2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.diff-icon i {
    font-size: 1.8rem;
    color: #fff;
}

/* Timeline Section */
.timeline-section {
    padding: 2rem 2rem;
    background: #F1F8FF;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-heading .section-badge-about {
    display: inline-block;
    background: #2B6C2B;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.timeline-heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 0.5rem;
}

/* Vertical Timeline - Years on LEFT side */
.vertical-timeline {
    position: relative;
    padding: 0;
}

/* Vertical line down the middle-left */
.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2B6C2B;
    border-radius: 2px;
}

/* Each timeline item row */
.timeline-item-new {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
}

/* Year column - fixed width on left */
.timeline-year-new {
    width: 120px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

/* Year badge styling */
.timeline-year-new .year-badge {
    background: #2B6C2B;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    white-space: nowrap;
}

/* Dot on the vertical line */
.timeline-year-new::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #2B6C2B;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 3;
}

/* Content card on the right */
.timeline-content-new {
    flex: 1;
    margin-left: 40px;
    background: #ffffff;
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-content-new:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content-new h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 0.5rem;
}

.timeline-content-new p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Future milestone (2030) styling */
.timeline-item-new.future .timeline-year-new .year-badge {
    background: #a0a0a0;
}

.timeline-item-new.future .timeline-year-new::after {
    background: #a0a0a0;
}

.timeline-item-new.future .timeline-content-new {
    background: #f8f8f8;
    border: 1px dashed #ccc;
}

.timeline-item-new.future .timeline-content-new h4 {
    color: #888;
}

.timeline-item-new.future .timeline-content-new p {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .vertical-timeline::before {
        left: 20px;
    }
    
    .timeline-item-new {
        flex-direction: column;
        padding-left: 35px;
    }
    
    .timeline-year-new {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .timeline-year-new .year-badge {
        white-space: normal;
    }
    
    .timeline-year-new::after {
        left: -26px;
        right: auto;
    }
    
    .timeline-content-new {
        margin-left: 0;
    }
}

/* Leadership Cards */
 .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .bg-white {
            background: #ffffff;
        }
        
        .text-center {
            text-align: center;
        }
        
        .section-badge {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            color: #5a8f5a;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title-about {
            font-size: 36px;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .section-title-about {
                font-size: 28px;
            }
            .section-padding {
                padding: 50px 0;
            }
        }
        
        /* ========================================
           LEADERSHIP ZIGZAG SECTION
        ======================================== */
        .leadership-card {
            display: flex;
            align-items: center;
            gap: 50px;
            background: #F8F9FA;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 40px;
            transition: all 0.3s ease;
        }
        
        .leadership-card:hover {
            transform: translateY(-5px);
            /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);*/
        }
        
        /* Image side - 40% width */
        .leader-img {
            flex: 0 0 40%;
            max-width: 40%;
        }
        
        .leader-img img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
        }
        
        /* Content side - 60% width */
        .leader-text {
            flex: 0 0 60%;
            max-width: 60%;
            padding: 30px 60px 30px 0;
        }
        
        /* Zigzag Right wale mein content padding left hoga */
        .zigzag-right .leader-text {
            padding: 30px 0 30px 40px;
        }
        
        /* Typography */
        .leader-text h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 8px;
        }
        
        .leader-post {
            display: inline-block;
            font-size: 13px;
            color: #5a8f5a;
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .leader-text p {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        

/* Grid layouts */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Section common */
.section-padding {
    padding: 2rem 0 2rem;
}

.section-badge-about {
    display: inline-block;
    background: #2B6C2B;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title-about {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1rem;
    text-align: center;
}

.bg-light-blue {
    background: #F1F8FF;
}

.bg-white {
    background: #fff;
}

.text-center {
    text-align: center;
}

.container-max {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hide default section badges from global CSS */
.section-badge {
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-h1 {
        font-size: 2rem !important;
    }
    
    .vision-mission-grid,
    .difference-grid,
    .leadership-grid {
        grid-template-columns: 1fr !important;
    }
    
    .who-we-are-left .section-title-about {
        font-size: 1.8rem;
    }
    
    /* Timeline responsive - years on top for mobile */
    .vertical-timeline::before {
        left: 20px;
    }
    
    .timeline-item-new {
        flex-direction: column;
        padding-left: 35px;
    }
    
    .timeline-year-new {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .timeline-year-new::after {
        left: -26px;
        right: auto;
    }
    
    .timeline-content-new {
        margin-left: 0;
    }
    
    .timeline-heading h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-h1 {
        font-size: 1.5rem !important;
    }
    
    .section-title-about {
        font-size: 1.5rem !important;
    }
    
    .timeline-content-new {
        padding: 1rem 1.2rem;
    }
}



/*--------contact-us css-------*/


   /* Contact page specific styles (reusing about page patterns) */
    .contact-section {
        padding: 2rem 0.8rem;
        background: #fff;
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-info {
        /*background: #F1F8FF;*/
        border-radius: 24px;
        /*padding: 2.5rem;*/
    }

    .contact-info h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1C3A5E;
        margin-bottom: 1rem;
    }

    .contact-info > p {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .contact-details-list {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .contact-detail-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        background: #2B6C2B;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-icon i {
        font-size: 1.2rem;
        color: #fff;
    }

    .contact-text h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #1C3A5E;
        margin-bottom: 0.3rem;
    }

    .contact-text p, .contact-text a {
        font-size: 1rem;
        color: #555;
        text-decoration: none;
        line-height: 1.5;
    }

    .contact-text a:hover {
        color: #2B6C2B;
    }

    .social-links-contact {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-links-contact a {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2B6C2B;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        text-decoration: none;
    }

    .social-links-contact a:hover {
        background: #2B6C2B;
        color: #fff;
        transform: translateY(-3px);
    }

    .contact-form {
        background: #ffffff;
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #eef2f6;
    }

    .contact-form h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1C3A5E;
        margin-bottom: 0.5rem;
    }

    .contact-form p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 1.8rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .form-group label {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        color: #1C3A5E;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: #fff;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #2B6C2B;
        box-shadow: 0 0 0 3px rgba(43, 108, 43, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .btn-submit {
        width: 100%;
        background: #2B6C2B;
        color: #ffffff;
        border: none;
        padding: 0.9rem;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        background: #1f4f1f;
        transform: translateY(-2px);
    }

    .map-section {
        padding: 0 2rem 5rem 2rem;
        background: #fff;
    }

    .map-container {
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #eef2f6;
    }

    .map-container iframe {
        width: 100%;
        height: 400px;
        display: block;
        border: 0;
    }

    @media (max-width: 768px) {
        .contact-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .contact-section {
            /*padding: 3rem 1.5rem;*/
        }
        .map-section {
            padding: 0 1.5rem 3rem 1.5rem;
        }
        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }
        .contact-info, .contact-form {
            /*padding: 1.8rem;*/
        }
        .timeline-item-new {
            align-items:flex-start;
        }
    }
    
    .mct-title{
        margin-bottom:2.5rem;
    }
    
    .about-hero-sub a{
        color:rgba(255, 255, 255, 0.85);
        text-decoration:none;
        margin:5px;
    }
    
/*---------cta css------------------------------*/
    
     /* Phone field container */
    .phone-group {
        width: 100%;
    }
    
    .phone-input-container {
        width: 100%;
    }
    
    /* intl-tel-input custom styling to match your form inputs */
    .iti {
        width: 100%;
    }
    
    .iti__flag-container {
        border-radius: 8px 0 0 8px;
    }
    
    .phone-input-field {
        width: 100%;
        padding: 12px 15px;
        padding-left: 88px !important;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
        font-family: inherit;
        box-sizing: border-box;
    }
    
    .phone-input-field:focus {
        outline: none;
        border-color: #0066cc;
        box-shadow: 0 0 0 2px rgba(0,102,204,0.2);
    }
    
    /* Selected flag button styling */
    .iti__selected-flag {
        border-radius: 8px 0 0 8px;
        padding: 0 8px 0 12px;
    }
    
    /* Dropdown list styling - scroller with hidden scrollbar */
    .iti__country-list {
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        max-height: 200px;
        overflow-y: auto;
        scrollbar-width: thin;
    }
    
    /* Hide scrollbar but keep functionality (Webkit) */
    .iti__country-list::-webkit-scrollbar {
        width: 4px;
    }
    
    .iti__country-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .iti__country-list::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }
    
    /* Country list items */
    .iti__country {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .iti__country-name {
        font-size: 14px;
    }
    
    .iti__dial-code {
        font-size: 14px;
        color: #666;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .phone-input-field {
            padding-left: 80px !important;
        }
    }
    
   
    @media (max-width: 768px) {
        .cta-container {
            flex-direction: column;
            padding: 40px 20px;
        }
        .form-row {
            flex-direction: column;
            gap: 15px;
        }
    }
    
.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 3px;
    font-size: 14px;
}

.iti__country-list{
    max-width:275px !important;
}


.map-section h2{
    font-size: 1.8rem;
    font-weight: 700;
    color: #1C3A5E;
     margin-bottom: 2rem;
    text-align: center;
}

/* ========================================
   SECTION 6: CALL TO ACTION - SIMPLE & CLEAN
   ======================================== */

.cta-section-v2 {
    padding: 80px 0;
    position: relative;
}

.container-max {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-v2-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

/* Heading */
.cta-v2-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Body Text */
.cta-v2-body {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 18px;
}

/* 3 Points List - Disc Style - FIXED for "dur dur" issue */
.cta-points-list {
    display: inline-block;
    text-align: left;
    max-width: 700px;
    margin: 20px auto;
    padding-left: 20px;
}

.cta-points-list li {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 8px;
    list-style-type: disc;
}

.cta-points-list li:last-child {
    margin-bottom: 0;
}

.cta-points-list li::marker {
    color: #ffffff;
    font-size: 1.1em;
}

/* Buttons */
.cta-v2-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.btn-primary {
    display: inline-block;
    background: #2B6C2B;
    border: 1px solid #2B6C2B;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #235c23;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    cursor: pointer;
}

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

/* Responsive */
@media (max-width: 768px) {
    .cta-section-v2 {
        padding: 50px 0;
    }
    
    .cta-v2-content h2 {
        font-size: 28px;
    }
    
    .cta-v2-body {
        font-size: 15px;
    }
    
    .cta-points-list li {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-v2-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .cta-points-list {
        padding-left: 18px;
    }
}

/*-------Blogs css--------*/

  /* Blog Grid Section */
        .blog-section {
            padding: 5rem 2rem;
            background: #fff;
        }
        
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .blog-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 1.5rem;
        }
        
        .blog-category {
            display: inline-block;
            background: #2B6C2B;
            color: #fff;
            font-size: 0.65rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 0.8rem;
            letter-spacing: 0.5px;
        }
        
        .blog-date {
            font-size: 0.7rem;
            color: #888;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .blog-date i {
            font-size: 0.7rem;
        }
        
        .blog-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            font-weight: 600;
            color: #2B6C2B;
            text-decoration: none;
            transition: gap 0.3s ease;
        }
        
        .blog-read-more:hover {
            gap: 12px;
            color: #1f4f1f;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            padding: 4rem 2rem;
            background: #F1F8FF;
        }
        
        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .newsletter-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 1rem;
        }
        
        .newsletter-desc {
            font-size: 1rem;
            color: #666;
            margin-bottom: 2rem;
        }
        
        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: #2B6C2B;
        }
        
        .newsletter-form button {
            background: #2B6C2B;
            color: #fff;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: #1f4f1f;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .blog-hero-h1 {
                font-size: 2rem;
            }
            .blog-section {
                padding: 3rem 1.5rem;
            }
            .blog-grid {
                grid-template-columns: 1fr;
            }
            .newsletter-form {
                flex-direction: column;
            }
            .blog-hero-custom {
                padding: 3rem 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .blog-hero-h1 {
                font-size: 1.5rem;
            }
            .newsletter-title {
                font-size: 1.4rem;
            }
        }


/*---------Blog-details css--------*/


 /* Blog Detail Main Content */
        .blog-detail-section {
            padding: 4rem 2rem;
            background: #fff;
        }
        
        .blog-detail-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .blog-detail-category {
            display: inline-block;
            background: #2B6C2B;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }
        
        .blog-detail-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 1rem;
            line-height: 1.3;
            margin: 10px 0 10px;
        }
        
        
        .blog-detail-meta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .blog-detail-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px; 
            font-size: 1rem;
            color: #888;
        }
        
        .blog-detail-meta i {
            font-size: 1rem;
            color: #2B6C2B;
        }
        
        .blog-detail-content {
            font-size: 1rem;
            line-height: 1.8;
            color: #444;
        }
        
        .blog-detail-content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1C3A5E;
            margin: 2rem 0 1rem;
        }
        
        .blog-detail-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1C3A5E;
            margin: 1.5rem 0 0.8rem;
        }
        
        .blog-detail-content p {
            margin-bottom: 1.2rem;
        }
        
        .blog-detail-content ul, 
        .blog-detail-content ol {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
        }
        
        .blog-detail-content li {
            margin-bottom: 0.5rem;
        }
        
        .blog-detail-quote {
            background: #F1F8FF;
            padding: 1.5rem 2rem;
            border-left: 4px solid #2B6C2B;
            border-radius: 12px;
            margin: 1.8rem 0;
            font-size: 1rem;
            color: #444;
            line-height: 1.7;
        }
        
        .blog-detail-quote i {
            color: #2B6C2B;
            margin-right: 8px;
        }
        
        /* Share Section */
        .share-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .share-label {
            font-size: 1rem;
            font-weight: 600;
            color: #1C3A5E;
        }
        
        .share-icons {
            display: flex;
            gap: 0.8rem;
        }
        
        .share-icons a {
            width: 38px;
            height: 38px;
            background: #F1F8FF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2B6C2B;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .share-icons a:hover {
            background: #2B6C2B;
            color: #fff;
            transform: translateY(-3px);
        }
        
        /* Back to Blogs Button */
        .back-to-blogs {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1.5px solid #ffffff;
            color: #ffffff;
            padding: 8px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            /*margin-bottom: 2rem;*/
        }
        
        .back-to-blogs:hover {
            background: #2B6C2B;
            color: #fff;
            gap: 12px;
            border: 1.5px solid #2B6C2B;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .blog-detail-hero-h1 {
                font-size: 1.8rem;
            }
            .blog-detail-section {
                padding: 3rem 1.5rem;
            }
            .blog-detail-title {
                font-size: 1.5rem;
            }
            .blog-detail-hero-custom {
                padding: 3rem 1.5rem;
            }
            .share-section {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .blog-detail-hero-h1 {
                font-size: 1.4rem;
            }
            .blog-detail-title {
                font-size: 1.3rem;
            }
            .blog-detail-content {
                font-size: 1rem;
            }
            .blog-detail-quote {
                padding: 1rem 1.2rem;
                font-size: 1rem;
            }
        }
        
        
        
        .timeline-callout {
            background: #F1F8FF;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border-left: 4px solid #1C3A5E;
            margin: 1rem 0rem;
            font-weight: 500;
            color: #1C3A5E;
            font-size: 1rem;
            text-align: left;
        }

/*-----cmdo services css------------*/


 /* Hero Section Override */
        .about-hero-custom {
            text-align: center;
        }
        
        
        .trust-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0 2rem;
        }
        
        .btn-primary-green {
            background: #2B6C2B;
            color: #fff;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary-green:hover {
            background: #1f4f1f;
            transform: translateY(-2px);
        }
        
        /* Section Common */
        .service-section {
            padding: 2rem 2rem;
        }
        
        .service-section-light {
            background: #ffffff;
        }
        
        .service-section-gray {
            background: #F8F9FA;
        }
        
        .container-md {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Section Headers - Left Aligned */
        .section-header {
            margin-bottom: 2rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1C3A5E;
            margin: 1rem 0rem;
            letter-spacing: -0.3px;
            text-align: center;
        }
        
        .section-header p {
            font-size: 1rem;
            color: #000000;
            text-align:center;
            line-height: 1.6;
        }
        
        
        .section-header-center h2 {
            text-align: center;
        }
        
        .section-header-center p {
            margin: 0 auto;
        }
        
        .intro-text p {
            font-size: 1rem;
            line-height: 1.7;
            color: #000000;
            margin-bottom: 1.2rem;
            text-align: center;
        }
        
        /* Process Steps - Clean Timeline */
        .process-grid {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        
        .process-item {
            display: flex;
            gap: 2rem;
            border-bottom: 1px solid #eef2f6;
            padding-bottom: 2rem;
        }
        
        .process-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .process-number {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: #1C3A5E;
            color: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 700;
            /*display:none!important;*/
        }
        
        .process-content {
            flex: 1;
        }
        
        .process-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.5rem;
        }
        
        .process-content p {
            font-size: 1rem;
            color: #000000;
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }
        
        .process-deliverable {
            font-size: 1rem;
            color: #2B6C2B;
            font-weight: 600;
            margin-top: 0.5rem;
        }
        
        .timeline-note {
            background: #F1F8FF;
            padding: 1rem 1.8rem;
            border-radius: 12px;
            border-left: 4px solid #2B6C2B;
            margin-top: 2rem;
            font-weight: 500;
            color: #1C3A5E;
        }
        
        /* Dosage Forms - 3 Column Grid */
        .dosage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .dosage-card {
            background: #F8F9FA;
            border-radius: 16px;
            padding: 1.8rem;
            border: 1px solid #eef2f6;
        }
        
        .dosage-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #1C3A5E;
            display: inline-block;
        }
        
        .dosage-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .dosage-card li {
            font-size: 1rem;
            color: #000000;
            padding: 0.4rem 0;
            position: relative;
            padding-left: 1.2rem;
        }
        
        .dosage-card li::before {
            content: "▹";
            color: #000000;
            position: absolute;
            left: 0; 
            font-size: 1rem;
        }
        
        .cosmetic-note {
            font-size: 1rem;
            color: #888;
            margin-top: 1rem;
            padding-top: 0.5rem;
            border-top: 1px solid #eef2f6;
        }
        
        /* Capacity Table */
        .capacity-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border: 1px solid #eef2f6;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        }
        
        .capacity-table th {
            background: #1C3A5E;
            color: #fff;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .capacity-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #eef2f6;
            font-size: 1rem;
            color: #000000;
            text-align: center;
        }
        
        .capacity-table tr:last-child td {
            border-bottom: none;
        }

        .packaging-intro p {
            font-size: 1rem;
            line-height: 1.7;
            color: #000000;
        }
        
        .packaging-table {
            width: 100%;
            border-collapse: collapse;
            background: #F8F9FA;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        }
        
        .packaging-table th {
            background: #1C3A5E;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .packaging-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #eef2f6;
            font-size: 1rem;
            color: #000000;
            text-align: center;
        }
        
        /* Quality Cards */
        .quality-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 2rem 0 3rem;
        }
        
        .quality-card {
            background: #F8F9FA;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #eef2f6;
        }
        
        .quality-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 1rem;
        }
        
        .quality-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .quality-card li {
            font-size: 1rem;
            color: #000000;
            padding: 0.3rem 0;
            position: relative;
            padding-left: 1.2rem;
        }
        
        .quality-card li::before {
            content: "✓";
            color: #000000;
            position: absolute;
            left: 0;
            font-weight: 700;
            font-size: 1rem;
        }
        
        /* Certifications List */
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
            background: #F8F9FA;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #eef2f6;
        }
        
        .cert-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 0;
            border-bottom: 1px solid #eef2f6;
        }
        
        .cert-item:last-child {
            border-bottom: none;
        }
        
        .cert-name {
            font-weight: 600;
            color: #1C3A5E;
            font-size: 1rem;
        }
        
        .cert-desc {
            font-size: 1rem;
            color: #666;
        }
        
        /* Benefits Grid - Dark Background */
        .benefits-section {
            background: #0e1f2b;
        }
        
        .benefits-section .section-header h2 {
            color: #fff;
        }
        
        .benefits-section .section-header p {
            color: rgba(255,255,255,0.7);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
            margin: 0px 0px 50px;
        }
        
        .benefit-card {
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-2px);
        }
        
        .benefit-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.8rem;
        }
        
        .benefit-card p {
            font-size: 1rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }
        
        /* Client Grid */
        .client-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }
        
        .client-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #eef2f6;
            transition: all 0.3s ease;
        }
        
        .client-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .client-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.8rem;
            text-align: center;
        }
        
        .client-card p {
            font-size: 1rem;
            color: #000000;
            line-height: 1.6;
                text-align: center;
        }
        
        /* CTA Section */
        .cta-section {
            background: #1C3A5E;
            padding: 4rem 2rem;
            text-align: center;
        }
        .custom-cta-section{
            text-align:left !important;
        }
        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
            max-width: 700px;
            margin: 0 auto 1rem;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 2rem 0 1.5rem;
        }
        
        .cta-email-link {
            display: inline-block;
            font-size: 1rem;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        .cta-email-link:hover {
            color: #2B6C2B;
        }
         
        /* Responsive */
        @media (max-width: 992px) {
            .dosage-grid,
            .quality-grid,
            .benefits-grid,
            .client-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .packaging-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .cert-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .service-section {
                padding: 1.5rem 0.5rem 0.5rem;
            }
            .dosage-grid,
            .quality-grid,
            .benefits-grid,
            .client-grid {
                grid-template-columns: 1fr;
            }
            .process-item {
                flex-direction: column;
                gap: 1rem;
            }
            .trust-pills {
                gap: 0.6rem;
            }
            .trust-pill {
                font-size: 0.7rem;
                padding: 0.4rem 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
            .capacity-table th,
            .capacity-table td {
                padding: 0.6rem;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .trust-pills {
                justify-content: center;
            }
            .process-number {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }
        }
        .custom-about-hero-h1{
            font-size:2rem !important;
            /*text-align: center;*/
        }

/* Packaging Grid - 4 columns on desktop */
    .packaging-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.8rem;
        margin-top: 1rem;
    }
    
    /* Packaging Card Styles */
    .packaging-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #eef2f6;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    
    .packaging-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        border-color: #2B6C2B;
    }
    
    /* Card Slider Container */
    .card-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #f5f5f5;
        /*cursor: pointer;*/
    }
    
    .slider-images {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    
    .slider-images img {
        width: 100%;
        flex-shrink: 0;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        display: block;
    }
    
    /* Slider Dots */
    .slider-dots {
        position: absolute;
        bottom: 12px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
        z-index: 5;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
        background: rgba(255,255,255,0.6);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .slider-dots .dot.active {
        width: 20px;
        border-radius: 10px;
        background: #2B6C2B;
    }
    
    .slider-dots .dot:hover {
        background: #fff;
    }
    
    /* Card Typography */
    .packaging-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1C3A5E;
        margin: 1rem 1rem 0.5rem 1rem;
        line-height: 1.3;
        text-align:center;
    }
    
    .packaging-card p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
        margin: 0 1rem 1.2rem 1rem;
        text-align:center;
    }
    
    /* Responsive Breakpoints */
    @media (max-width: 1100px) {
        .packaging-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
    }
    
    @media (max-width: 800px) {
        .packaging-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }
    }
    
    @media (max-width: 500px) {
        .packaging-grid {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }
        
        .packaging-card h3 {
            font-size: 1rem;
        }
        
        .packaging-card p {
            font-size: 1rem;
        }
    }


/*------------third party services css-------*/

  /* Two cards with columns layout for Section 3 */
        .two-col-cards {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            flex-direction: column;
        }
        
        .split-card {
            flex: 1;
            /*background: #F8F9FA;*/
            border-radius: 20px; 
            padding: 2rem;
            /*border: 1px solid #eef2f6;*/
            transition: all 0.3s ease;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }
        
        .split-card:hover {
            transform: translateY(-4px);
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        }
        
        .card-icon {
            font-size: 2.2rem;
            color: #2B6C2B;
            margin-bottom: 1.2rem;
        }
        
        .split-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.75rem;
        }
        
        .split-card .card-intro {
            font-size: 1rem;
            color: #000000;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        .split-grid {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        
        .split-col {
            flex: 1;
            min-width: 140px;
        }
        
        .split-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.8rem;
            letter-spacing: 0.3px;
        }
        
        .split-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .split-col li {
            font-size: 1rem;
            color: #000000;
            padding: 0.3rem 0;
            position: relative;
            padding-left: 1.2rem;
        }
        
        .split-col li::before {
            content: "▹";
            color: #2B6C2B;
            position: absolute;
            left: 0;
            font-size: 0.7rem;
        }
        
        /* Process horizontal flow (desktop) */
        .process-horizontal {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            position: relative;
        }
        .cta-section {
            background: #1C3A5E;
            padding: 2rem 0.5rem;
        }
        .process-step {
            flex: 1;
            min-width: 160px;
            text-align: center;
            background: #fff;
            padding: 1.5rem 0rem;
            border-radius: 16px;
            border: 1px solid #eef2f6;
            position: relative;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: #1C3A5E;
            color: #fff;
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 1rem auto;
        }
        
        .process-step h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.5rem;
            height:40px;
        }
        
        .process-step p {
            font-size: 1rem;
            color: #000000;
            line-height: 1.5;
            margin-bottom: 0;
        }
        
        
        
        /* Certification badge grid */
        .badge-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .badge-item {
            background: #fff;
            border: 1px solid #eef2f6;
            border-radius: 40px;
            padding: 0.5rem 1rem;
            text-align: center;
            font-size: 1rem;
            font-weight: 600;
            color: #1C3A5E;
        }
        
        .checklist-grid {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .checklist-grid li {
            font-size: 1rem;
            color: #000000;
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.6rem;
        }
        
        .checklist-grid li::before {
            content: "✓";
            color: #2B6C2B;
            position: absolute;
            left: 0;
            font-weight: 700;
            font-size: 1rem;
        }
        
        /* Markets section with map feel */
        .markets-grid {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .market-col {
            flex: 1;
            background: rgba(28,58,94,0.03);
            border-radius: 20px;
            padding: 1.8rem;
            border: 1px solid #eef2f6;
        }
        
        .market-col h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        
        .market-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .market-col li {
            font-size: 1rem;
            color: #000000;
            padding: 0.4rem 0;
            position: relative;
            padding-left: 1.2rem;
        }
        
        .market-col li::before {
            content: "▹";
            color: #2B6C2B;
            position: absolute;
            left: 0;
        }
        
        .btn-outline-link {
            background: #2B6C2B;
            border: 1px solid #2B6C2B;
            color: #ffffff;
            padding: 0.6rem 2.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-outline-link:hover {
            background: #1C3A5E;
            color: #fff;
        }
        
        .btn-secondary-link {
            background: transparent;
            color: #1C3A5E;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-bottom: 1px solid #1C3A5E;
            padding-bottom: 2px;
        }
        
        .btn-secondary-link:hover {
            color: #2B6C2B;
            border-bottom-color: #2B6C2B;
        }
        
        @media (max-width: 768px) {
            .split-grid {
                flex-direction: column;
                gap: 1rem;
            }
            .process-horizontal {
                flex-direction: column;
            }
            .process-step {
                text-align: center;
                /*display: flex;*/
                gap: 1rem; 
                align-items: center;
                display:block;
            } 
            .step-number {
                text-align:center;
                
            }
            .badge-grid {
                grid-template-columns: 1fr;
            }
            .markets-grid {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .split-card {
                padding: 1.5rem;
            }
        }
        /* Auto Slider */
.cert-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 2rem 0 3rem 0;
}

.cert-slider {
    display: flex;
    animation: slide 30s linear infinite;
    gap: 2rem;
}

.cert-slide {
    flex: 0 0 auto;
    width: 100px;
    text-align: center;
}

.cert-slide img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cert-slider:hover {
    animation-play-state: paused;
}

/* 3 Cards Row */
.three-cards-row {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    background: #F8F9FA;
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    text-align:center;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    font-size: 1rem;
    color: #000;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.3rem;
}

.info-card li::before {
    content: "✓";
    color: #2B6C2B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .three-cards-row {
        flex-direction: column;
    }
    
    .cert-slide {
        width: 70px;
    }
    
    .cert-slide img {
        height: 50px;
    }
}
        
    /*-----------quality and certification services page css------------*/
    
      /* Quality Certifications Page Specific Styles */
        .cert-table-wrapper {
            overflow-x: auto;
            background: #fff;
            border-radius: 20px;
            border: 1px solid #eef2f6;
            margin: 2rem 0;
        }
        
        .cert-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        
        .cert-table th {
            background: #1C3A5E;
            color: #fff;
            padding: 1rem 1.2rem;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .cert-table td {
            padding: 0.9rem 1.2rem;
            border-bottom: 1px solid #eef2f6;
            font-size: 1rem;
            color: #000;
        }
        
        .cert-table tr:last-child td {
            border-bottom: none;
        }
        
        .cert-table td:first-child,
        .cert-table th:first-child {
            font-weight: 600;
            color: #1C3A5E;
        }
        
        .cert-request {
            text-align: center;
            margin-top: 1rem;
            font-size: 1rem;
            color: #2B6C2B;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            background: #F8F9FA;
            border-radius: 20px;
            padding: 1.8rem;
            text-align: center;
            border: 1px solid #eef2f6;
        }
        
        .stat-card p {
            font-size: 1rem;
            color: #000;
            line-height: 1.5;
            margin-bottom: 0;
        }
        
        .facility-address {
            background: #F8F9FA;
            border-radius: 20px;
            padding: 1.8rem;
            margin-top: 1.5rem;
            border: 1px solid #eef2f6;
        }
        
        .address-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .address-block h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.8rem;
        }
        
        .address-block p {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .doc-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .doc-card {
            background: #F8F9FA;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #eef2f6;
            transition: all 0.3s ease;
            text-align:center;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }
        
        .doc-card:hover {
            transform: translateY(-3px);
            border-color: #2B6C2B;
        }
        
        .doc-card i {
            font-size: 1.5rem;
            color: #2B6C2B;
            margin-bottom: 0.8rem;
        }
        
        .doc-card p {
            font-size: 1rem;
            color: #000;
            line-height: 1.5;
            margin-bottom: 0;
        }
        
        .two-col-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .action-card {
            background: #F8F9FA;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid #eef2f6;
        }
        
        .action-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1C3A5E;
            margin-bottom: 0.8rem;
        }
        
        .action-card p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
       
        @media (max-width: 992px) {
            .stats-grid,
            .doc-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .address-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .two-col-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .stats-grid,
            .doc-grid {
                grid-template-columns: 1fr;
            }
            .stat-card {
                padding: 1.2rem;
            }
        }
        
        .trust-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem 0 1rem;
        }
        
        .trust-pill {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            /*padding: 0.5rem 0rem;*/
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--primary);
        }
        
        .hero-buttons {
            gap: 1rem;
            margin-top: 1.5rem;
        }
        /* QC Laboratory - Balanced Two Column Grid */
.qc-balanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.qc-text-col p {
    font-size: 1rem;
    color: #000;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Equipment List - Clean & Compact */
.qc-equip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qc-equip-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0.22rem 0;
    border-bottom: 1px solid #eef2f6;
}

.qc-equip-list li:last-child {
    border-bottom: none;
}

.qc-equip-list li i {
    width: 40px;
    height: 40px;
    background: #F1F8FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B6C2B;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.equip-info {
    flex: 1;
}

.equip-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1C3A5E;
    line-height: 1.3;
}

.equip-info span {
    display: block;
    font-size: 0.7rem;
    color: #888;
    font-weight: 400;
    line-height: 1.3;
}

/* Facility Two Column Layout */
.facility-two-col {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-left,
.facility-right {
    flex: 1;
    background: #F8F9FA;
    padding: 30px;
    border-radius: 16px;
}

.facility-left p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.facility-left p:last-child {
    margin-bottom: 0;
}

.facility-right p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.facility-right p:last-child {
    margin-bottom: 0;
}

.facility-right i {
    color: #2B6C2B;
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .facility-two-col {
        flex-direction: column;
        gap: 20px;
    }
}

/* Hover Effect */
.qc-equip-list li:hover i {
    background: #2B6C2B;
    color: #fff;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .qc-balanced-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.stat-item {
    padding:0 !important;
}

.benefits-section .benefit-card {
    display: flex;
    flex-direction: column;
}

.benefits-section .benefit-card h3 {
    line-height: 1.4;
    min-height: 40px; 
    text-align: center;
}

.benefits-section .benefit-card p {
        text-align: center;
}

.custom-section h3{
    font-size: 1.4rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 0.75rem;
    display: block;
    text-align:center;
}

.split-col ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}
.split-col {
    max-width: 320px; 
    margin: 0 auto;     
    text-align: left; 
}


/*--------------------------Faqs css--------------------------------------*/
.container-faqs {
    margin: 0;
    padding: 0 0 40px;
}

.faq-page {
    background: #ffffff;
}

/* Tabs Styles - 1 ROW ONLY */
.faq-tabs {
    background: #F2F8FF;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex-wrap: nowrap;
    overflow-x: auto;
}

.tab-btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1C3A5E;
    background: transparent;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom:10px;
}

.tab-btn:hover {
    background: #1C3A5E;
    color: #ffffff;
}

.tab-btn.active {
    background: #1C3A5E;
    color: #ffffff;
    margin-bottom:10px;
}

/* Remove dot indicator */
.tab-btn.active::after {
    display: none;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active-content {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Heading inside Tab - remove dot */
.tab-section-heading {
    text-align: center;
    margin-bottom: 2rem;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tab-section-heading h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: auto;
    display: inline-block;
    position: relative;
}

.tab-section-heading .dot-indicator {
    /*display: none;*/
    color:#2B6C2B;
}

/* Accordion Styles */
.accordion-faq {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-faq-header {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #F2F8FF;
}

.accordion-faq-header:hover {
    background: #F8FAFE;
}

.accordion-faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1C3A5E;
    margin: 0;
    padding-right: 1rem;
}

.accordion-faq-header i {
    font-size: 1.2rem;
    color: #1C3A5E;
    transition: transform 0.3s ease;
}

.accordion-faq.active .accordion-faq-header i {
    transform: rotate(45deg);
}

.accordion-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #F8FAFE;
    border-top: 1px solid #eef2f6;
}

.accordion-faq.active .accordion-faq-content {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.accordion-faq-content p {
    padding: 1.5rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
}

.accordion-faq-content ul {
    padding: 0 1.5rem 1.5rem 2.5rem;
    margin: 0;
}

.accordion-faq-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-tabs {
        border-radius: 20px;
        justify-content: flex-start;
    }
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    .tab-section-heading h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-tabs {
        border-radius: 16px;
    }
    .tab-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }
    .tab-section-heading h2 {
        font-size: 1.3rem;
    }
    .accordion-faq-header {
        padding: 1rem;
    }
    .accordion-faq-header h3 {
        font-size: 1rem;
    }
    .accordion-faq-content p,
    .accordion-faq-content li {
        font-size: 1rem;
    }
    .accordion-faq-content p {
        padding: 1rem;
    }
    .accordion-faq-content ul {
        padding: 0 1rem 1rem 1.8rem;
    }
}

/*----------------------Segment we serve----------------------------------*/
      /* Segments Page Specific Styles */
.segments-page {
    background: #F8F9FA;
}

/* SECTION 3 - SEGMENTS GRID */
.segments-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.segment-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.segment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
    border-color: rgba(43,108,43,0.2);
}

.segment-category {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #2B6C2B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.segment-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.segment-tagline {
    font-size: 1.1rem;
    color: #2B6C2B;
    font-weight: 500;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eef2f6;
    height:66px;
}

.segment-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    height:155px;
}

.segment-details {
    background: #F8FAFE;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.dosage-forms {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.dosage-forms strong {
    color: #1C3A5E;
    font-weight: 700;
}

.availability {
    font-size: 1rem;
    color: #2B6C2B;
    font-weight: 500;
}

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

.segment-links a {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.link-catalogue {
    color: #2B6C2B;
    border-bottom: 2px solid transparent;
}

.link-catalogue:hover {
    border-bottom-color: #2B6C2B;
}

.link-custom {
    color: #1C3A5E;
    border-bottom: 2px solid transparent;
}

.link-custom:hover {
    border-bottom-color: #1C3A5E;
}

/* SECTION 4 - HOW TO WORK */
.work-section {
    padding: 60px 0;
    background: #ffffff;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.work-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
}

.work-icon {
    width: 70px;
    height: 70px;
    background: #e8f0e8;
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

.work-icon i {
    font-size: 1.8rem;
    color: #2B6C2B;
}

.work-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 0.75rem;
}

.work-card p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    height: 100px;
}

.work-link {
    font-size: 1rem;
    font-weight: 600;
    color: #2B6C2B;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.work-link:hover {
    gap: 10px;
    transition: all 0.2s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .segments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 700px;
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .segments-section {
        padding: 40px 0;
    }
    
    .segment-card {
        /*padding: 1.5rem;*/
    }
    
    .segment-card h3 {
        font-size: 1.3rem;
    }
    
    .segment-tagline {
        font-size: 1rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-card {
        padding: 1.5rem;
    }
    .segment-description {
        height:250px !important;
    }
}

.btn-learn-more a{
    color:#ffffff;
    text-decoration:none;
}
.hero-buttons a{
    color:#ffffff;
    text-decoration:none;
}

.gm-card-title-block h3{
    margin:0;
}

.custom-cdmo-process h2,
.custom-cdmo-process p{
    text-align:left;
}


/*----------Modal index css---------*/

/* Modal Custom Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: #1C3A5E;
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 1.4rem;
}

.modal-body {
    padding: 2rem;
}

.modal-body .form-label {
    font-weight: 600;
    font-size: 1rem;
    color: #1C3A5E;
    margin-bottom: 0.5rem;
}

.modal-body .form-label i {
    margin-right: 0.5rem;
    color: #2B6C2B;
}

.modal-body .form-control,
.modal-body .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: #2B6C2B;
    box-shadow: 0 0 0 3px rgba(43, 108, 43, 0.1);
}

.modal-body .btn-primary {
    background: #2B6C2B;
    border: none;
    padding: 0.7rem 2rem;
    font-weight: 600;
    border-radius: 10px;
}

.modal-body .btn-primary:hover {
    background: #1a5c44;
    transform: translateY(-2px);
}

.modal-body .btn-secondary {
    background: #6c757d;
    border: none;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
}

.modal-body .btn-secondary:hover {
    background: #5a6268;
}

.form-row{
    margin:0;
}

/*========================================*/ 
.whatapps_icon .float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 120px;
    right: 10px;
    color: #fff;
    background-color: #4da627;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */ 
    z-index: 100;
    border:none;
} 

.whatapps_icon .float:hover{
    color:#fff;
    background:#229000;
}
.whatapps_icon i {
    font-size: 32px;
    margin-top: 7px;
} 
/*-----------------------------------------*/
/* Base Styles */
.phone_icon .btn-floating {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 185px;
    right: 10px;
    color: #fff;
    background-color: #4da627;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
    border:none;
    font-size: 27px;


.phone_icon .btn-floating i {
    font-size: 26px;
    margin-top:7px;
}

.phone_icon .btn-floating:hover {
    color:#fff;
    background:#229000; 
}
/*========================================*/   
        .timeline-callout a{
            font-size: 1rem;
            font-weight: 600;
            color: #2B6C2B;
            text-decoration: none;
            display: inline-block;
            margin-top: 0.5rem;
        }
        
        .timeline-callout a:hover {
            text-decoration: underline;
        }
