
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            color: #2d3436;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation Styles (Exact copy from original) */
        .harshwal-nav-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .harshwal-navbar-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            position: relative;
        }

        .harshwal-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
            margin-right: auto;
            flex-shrink: 0;
        }

        .harshwal-nav-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .harshwal-nav-menu-list {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .harshwal-nav-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            height: 70px;
        }

        .harshwal-nav-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 8px;
            display: flex;
            align-items: center;
            gap: 3px;
            transition: color 0.3s;
            height: 100%;
            cursor: pointer;
            white-space: nowrap;
        }

        .harshwal-nav-link:hover {
            color: #1a3d5c;
        }

        .harshwal-nav-link-dropdown::after {
            content: '▼';
            font-size: 9px;
            transition: transform 0.3s;
            margin-left: 2px;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-link-dropdown::after {
            transform: rotate(180deg);
        }

        .harshwal-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 999;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .harshwal-nav-dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s;
        }

        .harshwal-nav-dropdown-item:hover {
            background: #f5f7fa;
            color: #1a3d5c;
            padding-left: 25px;
        }

        .harshwal-nav-cta-btn {
            background: linear-gradient(45deg, #5f2a52, #862a2a);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            margin-left: 10px;
        }

        .harshwal-nav-cta-btn:hover {
            background: #6d2349;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 44, 92, 0.3);
        }

        .harshwal-nav-mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            background: none;
            border: none;
            margin-left: 15px;
        }

        .harshwal-nav-mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #1a3d5c;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
            display: block;
        }

        /* Hero Section */
        .capacity-hero {
             /* background: linear-gradient(rgb(0 0 0 / 76%), rgb(0 0 0 / 69%)), url(../assets/15736.jpg) center / cover no-repeat; */
               background: linear-gradient(rgb(0 0 0 / 57%), rgb(0 0 0 / 75%)), url(../assets/15736.jpg) center / cover no-repeat;

            /* background: linear-gradient(rgba(95, 42, 82, 0.9) , rgba(134, 42, 42, 0.9)), url('../assets/5478.jpg') center/cover no-repeat; */
            color: white;
            padding: 180px 20px;
            text-align: center;
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .capacity-hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .capacity-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        .capacity-hero-subtitle {
            font-size: 1.4rem;
            font-weight: 500;
            opacity: 0.95;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        /* Introduction Section */
        .capacity-intro {
            padding: 80px 20px;
            background: #f8fafc;
        }

        .capacity-intro-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .capacity-intro-wrapper {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .capacity-intro-content {
            flex: 1.2;
        }

        .capacity-intro-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 25px;
        }

        .capacity-intro-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .capacity-intro-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        /* Product Sections */
        .capacity-section {
            padding: 100px 20px;
            background: white;
        }

        .capacity-section:nth-child(even) {
            background: #f8fafc;
        }

        .capacity-section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .capacity-section-item {
            display: flex;
            align-items: center;
            gap: 80px;
            margin-bottom: 0;
        }

        .capacity-section-reverse {
            flex-direction: row-reverse;
        }

        .capacity-section-content {
            flex: 1.2;
        }

        .capacity-section-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .capacity-section-image img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .capacity-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a3d5c;
            margin-bottom: 25px;
        }

        .capacity-section-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }

        .capacity-section-features {
            list-style: none;
            margin-bottom: 30px;
            padding-left: 0;
        }

        .capacity-section-features li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1rem;
            color: #333;
        }

        .capacity-section-features li:before {
            content: '•';
            position: absolute;
            left: 0;
            top: 1px;
            color: #5f2a52;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .capacity-section-features .nested-item {
            margin-left: 20px;
            color: #666;
        }

        .capacity-highlight {
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
        }

        .capacity-quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #1a3d5c;
            font-weight: 600;
            text-align: center;
            margin: 40px 0;
        }

        /* Infrastructure Section */
        .capacity-infrastructure {
            padding: 100px 20px;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
        }

        .capacity-infrastructure-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }

        .capacity-infrastructure-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .capacity-infrastructure-content {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .capacity-infrastructure-text {
            flex: 1.2;
        }

        /* .capacity-infrastructure-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .capacity-infrastructure-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        } */

        /* .capacity-infrastructure-image {
    width: 300px; 
    height: 500px; 
    overflow: hidden; 
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.capacity-infrastructure-image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 15px;
} */

        /* Default styles for mobile view */
.capacity-infrastructure-image {
    width: 100%; /* Full width for mobile */
    height: auto; /* Height adjusts automatically */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.capacity-infrastructure-image img {
    width: 100%; /* Image takes full width of the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 15px;
}

/* Styles for desktop view (screen width >= 768px) */
@media (min-width: 768px) {
    .capacity-infrastructure-image {
        width: 400px; /* Increased width for desktop */
        height: 600px; /* Maintain vertical aspect ratio */
        overflow: hidden;
    }

    .capacity-infrastructure-image img {
        width: 100%; /* Fill the container width */
        height: 100%; /* Fill the container height */
        object-fit: cover; /* Crop the image to fit the vertical frame */
    }
}

        .capacity-infrastructure-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.95);
        }

        .capacity-infrastructure-text p strong {
            color: white;
        }

        /* Scale Section */
        .capacity-scale {
            padding: 100px 20px;
            background: #f8fafc;
        }

        .capacity-scale-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .capacity-scale-content {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .capacity-scale-text {
            flex: 1.2;
        }

        .capacity-scale-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .capacity-scale-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        /* CTA Section */
        .capacity-final-cta {
            padding: 100px 20px;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            text-align: center;
        }

        .capacity-final-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .capacity-final-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .capacity-final-cta-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.95);
        }

        .capacity-final-cta-text em {
            color: white;
            font-weight: 600;
        }

        .capacity-cta-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 18px 40px;
            border: 2px solid white;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .capacity-cta-btn:hover {
            background: white;
            color: #5f2a52;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        /* Footer Styles (Exact copy from original) */
        .harshwal-footer {
            background: #000000;
            color: #ffffff;
            padding: 4rem 0 2rem;
        }

        .harshwal-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .harshwal-footer-cta {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .harshwal-cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .harshwal-cta-description {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .harshwal-btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .harshwal-btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(66, 153, 225, 0.4);
            color: white;
        }

        .harshwal-footer-grid {
            display: grid;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 1024px) {
            .harshwal-footer-grid {
                grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        .harshwal-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .harshwal-section-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .harshwal-footer-links {
            list-style: none;
            padding: 0;
        }

        .harshwal-footer-links li {
            margin-bottom: 0.8rem;
        }

        .harshwal-footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .harshwal-footer-link:hover {
            color: #4299e1;
        }

        .harshwal-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .harshwal-social-link {
            display: flex;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
            font-weight: 600;
        }

        .harshwal-social-link:hover {
            background: #4299e1;
            transform: translateY(-2px);
            color: white;
        }

        .harshwal-contact-info {
            margin-bottom: 1.2rem;
        }

        .harshwal-contact-label {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .harshwal-contact-value {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .harshwal-contact-value a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .harshwal-contact-value a:hover {
            color: #4299e1;
        }

        .harshwal-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
        }

        .harshwal-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .harshwal-footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .harshwal-footer-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .harshwal-footer-legal-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .harshwal-footer-legal-link:hover {
            color: #4299e1;
        }

        /* Mobile Navigation & Responsive Styles */
        @media (max-width: 968px) {
            .harshwal-navbar-container {
                padding: 0 15px;
                min-height: 60px;
            }

            .harshwal-nav-menu-list {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                justify-content: flex-start;
                align-items: stretch;
            }

            .harshwal-nav-menu-list.harshwal-nav-active {
                left: 0;
            }

            .harshwal-nav-menu-item {
                width: 100%;
                height: auto;
                display: block;
            }

            .harshwal-nav-link {
                padding: 15px 20px;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid #f0f0f0;
                height: auto;
                font-size: 14px;
            }

            .harshwal-nav-dropdown {
                position: static;
                width: 100%;
                box-shadow: none;
                background: #f8f9fa;
                padding: 0;
                opacity: 0;
                max-height: 0;
                overflow: hidden;
                visibility: hidden;
                transform: none;
                transition: all 0.3s ease;
            }

            .harshwal-nav-item-active .harshwal-nav-dropdown {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
                padding: 10px 0;
            }

            .harshwal-nav-dropdown-item {
                padding: 10px 30px;
                border-left: 3px solid transparent;
            }

            .harshwal-nav-dropdown-item:hover {
                border-left-color: #1a3d5c;
                background: #ffffff;
            }

            .harshwal-nav-mobile-toggle {
                display: flex;
            }

            .harshwal-nav-toggle-active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .harshwal-nav-toggle-active span:nth-child(2) {
                opacity: 0;
            }

            .harshwal-nav-toggle-active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .capacity-hero {
                padding: 140px 20px;
                min-height: 70vh;
            }

            .capacity-hero-title {
                font-size: 2.5rem;
            }

            .capacity-hero-subtitle {
                font-size: 1.2rem;
            }

            .capacity-intro-wrapper,
            .capacity-section-item,
            .capacity-section-reverse,
            .capacity-infrastructure-content,
            .capacity-scale-content {
                flex-direction: column;
                gap: 40px;
            }

            .capacity-infrastructure-content {
                text-align: center;
            }

            .capacity-section-title {
                font-size: 2rem;
            }

            .capacity-infrastructure-title,
            .capacity-final-cta-title {
                font-size: 2rem;
            }

            .harshwal-footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .harshwal-footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .harshwal-footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .capacity-hero {
                padding: 100px 20px;
                min-height: 60vh;
            }

            .capacity-hero-title {
                font-size: 2rem;
            }

            .capacity-hero-subtitle {
                font-size: 1.1rem;
            }

            .capacity-section {
                padding: 60px 20px;
            }

            .capacity-section-title {
                font-size: 1.8rem;
            }

            .capacity-infrastructure,
            .capacity-final-cta {
                padding: 60px 20px;
            }

            .capacity-infrastructure-title,
            .capacity-final-cta-title {
                font-size: 1.8rem;
            }

            .harshwal-cta-title {
                font-size: 1.5rem;
            }

            .harshwal-footer-legal {
                gap: 1rem;
            }
        }
