/* ==========================================================================
   CHOWDHURY GROUP - MODERN UI/UX STYLESHEET
   Clean Aesthetics, Smooth Animations & Mobile Responsive System
   100% Pure Vanilla CSS (No External Slider Libraries)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Brand Colors */
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --primary-800: #3730a3;
    --primary-900: #312e81;
    --primary-950: #1e1b4b;

    --accent-cyan: #06b6d4;
    --accent-purple: #7c3aed;
    --accent-emerald: #10b981;
    --accent-gold: #f59e0b;
    --accent-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    --accent-gradient-hover: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    --icon-gradient: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);

    /* Neutrals */
    --dark-bg: #090d1a;
    --dark-surface: #111827;
    --dark-card: #1f2937;
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --border-subtle: #f1f5f9;

    /* Typography */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.1);
    --shadow-dropdown: 0 22px 45px -10px rgba(15, 23, 42, 0.16), 0 0 1px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 25px rgba(79, 70, 229, 0.28);

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* --- Global Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cg-main-content {
    flex-grow: 1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

.cg-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
.cg-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 4px 20px -6px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
}

.cg-header.is-sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
}

.cg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.35s ease;
}

.cg-header.is-sticky .cg-header-inner {
    height: 68px;
}

/* Brand Logo */
.cg-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.cg-brand:hover {
    transform: scale(1.02);
}

.cg-brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.cg-header.is-sticky .cg-brand-logo {
    height: 44px;
}

/* Navigation System */
.cg-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.cg-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 100%;
}

.cg-menu-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Nav Links & Hover Animations (ONLY ON HOVER) */
.cg-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    border-radius: var(--radius-full);
    position: relative;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cg-nav-link i.cg-chevron {
    font-size: 0.7rem;
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

/* Floating Pill Background on Hover */
.cg-nav-link:hover,
.cg-menu-item:hover>.cg-nav-link {
    color: var(--primary-600);
    background: rgba(79, 70, 229, 0.08);
}

.cg-menu-item:hover>.cg-nav-link i.cg-chevron {
    transform: rotate(180deg);
    color: var(--primary-600);
}

/* Bottom line appears ONLY when hovering */
.cg-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 22px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    transition: transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.cg-menu-item:hover>.cg-nav-link::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Spacing bridge */
.cg-menu-item::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 25px;
    z-index: 1040;
}

/* Standard Dropdown */
.cg-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 290px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dropdown);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.97);
    transform-origin: top left;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.25s;
    pointer-events: none;
    z-index: 1050;
}

/* Top pointer arrow */
.cg-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    border-left: 1px solid rgba(226, 232, 240, 0.95);
}

.cg-menu-item:hover>.cg-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Dropdown Links with Icons */
.cg-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.22s ease;
    position: relative;
}

.cg-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: var(--icon-gradient);
    color: var(--primary-600);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.cg-dropdown-text {
    display: flex;
    flex-direction: column;
}

.cg-dropdown-title {
    color: #1e293b;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}

.cg-dropdown-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.cg-dropdown-link:hover {
    background: #f8fafc;
    color: var(--primary-600);
    transform: translateX(4px);
}

.cg-dropdown-link:hover .cg-dropdown-icon {
    background: var(--primary-600);
    color: #ffffff;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.cg-dropdown-link:hover .cg-dropdown-title {
    color: var(--primary-600);
}

/* --- Sister Concerns 2-Column Grid Mega Dropdown --- */
.cg-dropdown-sister-grid {
    min-width: 640px;
    padding: 1.25rem;
    left: 50%;
    transform: translateX(-50%) translateY(12px) scale(0.97);
    transform-origin: top center;
}

.cg-dropdown-sister-grid::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.cg-menu-item:hover>.cg-dropdown-sister-grid {
    transform: translateX(-50%) translateY(0) scale(1);
}

.cg-sister-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.cg-sister-grid-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-950);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cg-sister-grid-heading i {
    color: var(--primary-600);
}

.cg-sister-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.cg-sister-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    background: #ffffff;
    transition: all 0.25s ease;
}

.cg-sister-card:hover {
    background: #f8fafc;
    border-color: rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -4px rgba(15, 23, 42, 0.06);
}

.cg-sister-card .cg-dropdown-icon {
    width: 42px;
    height: 42px;
}

.cg-sister-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary-600);
    display: inline-block;
    margin-top: 3px;
    width: fit-content;
}

/* Products Gallery Dropdown */
.cg-dropdown-products {
    min-width: 440px;
}

.cg-products-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

/* Header Contact Button */
.cg-header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.cg-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.28);
    transition: var(--transition-normal);
}

