/* ===============================
   RESET & BASE STYLES
=============================== */
:root {
    --primary-blue: #1a6bb3;
    --dark-blue: #0d4a86;
    --light-blue: #e8f2fc;
    --accent-teal: #00a3a3;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e0e6ed;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --dark-blue-pharma: #072f55;
    --teal-accent: #0bbcd6;
    --brand-teal: #14c6cc;
    --section-blue: #0a4b78;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 126px; /* Top bar (56px) + Main header (70px) */
}

/* Main container for all sections */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* HERO LAYOUT */
.hero {
    background: linear-gradient(110deg, #0a4b78 0%, #0b5f8f 45%, #0a4b78 100%);
    padding: 40px 0;
    height: 465px;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* LEFT SIDE - FORM CARD */
.hero-left {
    flex: 1;
    max-width: 50%;
}

.hero-form-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-left: 40px;
}

.hero-form-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #0a4b78;
    font-weight: 600;
}

.hero-form-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* FORM STYLES */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

/* FORM BUTTON */
.hero-form-btn {
    width: 100%;
    padding: 14px;
    background: #18b7c4;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-form-btn:hover {
    background: #139aa6;
    transform: translateY(-2px);
}

.hero-form-btn i {
    font-size: 16px;
}

/* RIGHT SIDE */
.hero-right {
    flex: 1;
    max-width: 50%;
}

/* VIDEO */
.hero-video video {
    width: 100%;
    height: 345px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    margin-left: -5px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* BUTTON STYLES */
.btn-primary {
    background: #18b7c4;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #139aa6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #0a4b78;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ===============================
   SECTION TITLE
=============================== */
.section-title {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 45px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0a2b4f;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 15px;
    color: #555;
}

.section-tag {
    font-size: 30px;
    font-weight: 600;
    color: #0b4f79;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-heading-box {
    font-size: 34px;
    font-weight: 700;
    color: #0b2f4a;
    background: #f1f5f9;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 18px;
    display: inline-block;
}

/* ===============================
   SECTION TITLE - MOBILE RESPONSIVE
   Sirf mobile ke liye changes
=============================== */

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .section-title {
        max-width: 100%;
        margin: 0 auto 30px;
        padding: 0 15px;
    }
    
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .section-title p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .section-tag {
        font-size: 22px;
        margin-bottom: 8px;
        letter-spacing: 0.3px;
    }
    
    .about-heading-box {
        font-size: 24px;
        padding: 10px 15px;
        margin-bottom: 15px;
        border-radius: 8px;
        display: inline-block;
        width: auto;
        max-width: 100%;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .section-title {
        margin: 0 auto 25px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 13px;
    }
    
    .section-tag {
        font-size: 20px;
    }
    
    .about-heading-box {
        font-size: 22px;
        padding: 8px 12px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-title p {
        font-size: 12px;
    }
    
    .section-tag {
        font-size: 18px;
    }
    
    .about-heading-box {
        font-size: 18px;
        padding: 8px 10px;
    }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
    .section-title h2 {
        font-size: 20px;
    }
    
    .section-tag {
        font-size: 16px;
    }
    
    .about-heading-box {
        font-size: 18px;
        padding: 6px 8px;
    }
}
/* ===============================
   ABOUT SECTIONS
=============================== */
.about-section {
    padding: 30px 0;
    background: var(--white);
    border: 2px solid #d1d5db;
    border-radius: 14px;
    max-width: 1320px;
    margin: -25px auto 40px;
}

.about-wrapper {
    max-width: 1200px;
    margin: -7px auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-left {
    width: 45%;
}

.about-left img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

.about-right {
    width: 55%;
}

.about-right h2,
.about-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0b2f4a;
    text-align: center;
    background: #f1f5f9;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 18px;
    display: inline-block;
}

.about-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #1e2b4f;
    margin-bottom: 18px;
}

.about-right p strong {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: #0a1f44;
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-heading {
    font-size: 42px;
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-line {
    width: 5px;
    min-height: 220px;
    background: var(--teal-accent);
    flex-shrink: 0;
}

.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #0b2f4a;
    background: #f1f5f9;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #0cc1c7;
    color: #ffffff;
    border-color: #0cc1c7;
}

/* ===============================
   COMPANIES SECTION (SHOP BY CATEGORY)
=============================== */
.companies-section {
    padding: 20px 0 0;
    background: var(--white);
    position: relative;
    z-index: 2;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 1320px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-card {
    position: relative;
    height: 335px;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.company-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.6s ease;
    z-index: 0;
}

.company-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25));
    z-index: 1;
}

.company-card:hover::after {
    transform: scale(1.08);
}

.company-overlay {
    position: absolute;
    bottom: 0;
    padding: 22px;
    color: var(--white);
    z-index: 2;
}

.company-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.company-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.company-overlay a {
    color: var(--white);
    font-weight: 600;
    border-bottom: 2px solid var(--white);
    padding-bottom: 2px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.company-overlay a:hover {
    opacity: 0.8;
}

.section-title h1 { 
    text-align: center;
    background: #f1f5f9;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    padding: 4px 20px;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    width: 1200px;
    max-width: 1200px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    margin-left: -177px;
}

.section-title p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    font-weight: 200;
    color: #334155;
    line-height: 1.6;
}

.info-line {
    width: 80px;
    height: 3px;
    background: var(--teal-accent);
    margin: 0 auto 20px;
}

/* ===============================
   FUTURE SECTION
=============================== */
.future-section {
    padding: 40px 0;
    background: var(--white);
    border: 2px solid #d1d5db;
    border-radius: 14px;
    height: 560px;
    max-width: 1320px;
    margin: 20px auto;
    box-sizing: border-box;
}

.future-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 20px;
    margin-top: -44px;
}

