body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}



    /* Nav Menu */
          /* Header styles */
          .nav-header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid #e5e7eb;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-wrapper {
            display: flex;
            height: 3.5rem;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo styles */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #000;
            font-weight: bold;
        }

        /* Navigation menu styles */
        .nav-menu {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-menu {
                display: flex;
                align-items: center;
                gap: 2rem;
                margin: 0 auto;
            }
        }

        .nav-item {
            position: relative;
            list-style: none;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            color: #000;
            text-decoration: none;
            font-size: 0.875rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        /* Dropdown styles */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 800px;
            padding: 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .nav-item:hover .dropdown {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem;
            text-decoration: none;
            color: #000;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f3f4f6;
        }

        /* Badge styles */
        .nav-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.125rem 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #000;
            background-color: #fbbf24;
            border-radius: 9999px;
            margin-left: 0.5rem;
        }

        /* Button styles */
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
        }

        .button-ghost {
            color: #000;
            background: transparent;
            border: none;
        }

        .button-ghost:hover {
            background-color: #f3f4f6;
        }

        .button-primary {
            color: white;
            background-color: #000;
            border: none;
        }

        .button-primary:hover {
            background-color: #1a1a1a;
        }

        /* Mobile menu styles */
        .mobile-menu-button {
            display: block;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .mobile-menu-button {
                display: none;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 2rem 1rem;
            transition: left 0.3s ease-in-out;
            z-index: 100;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem 0;
            color: #000;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }
/* Nav menu Ends */

/* Hero Sectios Start's */

        /* Hero section container */
        .hero-section {
            width: 100%;
        }

        .grid-container {
            display: grid;
            grid-template-columns: 1fr;
        }

        /* Left content area */
        .content-area {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 3rem 1.5rem;
        }

        .hero-title {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.025em;
            color: #111827;
        }

        .hero-description {
            margin-top: 1.5rem;
            font-size: 1.125rem;
            color: #4b5563;
        }

        /* Form area */
        .form-container {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 28rem;
        }

        .email-input {
            height: 3rem;
            padding: 0 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 1rem;
            width: 100%;
        }

        .cta-button {
            height: 3rem;
            background-color: #821928;
            color: white;
            border: none;
            border-radius: 0.375rem;
            padding: 0 1.5rem;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .cta-button:hover {
            background-color: #214150
        }

        /* Trust indicators */
        .trust-container {
            margin-top: 2rem;
        }

        .trust-text {
            font-weight: 500;
            color: #1f2937;
        }

        .rating-container {
            display: flex;
            align-items: center;
            margin-top: 0.5rem;
        }

        .stars {
            display: flex;
        }

        .star {
            width: 1.25rem;
            height: 1.25rem;
            fill: #ffd900;
            color: #4f46e5;
        }

        .rating-text {
            margin-left: 0.5rem;
            font-size: 0.875rem;
            color: #4b5563;
        }

        /* Right image area */
        .image-area {
            padding: 0; /* Removed padding */
            margin: 0;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image fills container while maintaining aspect ratio */
            display: block;
        }

        /* Responsive styles */
        @media (min-width: 640px) {
            .form-container {
                flex-direction: row;
            }

            .email-input {
                flex: 1;
            }
        }

        @media (min-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr 1fr;
            }

            .content-area {
                padding: 3rem 3rem;
            }

            .hero-title {
                font-size: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .content-area {
                padding: 3rem 4rem;
            }

            .hero-title {
                font-size: 3.75rem;
            }
        }

/* Heros Section End's*/

/* Sec0nd Hero Section Starts */

        /* Section styles */
        .doors-section {
            width: 100%;
            padding: 120px 20px;
            background-color: #faf9f6;
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .decorative-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, rgba(255,193,7,0.05) 100%);
            z-index: 0;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            left: -100px;
        }

        .circle-2 {
            width: 500px;
            height: 500px;
            bottom: -200px;
            right: -200px;
        }

        .decorative-line {
            position: absolute;
            width: 150px;
            height: 3px;
            background-color: #821928;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .store-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .store-section-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }

        /* Images container */
        .store-images-container {
            display: flex;
            gap: 20px;
            position: relative;
            height: 450px;
        }

        .store-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
            flex: 1;
        }

        .store-image-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .store-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .store-image-wrapper:hover img {
            transform: scale(1.08);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            height: 50%;
            border-radius: 0 0 12px 12px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .store-image-wrapper:hover .image-overlay {
            opacity: 1;
        }

        .image-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-size: 18px;
            font-weight: 500;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.1s;
        }

        .store-image-wrapper:hover .image-caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* Content styles */
        .content-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 600px;
            position: relative;
        }

        .content-badge {
            position: absolute;
            top: -40px;
            left: 0;
            background-color: #821928;
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.1s forwards;
        }

        .store-subtitle {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.3s forwards;
            position: relative;
            display: inline-block;
        }

        .store-subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #821928;
            transition: width 0.5s ease;
        }

        .content-container:hover .store-subtitle::after {
            width: 100%;
        }

        .store-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            color: #222;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.5s forwards;
            position: relative;
        }

        .store-title span {
            color: #214150;
            position: relative;
            display: inline-block;
        }

        .store-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: #333b3f2a;
            z-index: -1;
        }

        .description {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.7s forwards;
            position: relative;
        }

        .ffeatures-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.9s forwards;
        }

        .ffeature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ffeature-icon {
            width: 30px;
            height: 30px;
            background-color: rgba(255, 193, 7, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #214150;
            font-size: 14px;
        }

        .store-cta-container {
            display: flex;
            gap: 20px;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 1.1s forwards;
        }

        .store-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 54px;
            padding: 0 36px;
            background-color: #821928;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .store-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: -1;
        }

        .store-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
        }

        .store-cta-button:hover::before {
            transform: translateX(0);
        }

        .store-cta-secondary {
            color: #214150;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .store-cta-secondary:hover {
            color: #214150;
        }

        .store-cta-secondary i {
            transition: transform 0.3s ease;
        }

        .store-cta-secondary:hover i {
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        /* Media queries for responsiveness */
        @media (min-width: 992px) {
            .store-section-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
                gap: 80px;
            }

            .store-images-container {
                height: 550px;
            }
        }

        @media (max-width: 991px) {
            .doors-section {
                padding: 80px 20px;
            }

            .store-images-container {
                height: 400px;
            }

            .store-title {
                font-size: 42px;
                margin-left: 20px;
            }
            .content-badge {
                margin-left: 10px;
            }
            .store-subtitle {
                margin-left: 20px;
            }
        }

        @media (max-width: 767px) {
            .doors-section {
                padding: 60px 20px;
            }

            .store-images-container {
                flex-direction: column;
                height: auto;
                gap: 30px;
                width: auto;
            }

            .store-image-wrapper {
                height: 300px;
            }

            .store-title {
                font-size: 36px;
            }
            .description {
                margin-left: 20px;
            }

            .ffeatures-list {
                grid-template-columns: 1fr;
                margin-left: 20px;
            }

            .store-cta-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-left: 20px;
            }
        }