.cg-btn-contact:hover {
    background: var(--accent-gradient-hover);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    transform: translateY(-2px);
}

/* Mobile Hamburger Button */
.cg-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    gap: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cg-hamburger span {
    display: block;
    width: 22px;
    height: 2.2px;
    background-color: var(--primary-950);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.cg-hamburger.is-active span:nth-child(1) {
    transform: translateY(7.2px) rotate(45deg);
    background-color: var(--primary-600);
}

.cg-hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.cg-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7.2px) rotate(-45deg);
    background-color: var(--primary-600);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER (OFFCANVAS)
   ========================================================================== */
.cg-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cg-mobile-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.cg-mobile-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    max-width: 86vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1055;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.cg-mobile-drawer.is-open {
    right: 0;
}

.cg-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.4rem;
    border-bottom: 1px solid var(--border-light);
    background: #ffffff;
}

.cg-mobile-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.cg-mobile-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.cg-mobile-body {
    padding: 1.25rem 1rem;
    flex-grow: 1;
}

.cg-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cg-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    width: 100%;
    text-align: left;
    transition: var(--transition-fast);
}

.cg-mobile-link-left {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cg-mobile-icon-box {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--primary-50);
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.cg-mobile-link i.cg-m-chevron {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.cg-mobile-item.is-open>.cg-mobile-link {
    color: var(--primary-600);
    background: var(--primary-50);
}

.cg-mobile-item.is-open>.cg-mobile-link .cg-mobile-icon-box {
    background: var(--primary-600);
    color: #ffffff;
}

.cg-mobile-item.is-open>.cg-mobile-link i.cg-m-chevron {
    transform: rotate(180deg);
}

/* Mobile Accordion Submenu */
.cg-mobile-submenu {
    display: none;
    padding: 0.4rem 0 0.4rem 0.75rem;
    border-left: 2px solid var(--primary-100);
    margin-left: 1.5rem;
    margin-top: 0.35rem;
}

.cg-mobile-item.is-open>.cg-mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    animation: slideDownFade 0.3s ease forwards;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cg-mobile-sublink {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #475569;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.cg-mobile-sublink i {
    color: var(--primary-600);
    font-size: 0.8rem;
}

.cg-mobile-sublink:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.cg-mobile-footer {
    padding: 1.25rem 1.4rem;
    border-top: 1px solid var(--border-light);
    background: #f8fafc;
}

.cg-mobile-cta {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* ==========================================================================
   FULL WIDTH 100% HERO SLIDER / CAROUSEL
   ========================================================================== */
.cg-hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.cg-slider-container {
    position: relative;
    width: 100%;
    min-height: 90vh;
    height: 90vh;
    background: #090d1a;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Slider Track & Slides */
.cg-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 90vh;
}

.cg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.75s;
    pointer-events: none;
    z-index: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.cg-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

/* Multi-Layer Dark Gradient Overlay */
.cg-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(9, 13, 26, 0.94) 0%,
            rgba(9, 13, 26, 0.82) 48%,
            rgba(9, 13, 26, 0.45) 85%,
            rgba(9, 13, 26, 0.75) 100%),
        radial-gradient(circle at 10% 90%, rgba(79, 70, 229, 0.22) 0%, transparent 60%);
    z-index: 2;
}

/* Slide Content strictly aligned with header container */
.cg-slide-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.cg-slide-content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
}