.future-left {
    width: 55%;
    padding: 0 20px;
}

.future-left h1 {
    font-size: 34px;
    line-height: 1.3;
    color: #0f172a;
    background: #f1f5f9;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    margin-bottom: 20px;
    width: 1200px;
    margin-left: -13px;
    margin-right: auto;
    white-space: nowrap;
}

.sub-text {
    font-size: 17px;
    color: #334155;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 10px;
    padding: 6px 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.future-points {
    max-width: 800px;
    margin: 25px auto 0;
    padding: 10px 5px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.future-points li {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 16px;
    padding-left: 0;
    list-style-position: inside;
}

.future-points li:last-child {
    margin-bottom: 0;
}

.future-right {
    width: 45%;
    position: relative;
    margin-top: 170px;
}

.future-img-main,
.future-img-overlap {
    width: 70%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f4f7;
}

.future-img-main img,
.future-img-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.future-img-main {
    margin-left: auto;
}

.future-img-overlap {
    position: absolute;
    bottom: -90px;
    left: -50px;
    box-shadow: 0 22px 40px rgba(0,0,0,0.18);
    border: 3px solid #0b2f4a;
}

.future-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.future-stat-box {
    background: var(--dark-blue-pharma);
    color: var(--white);
    padding: 26px 28px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.future-stat-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.future-stat-box p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* ===============================
   DIVISION SECTION
=============================== */
.division-section {
    background: var(--white);
    padding: 60px 20px;
}

.division-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.division-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.division-card:hover {
    transform: translateY(-6px);
}

.division-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.division-card:hover img {
    transform: scale(1.12);
}

.division-title {
    background: #083b66;
    color: var(--white);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 10px;
}

/* ===============================
   GROUP SECTION WITH BORDER
=============================== */
.group-section {
    background: var(--white);
    overflow: hidden;
    padding-top: 1px;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    margin: -6px auto 40px;
    max-width: 1320px;
}

.group-overlay {
    background: linear-gradient(rgba(7,60,105,0.92), rgba(7,60,105,0.92)), url("images/group-bg.jpg") center/cover no-repeat;
    padding: 15px 20px 140px;
}

.group-overlay-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    color: var(--white);
}

.group-text {
    width: 55%;
}

.group-text h2 {
    font-size: 34px;
    line-height: 1.3;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    padding: 16px 20px;
    display: inline-block;
}

.group-desc {
    width: 45%;
    font-size: 20.5px;
    line-height: 1.7;
    opacity: 0.95;
}

.group-cards-wrapper {
    max-width: 1200px;
    margin: -90px auto 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    padding: 0 20px;
}

.group-card {
    background: #0cc1c7;
    color: var(--white);
    padding: 34px 28px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s ease;
}

.group-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.group-card p {
    font-size: 14.5px;
    line-height: 1.6;
}

.delay-1 { transition-delay: 0.5s; }
.delay-2 { transition-delay: 1s; }

.group-card.show {
    transform: translateY(0);
    opacity: 1;
}

.group-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 2px 20px 23px;
}

.bottom-left {
    width: 50%;
}

.bottom-left h2 {
    font-size: 34px;
    line-height: 1.3;
    color: #0b2f4a;
    background: #f1f5f9;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    padding: 16px 20px;
    display: inline-block;
}

.bottom-right {
    width: 50%;
    border-left: 3px solid #0cc1c7;
    padding-left: 28px;
}

.bottom-right p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4b5d6f;
}