/* Second Hero Section End's */

/* Quality Section Starts */

.quality-section-windows {
    width: 100%;
    position: relative;
    padding: 5rem 2rem;
    width: auto;
    background: linear-gradient(135deg, #214150 0%, #821928 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .decorative-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(50px);
  }
  
  .blob-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
  }
  
  .blob-2 {
    bottom: 15%;
    right: 5%;
    width: 400px;
    height: 400px;
  }
  
  .quality-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  
  .quality-header {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }
  
  .quality-header h3 {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }
  
  .quality-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background: linear-gradient(to right, rgba(130, 25, 40, 0.5), transparent);
  }
  
  .quality-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  
  .quality-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .quality-title span {
    position: relative;
    display: inline-block;
  }
  
  .quality-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #821928;
  }
  
  .description p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
  }
  
  .quality-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-box {
    padding: 2rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .icon-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .feature-box:hover .icon-glow {
    opacity: 1;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }
  
  .arrow {
    margin-top: auto;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover .arrow {
    transform: translateX(4px);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes slideLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slideRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  .animate-quality-header {
    animation: fadeIn 0.8s ease forwards;
  }
  
  .animate-title {
    animation: slideLeft 0.8s ease 0.2s forwards;
    opacity: 0;
  }
  
  .animate-description {
    animation: slideRight 0.8s ease 0.4s forwards;
    opacity: 0;
  }
  
  .animate-feature {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
  }
  
  .feature-1 { animation-delay: 0.6s; }
  .feature-2 { animation-delay: 0.8s; }
  .feature-3 { animation-delay: 1.0s; }
  .feature-4 { animation-delay: 1.2s; }
  
  /* Responsive */
  @media (min-width: 768px) {
    .quality-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .quality-features {
      grid-template-columns: repeat(2, 2fr);
    }
    
    .quality-title h2 {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .quality-features {
      grid-template-columns: repeat(4, 2fr);
    }
    
    .quality-title h2 {
      font-size: 3.5rem;
    }
  }

/* Quality Sectyion End's */

/* Status Section Starts*/

.stats-section {
    padding: 80px 20px;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.stats-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.stats-heading span {
    color: #3f0c07;
    position: relative;
}

.stats-heading span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #2c3e50;
    transition: width 0.5s ease;
    animation: underline 1s ease-in 0.5s forwards;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeIn 1s ease-in 0.3s forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    position: relative;
    padding: 20px;
    text-align: center;
    opacity: 0;
    animation: fadeInScale 0.8s ease-in forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.6s; }
.stat-item:nth-child(2) { animation-delay: 0.8s; }
.stat-item:nth-child(3) { animation-delay: 1s; }
.stat-item:nth-child(4) { animation-delay: 1.2s; }

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #e6f0fa, #fff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #214150;
    border-right-color: #821928;
    opacity: 0.3;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.stat-item:hover .stat-circle {
    transform: scale(1.1);
    background: linear-gradient(135deg, #214150, #821928);
}

.stat-item:hover .stat-circle::before {
    opacity: 1;
    transform: rotate(360deg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #fff;
}

.stat-item p {
    font-size: 1rem;
    color: #214150;
    position: relative;
}

.stat-item p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #214150;
    transition: width 0.3s ease;
}

.stat-item:hover p::after {
    width: 50%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes underline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-heading {
        font-size: 2.5rem;
    }

    .stats-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-heading {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Status Section end's */

/* Light Section Starts */

.light-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .light-hero-section {
    display: flex;
    flex-direction: column;
    padding: 60px 0;
  }
  
  .robot-container {
    border-radius: 8px;
    padding: 40px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .robot-image {
    max-width: 100%;
    height: 100%;
    max-height: 1800px;
  }
  
  .light-content-container {
    padding: 0 10px;
  }
  
  .light-container h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #214150;
  }
  
  .light-container p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
  }
  
  .light-cta-button {
    display: inline-block;
    height: 54px;
    background-color: #821928;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .light-cta-button:hover {
    background-color: #214150;
  }
  
  /* Media queries for responsive design */
  @media (min-width: 768px) {
    .light-hero-section {
      flex-direction: row;
      align-items: center;
      gap: 60px;
    }
    
    .robot-container {
      flex: 1;
      margin-bottom: 0;
    }
    
    .light-content-container {
      flex: 1;
      padding: 0;
    }
    
    .light-container h1 {
      font-size: 36px;
    }
  }
  
  @media (min-width: 1024px) {
    .light-container h1 {
      font-size: 42px;
    }
    
    .light-container p {
      font-size: 18px;
    }
  }

/* Light Section Starts */

/* Wipro Section Starts */

.wipro-section {
    width: 100%;
    max-width: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.wipro-image {
    width: 1900px;
    max-width: 2000px;
    height: 400px;
    display: block;
}

/* Mobile-specific styles to maintain image size */
@media (max-width: 768px) {
    .wipro-image {
        width: 100%;
        /* Fixed height to maintain aspect ratio on mobile */
        max-height: 200px;
        object-fit: contain;
    }
}

/* Wipro Section End's */

/* Request Section Starts */

.request-section {
    background-color: #FFC107; /* Yellow background */
    padding: 20px;
    width: 100%;
    height: 120px;
    
}

.request-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 15px;
    
    
}

.request-content h2 {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-right: 10px;
    text-align: left;
}

.request-buttons {
    display: flex;
    gap: 15px;
    
}

.request-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Ensure the link behaves like a button */
    text-decoration: none !important; /* Remove underline with higher priority */
    color: inherit; /* Ensure text color is inherited from specific classes */
}

.request-btn-primary {
    background-color: #821928;
    color: #fff;
}

.request-btn-primary:hover {
    background-color: #214150;
}

.request-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #821928;
}

.request-btn-secondary:hover {
    background-color: #214150;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .request-section {
      height: 220px;
    }
    .request-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .request-content h2 {
        font-size: 18px;
    }

    .request-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .request-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .request-content h2 {
        font-size: 16px;
    }

    .request-btn {
        font-size: 12px;
        padding: 10px;
    }
}

/* Request Section Ends */

/* Products Section Starts */

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 10px;
    width: 1200px;
    
}

.products-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.product-card {
    flex: 0 0 calc(100% - 24px);
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--index) * 0.1s);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .product-card {
        flex: 0 0 calc(50% - 24px);
    }
}