.cg-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.15rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 1.35rem;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.cg-slide.is-active .cg-slide-badge {
    animation: slideFadeInUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.cg-slide-title {
    font-family: var(--font-heading);
    font-size: 3.35rem; /* Grand & elegant desktop title */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.14;
    letter-spacing: -0.025em;
    margin-bottom: 1.35rem;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.cg-slide-title span.highlight {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cg-slide.is-active .cg-slide-title {
    animation: slideFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.cg-slide-desc {
    font-size: 1.15rem; /* Rich, readable description */
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2.35rem;
    max-width: 720px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.cg-slide.is-active .cg-slide-desc {
    animation: slideFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.cg-slide-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cg-slide.is-active .cg-slide-actions {
    animation: slideFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.cg-btn-slide-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.95rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    transition: all 0.25s ease;
}

.cg-btn-slide-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.55);
}

.cg-btn-slide-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
}

.cg-btn-slide-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
}

@keyframes slideFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SLIDER LUXURY DOTS (CENTERED AT BOTTOM)
   ========================================================================== */
.cg-slider-controls-center {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cg-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cg-slider-dot {
    position: relative;
    width: 11px;
    height: 9px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.cg-slider-dot:hover {
    background: rgba(255, 255, 255, 0.65);
}

/* Active Expanding Pill Dot */
.cg-slider-dot.is-active {
    width: 44px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 14px rgba(79, 70, 229, 0.55);
}

/* Internal Progress Fill Bar inside the Active Dot */
.cg-slider-dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

.cg-slider-dot.is-active .cg-slider-dot-progress {
    width: 100%;
    transition: width 5.5s linear;
}

/* ==========================================================================
   SLIDER ARROWS (VERTICALLY CENTERED ON LEFT & RIGHT SIDES)
   ========================================================================== */
.cg-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cg-slider-arrow-prev {
    left: 32px;
}

.cg-slider-arrow-next {
    right: 32px;
}

.cg-slider-arrow:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.55);
}

.cg-slider-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

/* ==========================================================================
   ABOUT US SECTION (COMPACT, SLEEK & BEAUTIFULLY PROPORTIONED)
   ========================================================================== */
.cg-about-section {
    padding: 3.5rem 0 4.85rem 0; /* Generous bottom spacing */
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.cg-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.75rem;
    align-items: stretch; /* Equal height between left and right columns */
}

/* Left Content Area */
.cg-about-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cg-section-subtitle {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-600);
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.8rem;
    background: var(--primary-50);
    border-radius: var(--radius-full);
    margin-bottom: 0.65rem;
    width: fit-content;
}

.cg-section-heading {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.cg-section-heading span.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cg-about-lead {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-body);
    margin-bottom: 0.85rem;
}

/* Value Props Feature List from ChowdhuryGroup.net */
.cg-about-features {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.cg-about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0.85rem;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: all 0.22s ease;
}

.cg-about-feature-item:hover {
    background: #ffffff;
    border-color: rgba(79, 70, 229, 0.25);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transform: translateX(3px);
}

.cg-about-f-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--accent-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.cg-about-f-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1e293b;
    display: block;
    margin-bottom: 1px;
}

.cg-about-f-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* Product Range Pills */
.cg-about-products-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.cg-prod-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
}

.cg-prod-pill:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary-700);
}

.cg-prod-pill i {
    font-size: 0.68rem;
    color: var(--primary-600);
}

/* Footer Row: Action Buttons & MD Badge */
.cg-about-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.cg-about-btn-group {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cg-btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.84rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
    transition: all 0.22s ease;
}

.cg-btn-about-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.38);
}

.cg-btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f1f5f9;
    color: #1e293b !important;
    font-weight: 600;
    font-size: 0.84rem;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    transition: all 0.22s ease;
}

.cg-btn-about-secondary:hover {
    background: #ffffff;
    border-color: var(--primary-600);
    color: var(--primary-600) !important;
    transform: translateY(-2px);
}

.cg-md-badge-mini {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.74rem;
    color: var(--text-muted);
}

.cg-md-badge-mini strong {
    color: #0f172a;
    display: block;
    font-size: 0.82rem;
}

/* Right Visual Composition (Matching Exact Height) */
.cg-about-visual {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px; /* Space for the floating badge */
}

.cg-about-img-wrap {
    position: relative;
    height: 100%;
    min-height: 380px;
    max-height: 430px;
    flex-grow: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px -8px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--border-light);
}

.cg-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cg-about-img-wrap:hover .cg-about-img {
    transform: scale(1.03);
}

/* Top Right Floating Certification Badge */
.cg-about-badge-top {
    position: absolute;
    top: 14px;
    right: 14px; /* Positioned top right */
    left: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary-600);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 3;
}

/* Bottom Left Floating Experience Card (Since 1985 on Left Side) */
.cg-about-exp-card {
    position: absolute;
    bottom: -15px;
    left: -20px; /* Positioned on the LEFT side */
    right: auto;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #ffffff;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px -6px rgba(30, 27, 75, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 3;
    transition: transform 0.3s ease;
}

.cg-about-exp-card:hover {
    transform: translateY(-3px);
}

.cg-exp-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cg-exp-num {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.cg-exp-text {
    font-size: 0.72rem;
    color: #cbd5e1;
    font-weight: 500;
    margin-top: 2px;
}

/* ==========================================================================
   SISTER CONCERNS DIRECTORY SECTION (INDEX.PHP)
   ========================================================================== */
.cg-sister-directory-section {
    padding: 4.5rem 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cg-section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem auto;
}

.cg-section-header-center .cg-section-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.cg-section-header-center .cg-section-heading {
    font-size: 2.15rem;
    margin-bottom: 0.75rem;
}

.cg-section-header-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sister Concerns Grid Layout */
.cg-sister-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* Individual Sister Concern Card */
.cg-sister-dir-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.cg-sister-dir-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -10px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.3);
}

