/* General Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
}

body {
    font-family: Arial, sans-serif;
}


/* Base Styles */

.outer-nav {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    width: 120px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #002F87;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

.account .cta-button {
    background-color: green;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}


/* Hide Hamburger by Default */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #002F87;
    transition: 0.3s;
}


/* Sidebar */

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
    margin-top: 20px;
}

.sidebar-links li {
    margin-bottom: 15px;
}

.sidebar-links li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.sidebar-account .cta-button {
    margin-top: auto;
}


/* Responsive Styles */

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .account {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}


/* Hero Section Styles */

.hero-section {
    background-color: #ffcc33;
    /* Bright yellow background */
    padding: 20px 10%;
    /* Add padding and center content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
}

.text-content {
    display: flex;
    align-items: center;
    color: #003366;
    /* Dark blue text */
    font-size: 18px;
    font-weight: 500;
}

.text-content .hero-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.text-content p {
    line-height: 1.5;
}

.input-group {
    display: flex;
    align-items: center;
}

.postcode-input {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    /* Rounded corners on the left */
    font-size: 16px;
    width: 200px;
}

.quote-button {
    background-color: #003366;
    /* Dark blue background */
    color: #fff;
    /* White text */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0 5px 5px 0;
    /* Rounded corners on the right */
    cursor: pointer;
}

.quote-button:hover {
    background-color: #002244;
    /* Slightly darker blue on hover */
}

.error-message {
    margin-top: 10px;
    font-size: 14px;
    color: #ff6600;
    /* Orange color for error message */
    display: flex;
    align-items: center;
}

.error-message span {
    margin-left: 5px;
}


/* Responsive Design */


/* Hero Section Styles */

.hero-section {
    background-color: #ffcc33;
    /* Bright yellow background */
    padding: 20px 10%;
    /* Add padding and center content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
}

.text-content {
    display: flex;
    align-items: center;
    color: #003366;
    /* Dark blue text */
    font-size: 18px;
    font-weight: 500;
}

.text-content .hero-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.text-content p {
    line-height: 1.5;
}

.input-group {
    display: flex;
    align-items: center;
}

.postcode-input {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    /* Rounded corners on the left */
    font-size: 16px;
    width: 200px;
}

.quote-button {
    background-color: #003366;
    /* Dark blue background */
    color: #fff;
    /* White text */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0 5px 5px 0;
    /* Rounded corners on the right */
    cursor: pointer;
}

.quote-button:hover {
    background-color: #002244;
    /* Slightly darker blue on hover */
}

.error-message {
    margin-top: 10px;
    font-size: 14px;
    color: #ff6600;
    /* Orange color for error message */
    display: flex;
    align-items: center;
}

.error-message span {
    margin-left: 5px;
}


/* Responsive Styles */

@media screen and (max-width: 1024px) {
    .hero-section {
        padding: 20px 5%;
    }
    .hero-content {
        flex-direction: column;
        align-items: center;
    }
    .text-content {
        text-align: center;
        font-size: 16px;
    }
    .input-group {
        margin-top: 20px;
    }
    .postcode-input {
        width: 100%;
        font-size: 14px;
        padding: 8px 12px;
    }
    .quote-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 20px 5%;
    }
    .hero-content {
        flex-direction: column;
        align-items: center;
    }
    .text-content {
        text-align: center;
        font-size: 14px;
        margin-bottom: 20px;
    }
    .input-group {
        width: 100%;
        display: block;
        text-align: center;
    }
    .postcode-input {
        width: 80%;
        font-size: 14px;
        padding: 8px 12px;
        margin-bottom: 10px;
    }
    .quote-button {
        width: 80%;
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 20px 3%;
    }
    .text-content {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .postcode-input {
        width: 90%;
        font-size: 14px;
        padding: 8px 12px;
    }
    .quote-button {
        width: 90%;
        font-size: 14px;
        padding: 10px 20px;
    }
}


/* Hero Lower Section */