@media (min-width: 1024px) {
    .product-card {
        flex: 0 0 calc(25% - 24px);
    }
}

.sale-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #444;
    color: white;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 10;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInDown 0.5s ease forwards;
    animation-delay: calc(var(--index) * 0.2s + 0.3s);
}

.product-image-container {
    padding: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.product-card:hover .product-image-container {
    background-color: #eaeaea;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
    background-color: white;
}

.product-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #821928;
}

.product-price {
    font-weight: 600;
    color: #444;
    margin-bottom: 16px;
    font-size: 18px;
}

.color-options {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.color-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-option:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: run-in;
    text-align: center;
    font-size: 15px;
    
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #d1d1d1;
    color: #333;
}

.btn-outline:hover {
    background-color: #214150;
    color: #fff;
    border-color: #aaa;
}

.btn-black {
    background-color: #000;
    color: white;
    border: none;
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Color options */
.blue { background-color: #3b82f6; }
.yellow { background-color: #f59e0b; }
.red { background-color: #ef4444; }
.black { background-color: #222; }
.gold { background-color: #fcd34d; }
.white { background-color: #fff; border: 1px solid #e0e0e0; }
.orange { background-color: #fdba74; }

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 18px;
    color: #333;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #821928;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section End's */


/* quotation Section Starts */

.contact-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.info-section {
    background-color: #f5f4ea;
    padding: 80px 50px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section {
    background-color: #ffffff;
    padding: 80px 50px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-heading {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.main-heading {
    color: #222;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.contact-text {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-icon {
    position: absolute;
    left: 0;
    top: 10px;
    color: #999;
}

.form-control {
    width: 100%;
    padding: 10px 0;
    padding-left: 30px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #f9d100;
}

textarea.form-control {
    min-height: 100px;
    resize: none;
}

.submit-btn {
    background-color: #821928;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #214150;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .info-section, .form-section {
        width: 100%;
        padding: 60px 30px;
    }
    
    .main-heading {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .info-section, .form-section {
        padding: 40px 20px;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
    }
}

/* quotation Section End's */

/* CATEGORIES Section Start's */

:root {
    --primary: #1a1f2c;
    --secondary: #3b82f6;
    --text-light: #6b7280;
    --text-dark: #1a1f2c;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
  }
 
  /* Animation keyframes */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideFromLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
  }
  
  /* Animation classes */
  .animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
  }
  
  .animate-slide-in {
    animation: slideFromLeft 0.8s ease-out forwards;
  }
  
  .animate-pulse {
    animation: pulse 2s infinite;
  }
  
  .category-container {
    opacity: 0;
  }
  
  /* Staggered animations for category items */
  .category-item:nth-child(1) {
    animation-delay: 0ms;
  }
  
  .category-item:nth-child(2) {
    animation-delay: 150ms;
  }
  
  .category-item:nth-child(3) {
    animation-delay: 300ms;
  }
  
  /* Hover effects */
  .category-image {
    transition: transform 0.5s ease, filter 0.5s ease;
  }
  
  .category-item:hover .category-image {
    transform: scale(1.1);
    filter: brightness(1.1);
  }
  
  .category-item:hover .category-title {
    color: var(--secondary);
  }
  
  .category-item:hover .category-line {
    width: 8rem;
    background-color: var(--secondary);
  }
  
  .arrow-icon {
    transition: all 0.3s ease;
  }
  
  .category-item:hover .arrow-icon {
    transform: rotate(45deg);
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .category-item:hover .overlay {
    opacity: 1;
  }
  
  /* Page transitions */
  .page-section {
    transition: opacity 0.7s ease;
  }
  
  /* Product card animations */
  .product-card {
    transition: all 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .product-image {
    transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.1);
  }
  
  /* Loading animation */
  .loading .category-container {
    opacity: 0;
  }
  
  .loaded .category-container {
    opacity: 1;
  }

/* CATEGORIES Section End's */

/* Door Section Starts */

        /* Style for the door section */
        .door-section {
            width: 100%;
            height: auto; /* Let the height adjust based on the image */
            overflow: hidden; /* Hide any overflow */
        }

        /* Style for the image */
        .door-section img {
            width: 100%; /* Make the image fill the section width */
            height: auto; /* Maintain aspect ratio */
            display: block; /* Remove any extra space below the image */
            object-fit: cover; /* Ensure the image covers the section without distortion */
        }

        /* Media query for mobile devices */
        @media (max-width: 768px) {
            .door-section img {
                width: 100%;
                height: auto;
                object-fit: cover; /* Ensure it still fills the section on mobile */
            }
        }

/* Door Section End's */

/* FAQ Section Start's */

    /* Container styles */
    .faq-section {
        max-width: 1000px;
        margin: 4rem auto;
        padding: 0 1.5rem;
        position: relative;
      }
      
      /* Decorative leaves */
      .leaf-left {
        position: absolute;
        left: -30px;
        top: 0;
        width: 120px;
        z-index: -1;
      }
      
      .leaf-right {
        position: absolute;
        right: -30px;
        top: 0;
        width: 120px;
        z-index: -1;
      }
      
      /* Header styles */
      .faq-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-top: 1rem;
      }
      
      .faq-subtitle {
        font-size: 1rem;
        font-weight: 400;
        color: #555;
        margin-bottom: 0.5rem;
      }
      
      .faq-title {
        font-size: 2.25rem;
        font-weight: 700;
        color: #222;
      }
      
      /* FAQ items container */
      .faq-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      
      /* Individual FAQ item */
      .faq-item {
        border: 1px solid #e2e8f0;
        border-radius: 0.5rem;
        overflow: hidden;
        transition: all 0.3s ease;
      }
      
      /* Active (expanded) FAQ item */
      .faq-item.active {
        background-color: #f0f7f4; /* Light mint green background */
      }
      
      /* Question button */
      .faq-question {
        width: 100%;
        padding: 1.5rem;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.125rem;
        font-weight: 500;
        color: #222;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .faq-question:hover {
        color: #000;
      }
      
      .faq-question:focus {
        outline: none;
      }
      
      /* Expanded question container */
      .faq-expanded {
        padding: 0 1.5rem 1.5rem;
        display: none;
      }
      
      .faq-item.active .faq-expanded {
        display: block;
        animation: fadeIn 0.3s ease;
      }
      
      /* Question header with close button */
      .faq-question-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 0.75rem;
      }
      
      .faq-question-text {
        font-size: 1.125rem;
        font-weight: 500;
        color: #222;
      }
      
      /* Close button */
      .faq-close {
        background: none;
        border: none;
        cursor: pointer;
        color: #666;
        padding: 0.25rem;
        line-height: 0;
      }
      
      .faq-close:hover {
        color: #000;
      }
      
      /* Answer text */
      .faq-answer {
        color: #555;
        line-height: 1.6;
      }
      
      /* Icons */
      .icon {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      
      /* Animations */
      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }
      
      /* Responsive styles */
      @media (max-width: 768px) {
        .faq-section {
          margin: 3rem auto;
          padding: 0 1rem;
        }
        
        .leaf-left {
          width: 80px;
          left: -10px;
        }
        
        .leaf-right {
          width: 80px;
          right: -10px;
        }
        
        .faq-title {
          font-size: 1.75rem;
        }
        
        .faq-subtitle {
          font-size: 0.875rem;
        }
        
        .faq-question, .faq-question-text {
          font-size: 1rem;
        }
      }
      
      @media (max-width: 480px) {
        .faq-section {
          margin: 2rem auto;
        }
        
        .leaf-left, .leaf-right {
          width: 60px;
        }
        
        .faq-title {
          font-size: 1.5rem;
        }
        
        .faq-question {
          padding: 1.25rem;
        }
      }

/* FAQ Section End's */

/* Scroll Section Starts */

/* Main container */
.scroll-container {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 20px;
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
        Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f8f7f2; /* Light beige background matching the image */
    color: #222222; /* Dark text color matching the image */
    line-height: 1.6;
}


/* Scrolling text container with borders */
.scrolling-text-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hide text that scrolls outside the container */
    border-top: 1px solid #e0dfd7; /* Top border matching the image */
    border-bottom: 1px solid #e0dfd7; /* Bottom border matching the image */
    background-color: #f8f7f2; /* Ensure background color is consistent */
}

/* Scrolling text element */
.scrolling-text {
    display: inline-block;
    white-space: nowrap; /* Prevent text from wrapping */
    padding: 24px 0; /* Vertical padding to match the image */
    font-size: clamp(1.25rem, 3vw, 2.5rem); /* Responsive font size */
    font-weight: 500; /* Medium font weight to match the image */
    animation: scrollText 30s linear infinite; /* Smooth scrolling animation */
    will-change: transform; /* Optimize for animation performance */
}

/* Each text span element */
.scrolling-text span {
    display: inline-block;
    padding-right: 50px; /* Space between repeated text */
}

/* Scrolling animation */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Move text completely to the left */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scrolling-text {
        padding: 16px 0; /* Smaller padding on mobile */
    }
}

/* Prevent animation during page load for better performance */
.no-animation {
    animation: none !important;
}

/* Scroll Section Starts */

/* Footer Section Starts */

a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  /* Footer styles */
  .footer {
    background-color: #252525;
    color: white;
    padding: 3rem 1rem;
    overflow: hidden;
  }
  
  .footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Top section */
  .top-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 100ms;
  }
  
  @media (min-width: 768px) {
    .top-section {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .top-section {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-image {
    width: 250px; /* Adjust size as needed */
    height: auto;
  }
  
  .logo-text {
    font-size: 18px;
    font-weight: bold;
  }
  
  .company-description {
    color: #d1d5db;
    margin-bottom: 1rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  
  /* Middle section */
  .middle-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
  }
  
  @media (min-width: 768px) {
    .middle-section {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .middle-section {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  
  .section-divider {
    height: 1px;
    background-color: rgba(209, 213, 219, 0.2);
    margin: 2rem 0;
    width: 100%;
  }
  
  .footer-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .hidden-title {
    opacity: 0;
  }
  
  .link-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-link {
    transition: color 0.3s;
  }
  
  .footer-link:hover {
    color: #d1d5db;
  }
  
  /* Quick links section */
  .quick-links {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 600ms;
  }
  
  .quick-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  
  /* Support section */
  .support-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 700ms;
  }
  
  @media (min-width: 768px) {
    .support-section {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
  
  .support-title {
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .support-title {
      margin-bottom: 0;
    }
  }
  
  .support-button {
    background-color: white;
    color: #0a3b1d;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
  }
  
  .support-button:hover {
    background-color: #f3f4f6;
  }
  
  .support-button-icon {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
  }
  
  .support-button:hover .support-button-icon {
    transform: translateX(0.25rem);
  }
  
  /* Bottom section */
  .bottom-section {
    border-top: 1px solid #4b5563;
    padding-top: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 800ms;
  }
  
  .bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .bottom-container {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .copyright {
    color: #9ca3af;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .copyright {
      margin-bottom: 0;
    }
  }
  
  .policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .policy-links {
      margin-bottom: 0;
    }
  }
  
  .policy-link {
    color: #9ca3af;
    transition: color 0.3s;
  }
  
  .policy-link:hover {
    color: white;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    color: #9ca3af;
    transition: color 0.3s;
  }
  
  .social-link:hover {
    color: white;
  }
  
  .social-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
  }
  
  .solution-section {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 200ms;
  }
  
  .middle-column-1 {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 300ms;
  }
  
  .middle-column-2 {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 400ms;
  }
  
  .company-section {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 500ms;
  }

/* Footer Section End's */