/* Card Image Header */
.cg-sister-card-img-wrap {
    position: relative;
    height: 175px;
    width: 100%;
    overflow: hidden;
    background: #0f172a;
}

.cg-sister-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.9;
}

.cg-sister-dir-card:hover .cg-sister-card-img {
    transform: scale(1.07);
    opacity: 1;
}

.cg-sister-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    pointer-events: none;
}

.cg-sister-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* Floating Icon Box */
.cg-sister-floating-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 2px solid #eef2ff;
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cg-sister-dir-card:hover .cg-sister-floating-icon {
    background: var(--primary-600);
    color: #ffffff;
    transform: scale(1.08) rotate(6deg);
    border-color: var(--primary-600);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

/* Card Body Content */
.cg-sister-card-body {
    padding: 1.75rem 1.4rem 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cg-sister-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    transition: color 0.22s ease;
}

.cg-sister-dir-card:hover .cg-sister-card-title {
    color: var(--primary-600);
}

.cg-sister-card-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.1rem;
    flex-grow: 1;
}

/* Tags List */
.cg-sister-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.15rem;
}

.cg-sister-card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.18rem 0.55rem;
    border-radius: var(--radius-full);
    background: var(--primary-50);
    color: var(--primary-700);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.cg-sister-card-tag i {
    font-size: 0.65rem;
    color: var(--primary-600);
}

/* Card Footer Action */
.cg-sister-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary-600);
    transition: color 0.2s ease;
}

.cg-sister-card-footer i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

/* ==========================================================================
   QUICK MESSAGE / RAPID INQUIRY SECTION (INDEX.PHP)
   ========================================================================== */
.cg-quick-message-section {
    padding: 4.5rem 0 5rem 0;
    background: #ffffff;
    position: relative;
}

.cg-quick-msg-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3.5rem;
    align-items: flex-start;
}

/* Left Contact Column */
.cg-quick-info-col {
    display: flex;
    flex-direction: column;
}

.cg-quick-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.cg-quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.2rem;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.cg-quick-info-item:hover {
    background: #ffffff;
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.cg-qinfo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.cg-qinfo-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.cg-qinfo-val {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2px;
    display: block;
}

.cg-quick-trust-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    margin-top: 1.35rem;
    color: #065f46;
    font-size: 0.82rem;
    font-weight: 600;
}

.cg-quick-trust-box i {
    color: var(--accent-emerald);
    font-size: 1.1rem;
}

/* Right Form Card */
.cg-quick-form-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.08);
    position: relative;
}

.cg-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.1rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid var(--border-light);
}

.cg-form-header-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cg-form-header-title i {
    color: var(--primary-600);
}

.cg-form-badge-secure {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-full);
}

/* Form Input Layouts */
.cg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
    margin-bottom: 0.85rem;
}

.cg-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.cg-form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.cg-form-label span.req {
    color: #ef4444;
}

.cg-form-input,
.cg-form-select,
.cg-form-textarea {
    width: 100%;
    padding: 0.7rem 0.95rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.88rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.22s ease;
    outline: none;
}

.cg-form-input:focus,
.cg-form-select:focus,
.cg-form-textarea:focus {
    background: #ffffff;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.cg-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.cg-form-btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.82rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    margin-top: 0.5rem;
}

.cg-form-btn-submit:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.cg-form-btn-submit:active {
    transform: translateY(0);
}

/* Form Notification Alert */
.cg-form-alert {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   FEATURED PRODUCTS GALLERY SHOWCASE (INDEX.PHP)
   ========================================================================== */
.cg-products-showcase-section {
    padding: 4.5rem 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid var(--border-light);
}

/* 4-Card One-Line Products Grid */
.cg-products-4cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
}

.cg-products-4cards-grid .cg-sister-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    overflow: hidden;
}

.cg-products-4cards-grid .cg-sister-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.45s ease;
}

.cg-products-4cards-grid .cg-sister-dir-card:hover .cg-sister-card-img {
    transform: scale(1.06);
}

.cg-prod-tab-btn:hover,
.cg-prod-tab-btn.is-active {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
    transform: translateY(-1px);
}

/* 4-Column Product Grid */
.cg-prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Individual Product Card */
.cg-prod-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.cg-prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.3);
}

.cg-prod-img-wrap {
    position: relative;
    height: 230px;
    width: 100%;
    overflow: hidden;
    background: #0f172a;
}

.cg-prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.cg-prod-card:hover .cg-prod-img {
    transform: scale(1.08);
}

.cg-prod-badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--accent-cyan);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.cg-prod-body {
    padding: 1.15rem 1.15rem 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cg-prod-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-600);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.cg-prod-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    transition: color 0.2s ease;
}