.divisions-wrapper {
    margin-top: 30px;
}

/* ===============================
   COMMITMENT SECTION
=============================== */
.commitment-section { 
    position: relative;
    width: 100%;
    height: 420px;
    background: url("images/images14.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -46px;
    z-index: 2;
}

.commitment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.commitment-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

.commitment-content p {
    color: var(--white);
    font-size: 22px;
    line-height: 1.6;
}

/* ===============================
   TESTIMONIALS
=============================== */
.testimonials {
    background: #f9fbfd;
    padding: 90px 20px;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimonials-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0b2c4d;
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 18px;
    color: #5f6f82;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px 32px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 22px;
    color: #1565c0;
    font-weight: 700;
}

.stars {
    color: #ffb400;
    font-size: 18px;
    letter-spacing: 2px;
}

.designation {
    display: block;
    margin: 10px 0 18px;
    font-size: 15px;
    color: #6b7c93;
}

.quote {
    font-size: 16px;
    line-height: 1.75;
    color: #4f5d73;
    font-style: italic;
}

/* ===============================
   PARTNER SECTION
=============================== */
.partner-section { 
    width: 100%;
    background: linear-gradient(90deg, #063a63 0%, #0a4f7c 100%);
    padding: 70px 20px;
    overflow: hidden;
    position: relative;
}

.partner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/images15.png") no-repeat left center;
    background-size: 1260px;
    opacity: 0.18;
    z-index: 1;
}

.partner-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.partner-content { 
    flex: 1;
    color: var(--white);
    opacity: 0;
    transform: translateX(60px);
    animation: fadeRight 1.2s ease forwards;
    animation-delay: 0.3s;
    max-width: 1000px;
    margin: -20px auto;
    text-align: center;
}

.partner-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 700;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-content p {
    font-size: 17px;
    line-height: 1.7;
    width: 900px;
    margin: 0 auto 32px auto;
    opacity: 0.95;
    text-align: center;
}

.partner-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

/* ===============================
   FAQ SECTION
=============================== */
.faq-section {
    max-width: 820px;
    margin: 25px auto;
    padding: 0 15px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2f52;
    margin-bottom: 28px;
}

.faq-item {
    border: 1.5px solid #6ee7d8;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active {
    border: 2px solid #111;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0a2f52;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    font-size: 22px;
    color: #12c6c0;
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 20px 16px;
    color: #4b5d6f;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 160px;
}

/* ===============================
   KEYFRAMES
=============================== */
@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE DESIGN - MERGED & OPTIMIZED
   (Duplicate media queries removed)
=============================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    body {
        padding-top: 140px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-inner {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
    }

    .hero-form-card {
        margin-left: 0;
    }

    .hero-video video {
        height: 300px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .future-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .future-left,
    .future-right {
        width: 100%;
    }
    
    .future-right {
        margin-top: 40px;
    }
    
    .future-left h1 {
        font-size: 28px;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 12px 16px;
        white-space: normal;
        line-height: 1.4;
    }
    
    .division-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .company-card {
        height: 320px;
    }
    
    .about-wrapper {
        flex-direction: column;
    }
    
    .about-left,
    .about-right {
        width: 100%;
    }
    
    .about-left img {
        height: 300px;
    }
    
    .group-overlay-inner {
        flex-direction: column;
    }
    
    .group-text,
    .group-desc {
        width: 100%;
    }
    
    .group-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .group-bottom {
        flex-direction: column;
    }
    
    .bottom-left,
    .bottom-right {
        width: 100%;
    }
    
    .partner-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-content p {
        max-width: 100%;
    }
    
    .partner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .partner-content h2 {
        font-size: 34px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    .main-container {
        padding: 0 15px;
    }
    
    .hero {
        height: auto;
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-video video {
        height: 300px;
    }
    
    .hero-form-card {
        padding: 20px;
    }
    
    .hero-form-card h3 {
        font-size: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 58%;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* ABOUT SECTION */
    .about-section {
        margin: -2px 15px 30px;
        padding: 20px 15px;
    }
    
    .about-wrapper {
        flex-direction: column;
        gap: 25px;
        margin: 0;
    }
    
    .about-left {
        width: 100%;
    }
    
    .about-left img {
        height: 280px;
    }
    
    .about-right {
        width: 100%;
    }
    
    .about-right h2,
    .about-heading {
        font-size: 24px;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
    }
    
   .about-right p {
    font-size: 15px;
    text-align: justify;
    text-align-last: left;
}

    .about-right p strong {
        font-size: 26px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-line {
        width: 100%;
        height: 5px;
        min-height: auto;
    }
    
    .about-btn {
        width: 100%;
        text-align: center;
    }
    
    /* COMPANIES SECTION - MOVED TO BOTTOM */
    .companies-section {
        margin: 12px 15px;
        padding: 15px 0;
        order: 2; /* For flexbox ordering if parent is flex */
    }
    
    .section-title h1 {
        width: 100%;
        max-width: 100%;
        margin: 0 0 15px 0;
        font-size: 22px;
        padding: 10px 15px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
    }
    
  .section-title p {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: justify;
    text-align-last: center; /* ya left / right */
}

    .companies-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .company-card {
        height: 280px;
    }
    
    .company-overlay {
        padding: 18px;
    }
    
    .company-overlay h3 {
        font-size: 18px;
    }
    
   .company-overlay p {
    font-size: 13px;
    text-align: justify;
    text-align-last: center; /* ya left bhi rakh sakte ho */
}

    
    /* FUTURE SECTION */
    .future-section {
        height: auto;
        margin: 15px;
        padding: 0 0 25px;
        margin-top:-1px;
    }
    
    .future-container {
        flex-direction: column;
        gap: 30px;
        margin-top: 0;
        padding: 20px 15px;
    }
    
    .future-left,
    .future-right {
        width: 100%;
    }
    
    .future-left h1 {
        font-size: 22px;
        width: 100%;
        margin: 0 0 15px 0;
        padding: 12px 15px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
        text-align: center;
    }
    
    .sub-text {
        font-size: 15px;
        padding: 5px 10px;
    }
    
    .future-points {
        margin: 20px 0;
    }
    
  .future-points li {
    font-size: 14px;
    margin-bottom: 12px;
    text-align: justify;
    text-align-last: left;
}

    .future-right {
        margin-top: -14px;
        margin-left:8px;
    }
    
    .future-img-main,
    .future-img-overlap {
        width: 85%;
        height: 200px;
    }
    
    .future-img-main {
        margin-left: auto;
        margin-right: 0;
    }
    
    .future-img-overlap {
        position: absolute;
        bottom: -40px;
        left: -15px;
    }
    
    .future-stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .future-stat-box {
        width: 100%;
        padding: 20px;
    }
    
    .future-stat-box h3 {
        font-size: 24px;
    }
    
    .future-stat-box p {
        font-size: 14px;
    }
    
    /* DIVISION SECTION */
    .division-section {
        padding: 40px 15px;
    }
    
    .division-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .division-card {
        border-radius: 14px;
    }
    
    .division-card img {
        height: 220px;
    }
    
    .division-title {
        font-size: 18px;
        padding: 15px 10px;
    }
    
    /* GROUP SECTION */
    .group-section {
        margin: 15px;
    }
    
    .group-overlay {
        padding: 20px 15px 100px;
    }
    
    .group-overlay-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .group-text,
    .group-desc {
        width: 100%;
    }
    
    .group-text h2 {
        font-size: 24px;
        padding: 12px 15px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
    }
    
    .group-desc {
        font-size: 16px;
    }
    
    .group-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: -50px 15px 40px;
        padding: 0;
    }
    
    .group-card {
        padding: 25px 20px;
    }
    
    .group-card h3 {
        font-size: 18px;
    }
    
    .group-card p {
        font-size: 14px;
    }
    
    .group-bottom {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px 20px;
    }
    
    .bottom-left,
    .bottom-right {
        width: 100%;
    }
    
    .bottom-left h2 {
        font-size: 24px;
        padding: 12px 15px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
    }
    
    .bottom-right {
        border-left: none;
        border-top: 3px solid #0cc1c7;
        padding-left: 0;
        padding-top: 20px;
    }
    
   .bottom-right p {
    font-size: 14px;
    text-align: justify;
    text-align-last: left;
}

    
    /* COMMITMENT SECTION */
    .commitment-section {
        height: 300px;
        margin-top: 0;
    }
    
    .commitment-content p {
        font-size: 18px;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    /* TESTIMONIALS */
    .testimonials {
        padding: 60px 15px;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .testimonials-header h2 {
        font-size: 28px;
    }
    
    .testimonials-header p {
        font-size: 15px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .quote {
        font-size: 14px;
    }
    
    /* PARTNER SECTION */
    .partner-section {
        padding: 50px 15px;
    }
    
    .partner-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .partner-content {
        margin: 0;
    }
    
    .partner-content h2 {
        font-size: 26px;
        max-width: 100%;
    }
    
  .partner-content p {
    font-size: 15px;
    width: 100%;
    max-width: 100%;
    text-align: justify;
    text-align-last: left;
}

    
    .partner-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
   .partner-buttons .btn-primary,
.partner-buttons .btn-secondary {
    width: 58%;
    display: block;
    margin: 0 auto;
}

    
    /* FAQ SECTION */
    .faq-section {
        margin: 20px 15px;
        padding: 0;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding: 0 16px 14px;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .hero {
        padding: 25px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero-form-card {
        padding: 20px;
    }
    
    .hero-form-card h3 {
        font-size: 20px;
    }
    
    .hero-video video {
        height: 200px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .section-title {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .future-left h1 {
        font-size: 22px;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 10px 12px;
        border-radius: 10px;
        white-space: normal;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .division-container {
        grid-template-columns: 1fr;
    }
    
    .division-card img {
        height: 240px;
    }
    
    .btn-container {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .future-img-main,
    .future-img-overlap {
        height: 200px;
    }
    
    .testimonials-header h2 {
        font-size: 32px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-form-card h3 {
        font-size: 18px;
    }
    
    .hero-form-card p {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .hero-form-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .hero-video video {
        height: 180px;
    }
    
    .about-left img {
        height: 220px;
    }
    
    .about-right h2,
    .about-heading {
        font-size: 20px;
        padding: 8px 12px;
    }
    
    .about-right p strong {
        font-size: 22px;
    }
    
    .company-card {
        height: 240px;
    }
    
    .section-title h1 {
        font-size: 18px;
        padding: 8px 10px;
    }
    
    .future-left h1 {
        font-size: 18px;
        padding: 10px;
    }
    
    .future-img-main,
    .future-img-overlap {
        height: 160px;
    }
    
    .future-stat-box h3 {
        font-size: 22px;
    }
    
    .division-card img {
        height: 200px;
    }
    
    .group-text h2 {
        font-size: 18px;
    }
    
    .group-desc {
    font-size: 15px;
    text-align: justify;
    text-align-last: left;
}

    
    .bottom-left h2 {
        font-size: 18px;
    }
    
    .commitment-section {
        height: 250px;
    }
    
    .commitment-content p {
        font-size: 16px;
    }
    
    .testimonials-header h2 {
        font-size: 18px;
    }
    
    .partner-content h2 {
        font-size: 22px;
    }
    
    .faq-title {
        font-size: 24px;
    }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-form-card {
        padding: 15px;
    }
    
    .hero-form-card h3 {
        font-size: 16px;
    }
    
    .hero-video video {
        height: 160px;
    }
    
    .about-left img {
        height: 200px;
    }
    
    .about-right h2,
    .about-heading {
        font-size: 18px;
    }
    
    .section-title h1 {
        font-size: 18px;
        padding: 8px 10px;
    }
    
    .future-left h1 {
        font-size: 18px;
    }
    
    .future-points li {
        font-size: 13px;
    }
    
    .company-card {
        height: 220px;
    }
    
    .company-overlay h3 {
        font-size: 16px;
    }
    
.company-overlay p {
    font-size: 13px;
    text-align: justify;
    text-align-last: left;
}
 
    .group-text h2 {
        font-size: 20px;
    }
    
    .bottom-left h2 {
        font-size: 20px;
    }
    
    .partner-content h2 {
        font-size: 20px;
    }
    
    .faq-title {
        font-size: 22px;
    }
}