.hero-lower-section {
    background: linear-gradient(90deg, #0066cc, #3399ff);
    /* Blue gradient background */
    padding: 40px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-lower-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    height: 325px;
}

.hero-text {
    color: #fff !important;
    /* White text color */
    max-width: 50%;
    /* Limit text width */
}

.hero-text h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.5;
    color: white;
    margin-bottom: 15px;
}

.hero-text .cta-button {
    background-color: #004ECC;
    /* Dark blue button */
    color: #fff;
    /* White text */
    border: none;
    padding: 15px 2px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.hero-text .cta-button:hover {
    background-color: #002244;
    /* Slightly darker on hover */
}

.hero-image {
    max-width: 45%;
    /* Restrict image size */
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    /* Optional: Add a slight rounding to the image */
}


/* Responsive Design */


/* Hero Lower Section */

.hero-lower-section {
    background: linear-gradient(90deg, #0066cc, #3399ff);
    /* Blue gradient background */
    padding: 40px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-lower-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    height: 325px;
}

.hero-text {
    color: #fff !important;
    /* White text color */
    max-width: 50%;
    /* Limit text width */
}

.hero-text h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.5;
    color: white;
    margin-bottom: 15px;
}

.hero-text .cta-button {
    background-color: #004ECC;
    /* Dark blue button */
    color: #fff;
    /* White text */
    border: none;
    padding: 15px 2px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.hero-text .cta-button:hover {
    background-color: #002244;
    /* Slightly darker on hover */
}

.hero-image {
    max-width: 45%;
    /* Restrict image size */
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    /* Optional: Add a slight rounding to the image */
}


/* Responsive Styles */

@media screen and (max-width: 1024px) {
    .hero-lower-section {
        padding: 40px 5%;
    }
    .hero-lower-content {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .hero-text p {
        font-size: 16px;
    }
    .hero-image {
        max-width: 80%;
        margin-top: 20px;
    }
    .hero-text .cta-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-lower-section {
        padding: 30px 3%;
    }
    .hero-lower-content {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 24px;
    }
    .hero-text p {
        font-size: 14px;
    }
    .hero-image {
        max-width: 80%;
        margin-top: 20px;
    }
    .hero-text .cta-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-lower-section {
        padding: 20px 3%;
    }
    .hero-text h1 {
        font-size: 22px;
    }
    .hero-text p {
        font-size: 14px;
    }
    .hero-image {
        max-width: 80%;
        margin-top: 20px;
    }
    .hero-text .cta-button {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
    }
}


/* cta-banner  */

.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 95%;
    margin: 0 auto;
    background-color: #f4faff;
}

.cta-content {
    max-width: 70%;
}

.cta-content h2 {
    font-size: 1.4rem;
    color: #003a9b;
    /* Blue color */
    margin: 0;
}

.cta-content h2 .highlight {
    color: #003a9b;
}

.cta-content h2 strong {
    color: #000;
}

.cta-content p {
    margin-top: 8px;
    font-size: 1rem;
    color: #666;
}

.cta-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-image {
    max-width: 150px;
}

.cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #003a9b;
    /* Blue background */
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0050d4;
    /* Slightly darker blue */
}


/* Responsive Styles */

@media screen and (max-width: 1024px) {
    .cta-banner {
        flex-direction: column;
        align-items: center;
        padding: 20px 10%;
    }
    .cta-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .cta-content h2 {
        font-size: 1.2rem;
    }
    .cta-content p {
        font-size: 0.9rem;
    }
    .cta-action {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .cta-image {
        max-width: 120px;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        align-items: center;
        padding: 20px 5%;
    }
    .cta-content {
        max-width: 100%;
        text-align: center;
    }
    .cta-content h2 {
        font-size: 1.1rem;
    }
    .cta-content p {
        font-size: 0.85rem;
    }
    .cta-action {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cta-image {
        max-width: 100px;
    }
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-banner {
        flex-direction: column;
        align-items: center;
        padding: 15px 5%;
    }
    .cta-content h2 {
        font-size: 1rem;
    }
    .cta-content p {
        font-size: 0.8rem;
    }
    .cta-action {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .cta-image {
        max-width: 90px;
    }
    .cta-button {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

.features-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.features-header h2 {
    font-size: 2rem;
    color: #003a9b;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 1rem;
    color: #666;
    margin: 0 auto 30px;
    max-width: 600px;
}

.features-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    border: 1px solid #003a9b;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.card:hover {
    background-color: #f4faff;
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.card-icon svg {
    width: 60px;
    height: 60px;
    fill: #003a9b;
}

.card h3 {
    font-size: 1rem;
    color: #003a9b;
}

.card h3:hover {
    text-decoration: underline;
}

.features-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.features-footer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.features-footer .ratings img {
    height: 20px;
    margin-right: 5px;
}

.features-footer strong {
    color: #003a9b;
    font-weight: bold;
}


/* Section Styles */

.services-section {
    padding: 50px 20px;
    /* background-color: #f9f9f9; */
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.services-section h2 {
    font-size: 2rem;
    color: #002d72;
    margin-bottom: 30px;
}


/* Card Wrapper */

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}


/* Individual Card */

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-height: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.service-icon {
    background-color: #006FC9;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    width: 40px;
    height: auto;
}

.service-card h3 {
    font-size: 1.1rem;
    color: #002d72;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}


/* Button Styles */

.service-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #003399;
    border-radius: 5px;
    border: 1px solid;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: white;
    color: #003399;
    border-color: #003399;
}


/* Responsive Styles */


/* For screens wider than 1200px (Desktop) */

@media screen and (min-width: 1200px) {
    .services-section {
        max-width: 80%;
    }
    .services-wrapper {
        grid-template-columns: repeat(4, 1fr);
        /* 4 cards in a row */
    }
}


/* For tablets (between 768px and 1199px) */

@media screen and (max-width: 1199px) and (min-width: 768px) {
    .services-section {
        max-width: 90%;
    }
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards in a row */
    }
    .service-card h3 {
        font-size: 1rem;
    }
    .service-card p {
        font-size: 0.9rem;
    }
}


/* For mobile screens (below 768px) */

@media screen and (max-width: 767px) {
    .services-section {
        padding: 30px 15px;
        max-width: 95%;
    }
    .services-wrapper {
        grid-template-columns: 1fr;
        /* 1 card in a row */
    }
    .service-card h3 {
        font-size: 1rem;
    }
    .service-card p {
        font-size: 0.9rem;
    }
    .service-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}


/* why choose us  */

.why-choose-us {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #002d72;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 20px;
    width: 80%;
    margin: 0 auto;
    align-items: start;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

.feature-item img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #002d72;
    margin: 10px 0;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}


/* Mobile Responsiveness */

@media (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 1.5rem;
    }
    .features {
        width: 50%;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        width: 65%;
    }
    .feature-item img {
        width: 120px;
        margin-bottom: 10px;
    }
    .feature-item h3 {
        font-size: 1.1rem;
    }
    .feature-item p {
        font-size: 0.95rem;
    }
}


/* Extra Small Screen (Mobile First) */

@media (max-width: 480px) {
    .why-choose-us h2 {
        font-size: 1.2rem;
    }
    .features {
        width: 100%;
    }
    .feature-item {
        padding: 10px;
    }
    .feature-item img {
        width: 100px;
    }
    .feature-item h3 {
        font-size: 1rem;
    }
    .feature-item p {
        font-size: 0.9rem;
    }
}

.trusted-trader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content {
    max-width: 600px;
}

h2 {
    font-size: 32px;
    color: #003399;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #003399;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #002266;
}

.image-container {
    max-width: 300px;
}

.image-container img {
    width: 100%;
    height: auto;
}


/* Responsive Styling */

@media screen and (max-width: 768px) {
    .trusted-trader {
        flex-direction: column;
        /* Stack content and image on smaller screens */
        text-align: center;
        /* Center-align text for smaller screens */
        padding: 20px;
    }
    .content {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .image-container {
        max-width: 100%;
        margin-top: 20px;
        /* Add space between text and image */
    }
    h2 {
        font-size: 24px;
        /* Adjust heading size */
    }
    p {
        font-size: 14px;
        /* Adjust paragraph font size */
    }
    .cta-button {
        font-size: 14px;
        /* Adjust button font size */
    }
}

.carousel-section {
    text-align: center;
    height: auto;
    color: #fff;
    padding: 40px 20px;
    background-color: #00A33E;
    /* Ensure green background for section */
}

.carousel-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    font-family: poppins;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track-container ul li {
    list-style: none;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-card {
    background-color: #fff;
    color: #333;
    height: 350px;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    flex: 0 0 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.carousel-card img {
    max-width: 100%;
    min-height: 250px;
    border-radius: 8px 8px 0 0;
}

.carousel-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.three-steps-section {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
    width: 70%;
    margin: 0 auto;
    color: #002d62;
}

.three-steps-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.step {
    text-align: center;
    flex: 1;
}

.step .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
}

.step .icon img {
    max-width: 100%;
    height: auto;
}

.step p {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.cta-container {
    margin-top: 20px;
}

.call-button {
    display: inline-block;
    background-color: red !important;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
}

.call-button:hover {
    background-color: #097a35;
}

.request-callback {
    font-size: 14px;
    color: #002d62;
    text-decoration: underline;
}

.request-callback:hover {
    color: #004a9c;
}

.carousel-card a {
    color: #003399;
    text-decoration: none;
    font-weight: bold;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 40px;
}

.carousel-nav.prev {
    left: 10px;
    /* width: 100px; */
}

.carousel-nav.next {
    right: 10px;
}

.carousel-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Responsive Design */

@media (max-width: 768px) {
    .carousel-section h2 {
        font-size: 24px;
    }
    .carousel-container {
        padding: 20px;
    }
    .carousel-card {
        flex: 0 0 100%;
        margin: 10px 0;
        height: 450px;
    }
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .carousel-section h2 {
        font-size: 20px;
    }
    .carousel-container {
        padding: 10px;
    }
    .carousel-card {
        flex: 0 0 100%;
        margin: 5px 0;
    }
    .carousel-nav {
        width: 30px;
        height: 30px;
    }
}


/* Section Styles */

.why-metro-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.why-metro-section h2 {
    font-size: 2rem;
    color: #003399;
    margin-bottom: 20px;
}

.why-metro-section p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}


/* Card Wrapper */

.why-metro-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Individual Card */

.why-metro-card {
    background: none;
    text-align: center;
    flex: 1;
    max-width: 300px;
    margin: 10px;
}

.icon-circle {
    width: 300px;
    height: 300px;
    background-color: #006fc9;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon-circle img {
    width: 100px;
    height: auto;
}

.why-metro-card h3 {
    font-size: 1.1rem;
    color: white;
    margin-top: 15px;
    max-width: 180px;
}


/* Responsive Design */

.additional-info {
    background-color: #f8f9fa;
    /* Light gray background */
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.additional-info .container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 24px;
    font-weight: 600;
    color: #005aa7;
    /* Dark blue */
    margin-bottom: 20px;
}

.additional-info .info-list {
    list-style-type: decimal;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #333;
    /* Text color */
}

.additional-info .info-list li {
    margin-bottom: 20px;
}

.additional-info .info-list a {
    color: #005aa7;
    /* Link color */
    text-decoration: none;
}

.additional-info .info-list a:hover {
    text-decoration: underline;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .additional-info h2 {
        font-size: 20px;
    }
    .additional-info .info-list {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .additional-info h2 {
        font-size: 18px;
    }
    .additional-info .info-list li {
        margin-bottom: 15px;
    }
    .additional-info .info-list a {
        font-size: 14px;
    }
}


/* Footer  */

.outer-footer {
    background-color: #002d74;
    color: #ffffff;
}

.footer {
    padding: 40px 20px;
    /* max-width: 1200px; */
    width: 80%;
    margin: 0 auto;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    text-decoration: none;
    color: #dad9d9;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    margin-right: 20px;
}

.footer-column:last-child {
    margin-right: 0;
}

.divider {
    border: 0;
    height: 1px;
    background: #ffffff;
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-app,
.footer-support,
.footer-awards {
    flex: 1;
    text-align: center;
}

.footer-app .app-icons img,
.footer-app .social-icons img {
    max-height: 40px;
    margin: 5px;
}

.footer-support img,
.footer-awards img {
    max-width: 80px;
    margin-bottom: 10px;
}

.footer-awards p {
    font-size: 14px;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
}

.footer-copyright img {
    max-height: 50px;
    margin-right: 5px;
}

.footer-copyright p {
    font-size: 14px;
    display: inline;
    color: white;
}


/* Responsive Styles */

@media (max-width: 768px) {
    /* Footer top layout for smaller screens */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        margin-right: 0;
        margin-bottom: 20px;
    }
    /* Footer bottom section for mobile */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-app,
    .footer-support,
    .footer-awards {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer h3 {
        font-size: 16px;
    }
    .footer ul li {
        font-size: 14px;
    }
    .footer-copyright img {
        max-height: 40px;
    }
    .footer-copyright p {
        font-size: 12px;
    }
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

:root {
    /* //....... Color ........// */
    --primary-color: #ff3c78;
    --light-black: rgba(0, 0, 0, 0.89);
    --black: #000;
    --white: #fff;
    --grey: #aaa;
}

.contact {
    margin-top: 45px;
}

.form-details select {
    background-color: #f9f9f9;
    appearance: none;
    /* Removes default styling in most browsers */
    cursor: pointer;
    padding: 10px 40px;
}

.form-details button {
    padding: 10px 50px !important;
    cursor: pointer;
}

.form-details select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.form {
    display: flex;
    justify-content: space-between;
    margin: 80px 0;
}

.form .form-txt {
    flex-basis: 48%;
}

.form .form-txt h1 {
    font-weight: 600;
    /* color: var(--black); */
    color: #002F87 !important;
    font-size: 40px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    /* color: var(--light-black); */
}

.form .form-txt span {
    color: var(--light-black);
    font-size: 14px;
}

.form .form-txt h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
    color: var(--light-black);
}

.form .form-txt p {
    color: var(--light-black);
    font-size: 14px;
}

.form .form-details {
    flex-basis: 48%;
}

.form .form-details input[type="text"],
.form .form-details input[type="email"] {
    padding: 15px 20px;
    color: var(--black);
    outline: none;
    border: 1px solid var(--grey);
    margin: 12px 15px;
    font-size: 14px;
}

.form .form-details textarea {
    padding: 15px 20px;
    margin: 0 15px;
    color: var(--black);
    outline: none;
    border: 1px solid var(--grey);
    font-size: 14px;
    resize: none;
}

.form .form-details button {
    padding: 15px 25px;
    color: var(--white);
    font-weight: 500;
    background: var(--black);
    outline: none;
    border: none;
    margin: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
}

@media (max-width: 500px) {
    .form {
        display: flex;
        flex-direction: column;
    }
    .form .form-details button {
        margin-left: 0;
    }
    .form .form-details input[type="text"],
    .form .form-details input[type="email"],
    .form .form-details textarea {
        width: 100%;
        margin-left: 0;
    }
    .form .form-details input[type="text"] {
        margin-bottom: 0px;
    }
}

@media(min-width: 501px) and (max-width: 768px) {
    .form {
        display: flex;
        flex-direction: column;
    }
    .form .form-details button {
        margin-left: 0;
    }
    .form .form-details input[type="text"],
    .form .form-details input[type="email"],
    .form .form-details textarea {
        width: 100%;
        margin-left: 0;
    }
    .form .form-details input[type="text"] {
        margin-bottom: 0px;
    }
}