.cg-prod-card:hover .cg-prod-title {
    color: var(--primary-600);
}

.cg-prod-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 0.85rem;
    flex-grow: 1;
}

.cg-prod-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.85rem;
}

.cg-prod-spec-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.14rem 0.45rem;
    border-radius: var(--radius-full);
    background: #f1f5f9;
    color: #475569;
}

.cg-prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-600);
}

.cg-prod-footer i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.cg-prod-card:hover .cg-prod-footer i {
    transform: translateX(4px);
}

/* Bottom CTA Banner */
.cg-prod-cta-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 16px 36px -10px rgba(30, 27, 75, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cg-prod-banner-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.cg-prod-banner-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
}

.cg-btn-prod-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.75rem 1.65rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
    white-space: nowrap;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.cg-btn-prod-banner:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.5);
}

/* ==========================================================================
   CSR & SUSTAINABILITY SECTION (INDEX.PHP)
   ========================================================================== */
.cg-csr-section {
    padding: 4.5rem 0 5rem 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid var(--border-light);
}

.cg-csr-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cg-csr-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 1.75rem 1.35rem 1.4rem 1.35rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.cg-csr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px -8px rgba(15, 23, 42, 0.12);
    border-color: rgba(16, 185, 129, 0.4);
}

.cg-csr-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.15rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cg-csr-card:hover .cg-csr-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    transform: scale(1.08) rotate(6deg);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.cg-csr-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.45rem;
    transition: color 0.2s ease;
}

.cg-csr-card:hover .cg-csr-title {
    color: #059669;
}

.cg-csr-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.1rem;
    flex-grow: 1;
}

.cg-csr-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.18rem 0.55rem;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.08);
    color: #065f46;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: fit-content;
}

/* Bottom CSR Metrics Strip */
.cg-csr-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    padding: 1.35rem 2rem;
    background: #f8fafc;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.cg-csr-metric-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.cg-csr-m-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cg-csr-m-val {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.cg-csr-m-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ==========================================================================
   MANUFACTURING WORKFLOW & PRODUCTION EXCELLENCE (INDEX.PHP)
   ========================================================================== */
.cg-process-section {
    padding: 4.5rem 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid var(--border-light);
}

.cg-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
}

.cg-process-step-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 1.6rem 1.15rem 1.35rem 1.15rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.cg-process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px -8px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.3);
}

.cg-process-step-num {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 0.18rem 0.55rem;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 0.85rem;
    letter-spacing: 0.03em;
}

.cg-process-step-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
    transition: transform 0.3s ease;
}

.cg-process-step-card:hover .cg-process-step-icon {
    transform: scale(1.1) rotate(6deg);
}

.cg-process-step-title {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    transition: color 0.2s ease;
}

.cg-process-step-card:hover .cg-process-step-title {
    color: var(--primary-600);
}

.cg-process-step-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   FOOTER STYLES (WITH SOCIAL ICONS)
   ========================================================================== */
.cg-footer {
    background: #090d1a;
    color: #94a3b8;
    position: relative;
    padding-top: 3.5rem;
    margin-top: auto;
}

.cg-footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.3fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cg-footer-col {
    display: flex;
    flex-direction: column;
}

.cg-footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.15rem;
    display: inline-block;
}

.cg-footer-about {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.15rem;
}

/* Footer Social Icons */
.cg-footer-socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.4rem;
}

.cg-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cg-footer-socials a:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.cg-footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.cg-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: var(--radius-full);
}

.cg-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.cg-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #94a3b8;
    transition: var(--transition-fast);
}

.cg-footer-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.cg-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.88rem;
}

.cg-fcontact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.cg-fcontact-item i {
    color: var(--accent-cyan);
    margin-top: 4px;
}

.cg-fcontact-item a {
    color: #94a3b8;
}

.cg-fcontact-item a:hover {
    color: #ffffff;
}

.cg-footer-bottom {
    padding: 1.25rem 0;
}

.cg-footer-bottom .cg-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #64748b;
}

.cg-footer-bottom a {
    color: #94a3b8;
}

.cg-footer-bottom a:hover {
    color: #ffffff;
}

/* Floating Back To Top */
.cg-back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
    cursor: pointer;
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.cg-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cg-back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.5);
}

/* ==========================================================================
   CONTACT PAGE STYLES (CONTACT.PHP)
   ========================================================================== */
.cg-contact-page {
    padding: 3.5rem 0 4.5rem 0;
}

.cg-contact-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.cg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.cg-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem;
    background: #f8fafc;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.cg-contact-card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.cg-form-group {
    margin-bottom: 1.25rem;
}

