
    :root {
            --primary: #152C47;
            --secondary: #BE1823;
            --accent: #D3D800;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --radius: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "poppins";
            color: var(--dark);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }

        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #004494;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: var(--accent);
            color: white;
        }

        .btn-secondary:hover {
            background-color: #008a7c;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(21, 44, 71, 0.9), rgba(26, 59, 70, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        /* Redesigned Partners Section */
        .partners {
            padding: 100px 0;
            background-color: #f0f8ff;
            position: relative;
            overflow: hidden;
        }

        .partners::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(21, 44, 71, 0.03) 0%, rgba(190, 24, 35, 0.03) 100%);
            z-index: 0;
        }

        .section-title {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.1rem;
        }

        .partner-grid-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .partner-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .partner-logo-container {
            position: relative;
            height: 180px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border-bottom: 1px solid var(--light-gray);
        }

        .partner-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

        .partner-card:hover .partner-logo {
            transform: scale(1.05);
        }

        .partner-details {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .partner-details h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }

        .partner-details h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent);
        }

        .partner-details p {
            color: var(--gray);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .partner-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .partner-link:hover {
            color: var(--secondary);
        }

        .partner-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .partner-link:hover i {
            transform: translateX(4px);
        }

        .partner-quote {
            margin-top: 50px;
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            position: relative;
            max-width: 900px;
            margin: 60px auto 0;
            border-left: 4px solid var(--accent);
        }

        .partner-quote p {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            padding-left: 30px;
        }

        .partner-quote p::before {
            content: "" ";
            position: absolute;
            left: 0;
            top: -15px;
            font-size: 4rem;
            color: rgba(0, 168, 150, 0.2);
            font-family: Georgia, serif;
        }

        .quote-author {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .author-details {
            text-align: right;
            margin-right: 15px;
        }

        .author-details h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .author-details p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .author-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Product Carousel Section */
        .product-carousel {
            padding: 100px 0;
            background-color: white;
        }

        .carousel-container {
            position: relative;
            margin: 0 auto;
            padding: 0 20px;
        }

        .carousel {
            display: flex;
            overflow: hidden;
            position: relative;
            border-radius: var(--radius);
            background: white;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .carousel-slide {
            flex: 0 0 100%;
            min-width: 100%;
            padding: 50px;
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .product-image {
            flex: 1;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .product-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .product-image img:hover {
            transform: scale(1.03);
        }

        .product-details {
            flex: 1;
        }

        .product-details h3 {
            color: var(--accent);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .product-details h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .product-details p {
            margin-bottom: 25px;
            color: var(--gray);
        }

        .product-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
        }

        .feature-icon {
            background-color: rgba(0, 168, 150, 0.1);
            color: var(--accent);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .product-btns {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background-color: var(--accent);
            transform: scale(1.2);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            z-index: 10;
            border: none;
            color: var(--primary);
            font-size: 20px;
        }

        .carousel-btn:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 20px;
        }

        .carousel-btn.next {
            right: 20px;
        }

        /* Service Section */
        .service-section {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .service-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .service-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
