
        :root {
            /* Brand Colors */
            --primary: #E51C23;
            --primary-dark: #B71C1C;
            --primary-light: #FF5252;
            
            /* Complementary Colors */
            --secondary: #1E88E5;
            --accent: #FFB300;
            
            /* Light Theme Colors */
            --white: #FFFFFF;
            --light-bg: #F8F9FA;
            --light-card: #FFFFFF;
            --gray: #6C757D;
            --gray-light: #E9ECEF;
            --gray-lighter: #F8F9FA;
            
            /* Text Colors */
            --text-dark: #1A202C;
            --text-primary: #2D3748;
            --text-secondary: #4A5568;
            --text-light: #718096;
            
            /* Gradients */
            --bg-gradient: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
            --red-gradient: linear-gradient(135deg, #E51C23 0%, #B71C1C 100%);
            --accent-gradient: linear-gradient(135deg, #FFB300 0%, #FF6F00 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light-bg);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid #E9ECEF;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
 .logo  img{
    max-width: 160px;
 }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--red-gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(229, 28, 35, 0.4);
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red-gradient);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--red-gradient);
            color: white !important;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(229, 28, 35, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(229, 28, 35, 0.6);
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 1.9rem;
            line-height: 1;
            color: var(--text-dark);
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
        }

        .mobile-toggle:active {
            transform: scale(0.96);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            background: #fff;
            border-bottom: 1px solid #E9ECEF;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            padding: 14px 20px 20px;
        }

        .mobile-menu.open {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .mobile-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            padding: 10px 4px;
            border-radius: 8px;
        }

        .mobile-menu a:hover {
            color: var(--primary);
            background: #fff5f5;
        }

        .mobile-menu .apply-link {
            background: var(--red-gradient);
            color: #fff;
            text-align: center;
            padding: 12px 16px;
            border-radius: 12px;
            margin-top: 6px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
            padding: 10rem 2rem 8rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(229, 28, 35, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
            animation: fadeInUp 0.8s ease-out;
        }

        .gradient-text {
            background: var(--red-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .primary-btn {
            background: var(--red-gradient);
            color: white;
            padding: 1.3rem 3.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(229, 28, 35, 0.4);
            border: none;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(229, 28, 35, 0.6);
        }

        .secondary-btn {
            background: transparent;
            color: var(--text-primary);
            padding: 1.3rem 3.5rem;
            border: 2px solid var(--gray-light);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .secondary-btn:hover {
            background: var(--light-bg);
            border-color: var(--primary);
            color: var(--primary);
        }

        .hero-visual {
            position: relative;
            animation: fadeIn 1s ease-out 0.3s backwards;
        }
  .hero-visual img{
    width: 100%;
  }
        .hero-card {
            background: var(--white);
            backdrop-filter: blur(20px);
            border: 1px solid #E9ECEF;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
            position: relative;
        }
          .hero-card img{
            width: 100%;
          }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--red-gradient);
            border-radius: 25px 25px 0 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            background: var(--red-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 0.5rem;
            font-weight: 500;
        }

        /* Features Section */
        .features {
            padding: 7rem 2rem;
            background: var(--white);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .section-title p {
            color: var(--text-secondary);
            font-size: 1.2rem;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .feature-card {
            background: var(--white);
            border: 1px solid #E9ECEF;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--red-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: var(--white);
            box-shadow: 0 20px 50px rgba(229, 28, 35, 0.12);
            border-color: rgba(229, 28, 35, 0.2);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--red-gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px rgba(229, 28, 35, 0.3);
        }

        .feature-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Products Section */
        .products {
            padding: 7rem 2rem;
            background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
            position: relative;
        }

        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(229, 28, 35, 0.3), transparent);
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .product-card {
            background: var(--white);
            backdrop-filter: blur(10px);
            border: 1px solid #E9ECEF;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .product-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(229, 28, 35, 0.05), transparent);
            transition: left 0.5s;
        }

        .product-card:hover::after {
            left: 100%;
        }

        .product-card:hover {
            transform: translateY(-8px);
            background: var(--white);
            box-shadow: 0 15px 40px rgba(229, 28, 35, 0.12);
            border-color: rgba(229, 28, 35, 0.3);
        }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .product-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .product-badge {
            background: var(--accent-gradient);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--white);
            box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3);
        }

        .product-card ul {
            list-style: none;
            margin-bottom: 2rem;
        }

        .product-card li {
            color: var(--text-secondary);
            padding: 0.7rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 0.95rem;
        }

        .product-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .product-btn {
            width: 100%;
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 1rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
            display: block;
            text-align: center;
            text-decoration: none;
        }

        .product-btn:hover {
            background: var(--red-gradient);
            color: var(--white);
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(229, 28, 35, 0.3);
            border-color: var(--primary);
        }

        /* How It Works */
        .how-it-works {
            padding: 7rem 2rem;
            background: var(--white);
        }

        .how-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 90px;
            height: 90px;
            background: var(--red-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin: 0 auto 2rem;
            box-shadow: 0 12px 35px rgba(229, 28, 35, 0.4);
            position: relative;
            color: #fff;
        }

        .step-number::after {
            content: '';
            position: absolute;
            width: 110px;
            height: 110px;
            border: 2px solid rgba(229, 28, 35, 0.3);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.2;
            }
        }

        .step h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .step p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 7rem 2rem;
            background: var(--light-bg);
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: var(--white);
            border: 1px solid #E9ECEF;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border-color: rgba(229, 28, 35, 0.2);
        }

        .testimonial-header {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .avatar {
            width: 55px;
            height: 55px;
            background: var(--red-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(229, 28, 35, 0.3);
            color: #fff;
        }

        .testimonial-info h5 {
            font-weight: 700;
            margin-bottom: 0.4rem;
            font-size: 1.1rem;
        }

        .testimonial-info p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .rating {
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 7rem 2rem;
            background: var(--red-gradient);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            color: #fff;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            line-height: 1.6;
            color: #fff;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .white-btn {
            background: white;
            color: var(--primary);
            padding: 1.3rem 3.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .white-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        .outline-btn {
            background: transparent;
            color: white;
            padding: 1.3rem 3.5rem;
            border: 2px solid white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .outline-btn:hover {
            background: white;
            color: var(--primary);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            padding: 5rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 3fr 2fr 2fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
 .footer-brand img{
    max-width: 200px;
 }
        .footer-brand h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.2rem;
            font-weight: 800;
            color: var(--white);
        }

        .footer-brand p {
            color: #A0AEC0;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
            color: var(--white);
            font-weight: 600;
        }

        .social-icon:hover {
            background: var(--red-gradient);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(229, 28, 35, 0.4);
        }

        .footer-column h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: var(--white);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 1rem;
        }

        .footer-column a {
            color: #A0AEC0;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-column a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #A0AEC0;
            font-size: 0.9rem;
        }

        /* Chatbot */
        .chatbot-trigger  a {
            position: fixed;
            bottom: 35px;
            right: 35px;
            width: 60px;
            height: 60px;
            /* background: var(--red-gradient); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            /* box-shadow: 0 10px 35px rgba(229, 28, 35, 0.5); */
            transition: all 0.3s;
            z-index: 999;
        }

        .chatbot-trigger a:hover {
            transform: scale(1.15);
            /* box-shadow: 0 12px 40px rgba(229, 28, 35, 0.7); */
        }

        /* .chatbot-trigger::before {
            content: '💬';
            font-size: 2rem;
        } */

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .features-grid,
            .products-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .chatbot-trigger a{
                  bottom: 10px !important;
                  right: 5px !important;
            }
            .nav-container {
                padding: 0.8rem 1rem;
            }
            .gro-card-header{
                flex-direction: column !important;
            }
            .nav-menu {
                display: none;
            }
            .mobile-toggle {
                display: inline-flex;
            }
            .page-banner {
                padding: 110px 0 40px;
            }
            .about-intro {
                gap: 24px;
                margin-bottom: 48px;
            }
            .about-intro-visual {
                padding: 20px !important;
            }
            .gro-info-row {
                flex-direction: column;
                gap: 6px;
                align-items: flex-start;
            }
            .gro-info-row .label {
                min-width: 0;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .cta-content h2 {
                font-size: 2.5rem;
            }

            .features-grid,
            .products-grid,
            .testimonials-grid,
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons,
            .cta-buttons {
                flex-direction: column;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .stats-grid {
                gap: 1.5rem;
            }
            .cta-section {
                padding: 4rem 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
          /*************About Us************/
                /* Page Banner */
        .page-banner {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1a1a 50%, #c0392b 100%);
            padding: 150px 0 60px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(220,53,69,0.18) 0%, transparent 60%);
        }
        .page-banner h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
        }
        .page-banner p {
            font-size: 1.1rem;
            opacity: 0.85;
            position: relative;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
            font-size: 0.9rem;
            opacity: 0.75;
            position: relative;
        }
        .breadcrumb a { color: #fff; text-decoration: none; }
        .breadcrumb span { opacity: 0.5; }

        /* About Content */
        .about-section {
            padding: 80px 0;
            background: #fff;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        .about-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }
        .about-intro-text h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .about-intro-text p {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .about-intro-visual {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid #ffd5d5;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .stat-item {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(220,53,69,0.08);
        }
        .stat-item .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: #dc3545;
        }
        .stat-item .stat-label {
            font-size: 0.85rem;
            color: #777;
            margin-top: 4px;
        }

        /* Mission/Vision */
        .mission-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 48px;
        }
        .mission-card {
            background: #fff;
            border-radius: 16px;
            padding: 36px 28px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            border-top: 4px solid #dc3545;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .mission-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(220,53,69,0.12);
        }
        .mission-icon {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        .mission-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 12px;
        }
        .mission-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        /* Company Info */
        .company-info {
            padding: 80px 0;
            background: #fff;
        }
        .info-block {
            background: linear-gradient(135deg, #1a1a2e 0%, #2c1414 100%);
            border-radius: 20px;
            padding: 50px;
            color: #fff;
            margin-top: 48px;
        }
        .info-block h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ff6b6b;
        }
        .info-block p {
            font-size: 1rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 14px;
        }

        /* GRO Section */
        .gro-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        .gro-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            max-width: 700px;
            margin: 40px auto 0;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
            border-left: 5px solid #dc3545;
        }
        .gro-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #dc3545;
            margin-bottom: 20px;
        }
        .gro-info-row {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            align-items: flex-start;
        }
        .gro-info-row .label {
            font-weight: 600;
            color: #1a1a2e;
            min-width: 120px;
            font-size: 0.95rem;
        }
        .gro-info-row .value {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .gro-info-row .value a {
            color: #dc3545;
            text-decoration: none;
        }

        /* Office addresses */
        .offices-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 48px;
        }
        .office-card {
            background: #fff;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }
        .office-badge {
            display: inline-block;
            background: #dc3545;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .office-card h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }
        .office-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        /* Values */
        .values-section {
            padding: 80px 0;
            background: #fff;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        .value-item {
            text-align: center;
            padding: 28px 20px;
            border-radius: 14px;
            background: #fff5f5;
            transition: all 0.3s;
        }
        .value-item:hover { background: #dc3545; color: #fff; }
        .value-item:hover h4, .value-item:hover p { color: #fff; }
        .value-icon { font-size: 2rem; margin-bottom: 12px; }
        .value-item h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 8px;
        }
        .value-item p { font-size: 0.88rem; color: #666; line-height: 1.6; }

        /* Section title reuse */
        .section-title { text-align: center; margin-bottom: 0; }
        .section-title h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a1a2e;
        }
        .section-title p { color: #777; margin-top: 10px; font-size: 1rem; }
        .gradient-text { color: #dc3545; }

        @media (max-width: 768px) {
            .about-intro, .mission-grid, .values-grid, .offices-grid { grid-template-columns: 1fr; gap: 24px; }
            .page-banner h1 { font-size: 2rem; }
            .container { padding: 0 20px; }
            .info-block { padding: 30px 24px; }
            .stat-grid { grid-template-columns: 1fr 1fr; }
        }



        
        /* FAQ Section */
        .faq-section { padding: 80px 0; background: #f8f9fa; }
        .faq-intro { text-align: center; margin-bottom: 50px; }
        .faq-intro h2 { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; color: #1a1a2e; }
        .faq-intro p { color: #777; margin-top: 10px; }

        /* Categories */
        .faq-categories { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
        .faq-cat-btn {
            padding: 8px 20px; border-radius: 25px; border: 2px solid #dc3545;
            background: transparent; color: #dc3545; font-size: 0.9rem; font-weight: 600;
            cursor: pointer; transition: all 0.25s; font-family: 'Inter', sans-serif;
        }
        .faq-cat-btn.active, .faq-cat-btn:hover { background: #dc3545; color: #fff; }

        /* Accordion */
        .faq-list { display: flex; flex-direction: column; gap: 14px; }
        .faq-item {
            background: #fff; border-radius: 14px; overflow: hidden;
            box-shadow: 0 2px 16px rgba(0,0,0,0.06);
            border: 1px solid #f0f0f0;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover { box-shadow: 0 6px 28px rgba(220,53,69,0.10); }
        .faq-question {
            display: flex; justify-content: space-between; align-items: center;
            padding: 22px 28px; cursor: pointer; gap: 20px;
        }
        .faq-question-text { font-weight: 600; color: #1a1a2e; font-size: 1rem; line-height: 1.5; }
        .faq-toggle {
            width: 32px; height: 32px; border-radius: 50%; background: #fff5f5;
            display: flex; align-items: center; justify-content: center;
            color: #dc3545; font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
            transition: all 0.3s; border: 2px solid #ffd5d5;
        }
        .faq-item.open .faq-toggle { background: #dc3545; color: #fff; border-color: #dc3545; transform: rotate(45deg); }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
            padding: 0 28px;
        }
        .faq-answer-inner { padding-bottom: 22px; }
        .faq-item.open .faq-answer { max-height: 600px; }
        .faq-answer p { color: #666; line-height: 1.8; font-size: 0.97rem; margin-bottom: 8px; }
        .faq-answer ul { list-style: none; padding: 0; margin: 8px 0; }
        .faq-answer ul li { padding: 4px 0 4px 20px; color: #666; font-size: 0.95rem; position: relative; }
        .faq-answer ul li::before { content: '✓'; color: #dc3545; position: absolute; left: 0; font-weight: 700; }

        /* Contact CTA inside FAQ */
        .faq-cta-card {
            background: linear-gradient(135deg, #dc3545, #c0392b);
            border-radius: 16px; padding: 40px; text-align: center;
            margin-top: 50px; color: #fff;
        }
        .faq-cta-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
        .faq-cta-card p { opacity: 0.9; margin-bottom: 24px; }
        .faq-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
        .faq-cta-btn-w { background: #fff; color: #dc3545; padding: 12px 28px; border-radius: 25px; font-weight: 700; text-decoration: none; font-size: 0.95rem; }
        .faq-cta-btn-o { border: 2px solid #fff; color: #fff; padding: 12px 28px; border-radius: 25px; font-weight: 700; text-decoration: none; font-size: 0.95rem; }

        .note-box {
            background: #fff8e1; border-left: 4px solid #f59e0b; border-radius: 8px;
            padding: 16px 20px; margin-top: 30px;
        }
        .note-box p { color: #7c6005; font-size: 0.92rem; line-height: 1.7; margin: 0; }

        @media (max-width: 768px) {
            .page-banner h1 { font-size: 2rem; }
            .container { padding: 0 20px; }
        }

    /******Contact******/
    /* Call */
.contact-card:nth-child(1) .contact-icon i {
  color: #007bff; /* blue */
}

/* WhatsApp */
.contact-card:nth-child(2) .contact-icon i {
  color: #25D366; /* green */
}

/* Email */
.contact-card:nth-child(3) .contact-icon i {
  color: #dc3545; /* red */
}

/* Complaints */
.contact-card:nth-child(4) .contact-icon i {
  color: #ffc107; /* yellow */
}
     .gradient-text { color: #dc3545; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; color: #1a1a2e; }
        .section-title p { color: #777; margin-top: 10px; }

        /* Quick Contact Cards */
        .quick-contact { padding: 70px 0; background: #fff; }
        .quick-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
        .contact-card {
            text-align: center; padding: 36px 28px; border-radius: 16px; background: #f8f9fa;
            border: 2px solid transparent; transition: all 0.3s;
        }
        .contact-card:hover { border-color: #dc3545; background: #fff; box-shadow: 0 8px 30px rgba(220,53,69,0.10); transform: translateY(-4px); }
        .contact-icon { font-size: 2.4rem; margin-bottom: 16px; }
        .contact-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
        .contact-card p { color: #777; font-size: 0.8rem; margin-bottom: 14px; }
        .contact-card a { color: #dc3545; font-weight: 600; text-decoration: none; font-size: 1rem; display: block; }
        .contact-card a:hover { text-decoration: underline; }

        /* Main Contact Section */
        .contact-main { padding: 80px 0; background: #f8f9fa; }
        .contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }

        /* Office Info */
        .contact-info-block { }
        .contact-info-block h3 { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
        .contact-info-block > p { color: #777; margin-bottom: 30px; font-size: 1rem; line-height: 1.7; }

        .office-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
        .office-icon { width: 44px; height: 44px; background: #dc3545; color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
        .office-detail h4 { font-weight: 700; color: #1a1a2e; font-size: 0.95rem; margin-bottom: 4px; }
        .office-detail p { color: #666; font-size: 0.9rem; line-height: 1.6; margin: 0; }
        .office-detail a { color: #dc3545; text-decoration: none; font-weight: 600; }

        .gro-block { background: linear-gradient(135deg, #1a1a2e, #2c1414); border-radius: 14px; padding: 28px; color: #fff; margin-top: 30px; }
        .gro-block h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: #ff8a8a; margin-bottom: 16px; }
        .gro-block .gro-row { display: flex; gap: 10px; margin-bottom: 8px; font-size: 0.9rem; }
        .gro-block .gro-label { color: rgba(255,255,255,0.6); min-width: 100px; }
        .gro-block .gro-value { color: rgba(255,255,255,0.9); }
        .gro-block .gro-value a { color: #ff8a8a; text-decoration: none; }

        /* Contact Form */
        .contact-form-wrap { background: #fff; border-radius: 20px; padding: 44px; box-shadow: 0 6px 30px rgba(0,0,0,0.08); }
        .contact-form-wrap h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
        .contact-form-wrap > p { color: #777; font-size: 0.95rem; margin-bottom: 28px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .form-group { margin-bottom: 18px; }
        .form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: #1a1a2e; margin-bottom: 6px; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px 16px; border: 2px solid #e8e8e8; border-radius: 10px;
            font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #333; outline: none;
            transition: border-color 0.25s; background: #f8f9fa; box-sizing: border-box;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #dc3545; background: #fff; }
        .form-group textarea { resize: vertical; min-height: 110px; }
        .submit-btn {
            width: 100%; background: linear-gradient(135deg, #dc3545, #c0392b); color: #fff;
            border: none; padding: 14px; border-radius: 12px; font-family: 'Poppins', sans-serif;
            font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s;
            letter-spacing: 0.3px;
        }
        .submit-btn:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(220,53,69,0.3); }
        .form-success { display: none; text-align: center; padding: 24px; }
        .form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
        .form-success h4 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: #1a1a2e; }
        .form-success p { color: #777; font-size: 0.95rem; }

        @media (max-width: 900px) {
            .contact-layout, .form-row, .quick-contact-grid { grid-template-columns: 1fr; gap: 24px; }
            .page-banner h1 { font-size: 2rem; }
            .container { padding: 0 20px; }
            .contact-form-wrap { padding: 28px 20px; }
            .contact-card a { word-break: break-all; }
            .office-item { flex-direction: column; gap: 8px; }
            .gro-block .gro-row { flex-direction: column; gap: 4px; }
            .gro-block .gro-label { min-width: 0; opacity: 0.7; }
        }


        /******Privacy Policy*********/
         .policy-section { padding: 80px 0; background: #f8f9fa; }
        /* .container { max-width: 900px; margin: 0 auto; padding: 0 40px; } */

        .policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }

        /* Sticky TOC */
        .policy-toc {
            position: sticky; top: 90px; background: #fff; border-radius: 14px;
            padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
        }
        .policy-toc h4 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; color: #1a1a2e; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
        .toc-list { list-style: none; padding: 0; margin: 0; }
        .toc-list li { margin-bottom: 8px; }
        .toc-list a { color: #666; text-decoration: none; font-size: 0.88rem; line-height: 1.5; display: block; padding: 4px 8px; border-radius: 6px; transition: all 0.2s; }
        .toc-list a:hover { color: #dc3545; background: #fff5f5; }

        /* Policy Content */
        .policy-content { background: #fff; border-radius: 16px; padding: 48px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
        .last-updated { display: inline-block; background: #fff5f5; color: #dc3545; font-size: 0.85rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 30px; }
        .policy-content h2 { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
        .policy-content .intro-text { color: #666; font-size: 1rem; line-height: 1.8; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 2px solid #f0f0f0; }
        .policy-section-block { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid #f5f5f5; }
        .policy-section-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .policy-section-block h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
        .section-num { background: #dc3545; color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; flex-shrink: 0; }
        .policy-section-block p { color: #666; font-size: 0.97rem; line-height: 1.8; margin-bottom: 12px; }
        .policy-section-block ul, .policy-section-block ol { padding-left: 0; list-style: none; }
        .policy-section-block ul li, .policy-section-block ol li { color: #666; font-size: 0.95rem; line-height: 1.7; padding: 5px 0 5px 24px; position: relative; }
        .policy-section-block ul li::before { content: '→'; color: #dc3545; position: absolute; left: 0; font-weight: 600; }
        .policy-section-block ol { counter-reset: my-counter; }
        .policy-section-block ol li::before { counter-increment: my-counter; content: counter(my-counter) '.'; color: #dc3545; position: absolute; left: 0; font-weight: 700; }
        .info-box { background: #f8f9fa; border-radius: 10px; padding: 20px 24px; margin-top: 14px; }
        .info-box p { margin: 0; color: #555; }
        .contact-highlight { background: #fff5f5; border-radius: 12px; padding: 20px 24px; border-left: 4px solid #dc3545; margin-top: 14px; }
        .contact-highlight p { margin: 4px 0; color: #555; font-size: 0.95rem; }
        .contact-highlight a { color: #dc3545; }

        @media (max-width: 900px) {
            .policy-layout { grid-template-columns: 1fr; }
            .policy-toc { position: static; }
            .container { padding: 0 20px; }
            .policy-content { padding: 28px 20px; }
            .page-banner h1 { font-size: 2rem; }
        }





        .pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.pdf-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.pdf-card img {
  width: 100%;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(197 28 30 / 31%);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: 0.3s ease;
}

/* Button */
.view-btn {
  background: var(--red-gradient);
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(229, 28, 35, 0.4);
   border: none;
  cursor: pointer;
}

/* Hover effect */
.pdf-card:hover .overlay {
  opacity: 1;
}
.pdf-card img{
      width: 100%;
}
.pdf-card img {
  transition: transform 0.3s ease;
}

.pdf-card:hover img {
  transform: scale(1.05);
}
.pdf-card iframe {
  width: 100%;
  height: 230px;
  border: none;
  pointer-events: none; /* disables scroll inside thumbnail */
  overflow: hidden;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
}

.modal iframe {
  width: 90%;
  height: 90%;
  margin: 3% auto;
  display: block;
  background: #fff;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
.policyPdf{
   padding: 20px 0 80px;
}