.cg-form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.cg-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.cg-form-control:focus {
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
    .cg-nav-link {
        padding: 0.6rem 0.85rem;
        font-size: 0.9rem;
    }

    .cg-dropdown-sister-grid {
        min-width: 560px;
    }

    .cg-about-grid {
        gap: 2.5rem;
    }

    .cg-about-img {
        height: 420px;
    }

    .cg-section-heading {
        font-size: 2.1rem;
    }

    .cg-slider-arrow-prev {
        left: 14px;
    }

    .cg-slider-arrow-next {
        right: 14px;
    }

    .cg-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

    .cg-nav,
    .cg-header-actions .cg-btn-contact {
        display: none;
    }

    .cg-hamburger {
        display: flex;
    }

    .cg-slider-container,
    .cg-slider-wrapper {
        min-height: 500px;
        height: 500px;
    }

    .cg-slide-title {
        font-size: 1.95rem;
    }

    .cg-slide-desc {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .cg-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .cg-about-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .cg-about-img-wrap {
        min-height: 320px;
        height: 320px;
        max-height: 340px;
    }

    .cg-about-exp-card {
        left: 15px; /* On Left Side */
        right: auto;
        bottom: -15px;
    }

    .cg-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {

    .cg-slider-container,
    .cg-slider-wrapper {
        min-height: 320px;
        height: 340px;
        padding-top: 0.5rem;
        padding-bottom: 1.5rem;
    }

    .cg-slide-content-wrap {
        padding-top: 0.75rem;
        padding-bottom: 2rem;
    }

    .cg-slide-badge {
        font-size: 0.68rem;
        padding: 0.2rem 0.65rem;
        margin-bottom: 0.45rem;
    }

    .cg-slide-title {
        font-size: 1.35rem;
        line-height: 1.2;
        margin-bottom: 0.55rem;
    }

    .cg-slide-desc {
        font-size: 0.78rem;
        line-height: 1.4;
        margin-bottom: 0.85rem;
    }

    .cg-slide-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .cg-btn-slide-primary,
    .cg-btn-slide-secondary {
        font-size: 0.74rem;
        padding: 0.42rem 0.88rem;
        border-radius: var(--radius-full);
        gap: 0.35rem;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    }

    .cg-btn-slide-primary i,
    .cg-btn-slide-secondary i {
        font-size: 0.7rem;
    }

    .cg-slider-arrow {
        display: none;
    }

    .cg-slider-controls-center {
        bottom: 10px;
    }

    .cg-slider-dots {
        padding: 0.22rem 0.55rem;
        gap: 0.4rem;
    }

    .cg-slider-dot {
        width: 7px;
        height: 5px;
    }

    .cg-slider-dot.is-active {
        width: 26px;
    }

    /* About Us Mobile Optimizations */
    .cg-about-section {
        padding: 2.75rem 0 4.5rem 0; /* Bottom gap for mobile */
    }

    .cg-about-grid {
        gap: 2rem;
    }

    .cg-about-visual {
        width: 100%;
        margin-top: 0.5rem;
        padding-bottom: 25px; /* Extra bottom gap for mobile badge */
        margin-bottom: 10px;
    }

    .cg-about-img-wrap {
        min-height: 240px;
        height: 250px;
        max-height: 270px;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .cg-about-badge-top {
        top: 10px;
        right: 10px;
        left: auto;
        padding: 0.28rem 0.75rem;
        font-size: 0.72rem;
    }

    .cg-about-exp-card {
        padding: 0.6rem 0.95rem;
        left: 10px; /* Positioned cleanly on Left side */
        right: auto;
        bottom: -12px;
        gap: 0.65rem;
        border-radius: var(--radius-sm);
    }

    .cg-exp-num {
        font-size: 1.25rem;
    }

    .cg-exp-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .cg-exp-text {
        font-size: 0.68rem;
    }

    .cg-section-heading {
        font-size: 1.55rem;
    }

    .cg-about-lead {
        font-size: 0.88rem;
    }

    .cg-about-features {
        gap: 0.45rem;
    }

    .cg-about-feature-item {
        padding: 0.5rem 0.75rem;
    }

    .cg-about-products-pills {
        gap: 0.3rem;
    }

    .cg-prod-pill {
        font-size: 0.7rem;
        padding: 0.18rem 0.55rem;
    }

    .cg-about-footer-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .cg-about-btn-group {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
    }

    .cg-btn-about-primary,
    .cg-btn-about-secondary {
        flex: 1;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.55rem 0.75rem;
    }

    .cg-md-badge-mini {
        justify-content: flex-start;
    }

    /* Sister Concerns Directory Mobile Optimizations */
    .cg-sister-directory-section {
        padding: 2.75rem 0 3.25rem 0;
    }

    .cg-sister-directory-section .cg-section-header-center {
        margin-bottom: 1.75rem;
    }

    .cg-sister-directory-section .cg-section-subtitle {
        font-size: 0.7rem;
        padding: 0.2rem 0.65rem;
        margin-bottom: 0.5rem;
    }

    .cg-sister-directory-section .cg-section-heading {
        font-size: 1.55rem;
        line-height: 1.25;
        margin-bottom: 0.5rem;
    }

    .cg-section-header-desc {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .cg-sister-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cg-sister-card-img-wrap {
        height: 135px; /* Compact mobile image height */
    }

    .cg-sister-card-badge {
        font-size: 0.64rem;
        padding: 0.16rem 0.5rem;
        top: 8px;
        right: 8px;
    }

    .cg-sister-floating-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        bottom: -15px;
        left: 14px;
        border-radius: var(--radius-sm);
    }

    .cg-sister-card-body {
        padding: 1.25rem 1rem 0.85rem 1rem;
    }

    .cg-sister-card-title {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .cg-sister-card-desc {
        font-size: 0.78rem;
        line-height: 1.42;
        margin-bottom: 0.75rem;
    }

    .cg-sister-card-tags {
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .cg-sister-card-tag {
        font-size: 0.66rem;
        padding: 0.14rem 0.45rem;
    }

    .cg-sister-card-footer {
        font-size: 0.78rem;
        padding-top: 0.65rem;
    }

    /* Quick Message Section Mobile Optimizations */
    .cg-quick-message-section {
        padding: 2.75rem 0 3.25rem 0;
    }

    .cg-quick-msg-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .cg-quick-info-list {
        gap: 0.55rem;
        margin-top: 1rem;
    }

    .cg-quick-info-item {
        padding: 0.65rem 0.85rem;
        gap: 0.75rem;
        border-radius: var(--radius-sm);
    }

    .cg-qinfo-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        border-radius: var(--radius-sm);
    }

    .cg-qinfo-label {
        font-size: 0.65rem;
    }

    .cg-qinfo-val {
        font-size: 0.8rem;
    }

    .cg-quick-trust-box {
        margin-top: 1rem;
        padding: 0.65rem 0.85rem;
        font-size: 0.76rem;
    }

    .cg-quick-form-card {
        padding: 1.25rem 1rem;
        border-radius: var(--radius-lg);
    }

    .cg-form-header {
        padding-bottom: 0.75rem;
        margin-bottom: 0.85rem;
    }

    .cg-form-header-title {
        font-size: 1.05rem;
    }

    .cg-form-badge-secure {
        font-size: 0.68rem;
        padding: 0.15rem 0.45rem;
    }

    .cg-form-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        margin-bottom: 0.55rem;
    }

    .cg-form-group {
        margin-bottom: 0.55rem;
        gap: 0.2rem;
    }

    .cg-form-label {
        font-size: 0.74rem;
    }

    .cg-form-input,
    .cg-form-select,
    .cg-form-textarea {
        padding: 0.48rem 0.65rem;
        font-size: 0.8rem;
        border-radius: var(--radius-sm);
    }

    .cg-form-textarea {
        min-height: 65px;
    }

    .cg-form-btn-submit {
        font-size: 0.8rem;
        padding: 0.55rem 1rem;
        margin-top: 0.2rem;
    }

    /* Headings Scaled for Mobile Screens */
    .cg-section-heading {
        font-size: 1.35rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
    }

    .cg-section-subtitle {
        font-size: 0.72rem;
        margin-bottom: 0.4rem;
    }

    .cg-section-header-desc {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .cg-section-header-center {
        margin-bottom: 1.75rem;
    }

    /* Featured Garments Showcase - Strictly 2 Cards Per Row on Mobile */
    .cg-products-showcase-section {
        padding: 2.25rem 0 2.75rem 0;
    }

    .cg-products-4cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .cg-products-4cards-grid .cg-sister-dir-card {
        border-radius: var(--radius-md);
    }

    .cg-products-4cards-grid .cg-sister-card-img-wrap {
        padding: 8px;
    }

    .cg-products-4cards-grid .cg-sister-card-badge {
        font-size: 0.62rem;
        padding: 0.15rem 0.45rem;
        top: 6px;
        left: 6px;
    }

    .cg-products-4cards-grid .cg-sister-floating-icon {
        display: none;
    }

    .cg-products-4cards-grid .cg-sister-card-body {
        padding: 0.65rem 0.55rem;
    }

    .cg-products-4cards-grid .cg-sister-card-title {
        font-size: 0.82rem;
        margin-bottom: 0.2rem;
        line-height: 1.25;
    }

    .cg-products-4cards-grid .cg-sister-card-desc {
        font-size: 0.7rem;
        line-height: 1.35;
        margin-bottom: 0.45rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cg-products-4cards-grid .cg-sister-card-tags {
        display: none; /* Keep mobile cards clean and equal-height */
    }

    .cg-products-4cards-grid .cg-sister-card-footer {
        font-size: 0.72rem;
        padding-top: 0.45rem;
    }

    .cg-prod-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .cg-prod-img-wrap {
        height: 140px;
    }

    .cg-prod-body {
        padding: 0.65rem 0.55rem;
    }

    .cg-prod-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1rem;
        gap: 0.85rem;
        margin-top: 1.75rem;
    }

    .cg-prod-banner-title {
        font-size: 1.05rem;
    }

    .cg-prod-banner-desc {
        font-size: 0.78rem;
    }

    .cg-btn-prod-banner {
        width: 100%;
        justify-content: center;
        font-size: 0.78rem;
        padding: 0.55rem 0.85rem;
    }

    /* Sister Concerns Cards on Mobile: 2 per row */
    .cg-sister-concerns-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .cg-sister-card-body {
        padding: 0.75rem 0.6rem;
    }

    .cg-sister-card-title {
        font-size: 0.85rem;
    }

    .cg-sister-card-desc {
        font-size: 0.72rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cg-sister-card-tags {
        display: none;
    }

    .cg-sister-card-footer {
        font-size: 0.72rem;
        padding-top: 0.45rem;
    }

    /* CSR Section Mobile Optimizations */
    .cg-csr-section {
        padding: 2.25rem 0 2.75rem 0;
    }

    .cg-csr-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .cg-csr-card {
        padding: 0.95rem 0.75rem;
    }

    .cg-csr-card-title {
        font-size: 0.85rem;
    }

    .cg-csr-card-desc {
        font-size: 0.72rem;
    }

    .cg-csr-metrics-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0.85rem 0.65rem;
        margin-top: 1.5rem;
    }

    .cg-metric-value {
        font-size: 1.25rem;
    }

    .cg-metric-label {
        font-size: 0.68rem;
    }

    /* Manufacturing Process Section Mobile Optimizations */
    .cg-process-section {
        padding: 2.25rem 0 2.75rem 0;
    }

    .cg-process-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cg-process-step-card {
        padding: 1rem 0.85rem;
    }

    .cg-footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cg-footer-bottom .cg-container {
        flex-direction: column;
        gap: 0.65rem;
        text-align: center;
    }

    /* Contact Page Section on Mobile */
    .cg-contact-grid {
        grid-template-columns: 1fr;
        padding: 1.25rem 0.85rem;
        gap: 1.5rem;
    }

    .cg-contact-card {
        padding: 0.85rem 0.75rem;
        gap: 0.75rem;
        margin-bottom: 0.65rem;
    }

    .cg-contact-card-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .cg-contact-card strong {
        font-size: 0.85rem;
    }

    .cg-contact-card span,
    .cg-contact-card a {
        font-size: 0.78rem;
    }

    .cg-form-group {
        margin-bottom: 0.85rem;
    }

    .cg-form-label {
        font-size: 0.78rem;
        margin-bottom: 0.25rem;
    }

    .cg-form-control {
        padding: 0.55rem 0.75rem;
        font-size: 0.82rem;
    }

    .cg-btn-contact {
        font-size: 0.82rem;
        padding: 0.65rem 1rem;
    }
}

@media (max-width: 480px) {
    .cg-slide-title {
        font-size: 1.25rem;
    }

    .cg-slide-desc {
        font-size: 0.75rem;
    }

    .cg-slide-actions {
        gap: 0.35rem;
    }

    .cg-btn-slide-primary,
    .cg-btn-slide-secondary {
        font-size: 0.68rem;
        padding: 0.35rem 0.65rem;
        gap: 0.25rem;
    }

    .cg-section-heading {
        font-size: 1.2rem;
    }

    .cg-quick-form-card {
        padding: 0.85rem 0.75rem;
    }

    .cg-form-input,
    .cg-form-select,
    .cg-form-textarea {
        font-size: 0.76rem;
        padding: 0.42rem 0.6rem;
    }

    .cg-csr-metrics-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .cg-metric-value {
        font-size: 1.15rem;
    }

    .cg-products-4cards-grid,
    .cg-sister-concerns-grid {
        gap: 0.45rem;
    }
}