body {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    /* background: #000; */
}

h1,
h2,
h3,
.navbar,
.btn {
    font-family: 'Poppins', sans-serif;
}

.text-danger{
    color: #1453a2 !important;
}
.btn-danger , .bg-danger{
    background-color: #1453a2 !important;
}

.btn-danger{
    border-color: #fff ;
}

.btn-danger:hover{
    border-color: #fff ;
    background-color: #3668a4 !important;
}

body {
    /* background-color: #121212; */
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

.service-area .small-text {
    color: #1453a2;
    /* Use the CSS variable for consistency */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    /* Added for emphasis, consistent with previous examples */
}

.service-area h2 {
    margin-bottom: 40px;
    color: #212529;
    /* Changed to a dark gray for better contrast on light theme */
    font-family: 'Montserrat', sans-serif;
    /* Assuming you want a heading font */
    font-weight: 800;
    /* Assuming you want a bold heading */
}

.service-cards {
    display: flex;
    gap: 20px;
    /* Consistent gap between cards */
    flex-wrap: wrap;
    justify-content: center;
}

.service-cards .card {
    background-color: #fff;
    padding: 20px;
    border-radius: 0.75rem;
    /* Slightly more rounded corners, consistent with previous example */
    /* Removed conflicting fixed widths. Using flex-basis for responsive sizing. */
    flex: 1 1 calc(25% - 20px);
    /* Allows 4 cards per row with 20px gap, adjusts for smaller screens */
    max-width: 300px;
    /* Maximum width for individual cards */
    min-height: 250px;
    /* Use min-height instead of fixed height to prevent content overflow */
    transition: all 0.3s ease;
    /* Smooth transition for all changes */
    cursor: pointer;
    text-align: left;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    border: 1px solid #e9ecef;
    /* Added a light border */
    display: flex;
    /* Use flexbox for internal layout */
    flex-direction: column;
    /* Stack content vertically */
    justify-content: space-between;
    /* Distribute space */
}

.service-cards .card:hover,
.service-cards .card.active {
    background-color: #1453a2;
    /* Background becomes red on hover/active */
    color: #fff;
    /* Text becomes white on hover/active */
    transform: translateY(-5px);
    /* Slight lift effect */
    box-shadow: 0 1rem 2rem rgba(var(--primary-red-rgb), 0.2);
    /* Red-tinted shadow */
    border-color: var(--primary-red);
    /* Red border on hover/active */
}

/* Ensure text elements within the card also change color on hover/active */
.service-cards .card:hover h5,
.service-cards .card.active h5,
.service-cards .card:hover p,
.service-cards .card.active p {
    color: #fff;
    /* Text color changes to white */
}

.service-cards .card:hover .icon,
.service-cards .card.active .icon {
    filter: brightness(0) invert(1);
    /* Makes icon white */
}


.service-cards .card .icon {
    /* Increased size for icons/images to be visible and impactful */
    height: 60px;
    /* Consistent height for the icon container */
    width: 60px;
    /* Consistent width for the icon container */
    margin-bottom: 15px;
    display: flex;
    /* To center content within the icon div */
    justify-content: center;
    align-items: center;
    /* Removed fixed width/height that was too small */
}

.service-cards .card .icon img {
    max-width: 100%;
    /* Ensure image scales within its container */
    max-height: 100%;
    /* Ensure image scales within its container */
    transition: transform 0.5s ease;
    /* Smooth transition for image rotation */
}

.service-cards .card h5 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    /* Apply heading font */
    font-weight: 700;
    /* Bold for titles */
    color: #1453a2;
    /* Default dark color */
    transition: color 0.3s ease;
    /* Smooth transition for color change */
}

.service-cards .card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #6c757d;
    /* Default muted dark color */
    flex-grow: 1;
    /* Allows paragraph to take available space */
    transition: color 0.3s ease;
    /* Smooth transition for color change */
}

/* Styling for the arrow icon */
.service-cards .card .arrow-link {
    display: inline-block;
    /* Allows transform */
    margin-top: 1rem;
    /* Space from paragraph */
    color: var(--primary-red);
    /* Default arrow color */
    font-size: 1.5rem;
    /* Size of the arrow icon */
    transition: transform 0.5s ease, color 0.3s ease;
    /* Smooth transition for arrow icon */
}

.service-cards .card i {
    /* Initial rotation for the arrow icon */
    transform: rotate(-135deg);
    /* Use transform property directly */
    color: #212529;
    /* Default color for the arrow icon */
    transition: transform 0.5s ease, color 0.3s ease;
    /* Smooth transition for rotation and color */
}

.service-cards .card:hover i,
.service-cards .card.active i {
    transform: rotate(-90deg) !important;
    /* Apply rotation on hover/active, !important if needed to override inline or other rules */
    color: #fff;
    /* Icon color becomes white on hover/active */
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .service-cards .card {
        flex: 1 1 calc(50% - 15px);
        /* 2 cards per row on medium screens */
    }
}

@media (max-width: 576px) {
    .service-cards .card {
        flex: 1 1 100%;
        /* 1 card per row on small screens */
    }
}


/* about */
:root {
    --primary-red: #1453a2;
    /* Bootstrap's default danger red */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    /* Light background */
    color: #212529;
    line-height: 1.6;
}

.feature-section {
    background-color: #f8f9fa;
    /* Light background as seen in image */
    padding: 5rem 0;
}

.left-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Adjust as needed */
    margin-bottom: 20px;
    /* Space between main image and TV */
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-box {
    position: absolute;
    top: 5%;
    /* Adjust position as seen in image */
    left: -6%;
    background-color: var(--primary-red);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
    /* Ensure it's above the image */
    transform: translateX(-20%);
    /* Adjust to overlap left as in image */
    min-width: 180px;
    /* Ensure content fits */
}

.experience-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.experience-box p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.star-rating {
    font-size: 1.2rem;
    color: #FFD700;
    /* Gold color for stars */
    margin-bottom: 5px;
}

.trustpilot-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tv-screen-image {
    width: 80%;
    /* Adjust size relative to container */
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    position: absolute;
    bottom: -30px;
    /* Adjust to overlap main image slightly */
    left: 50%;
    /* Adjust position */
    z-index: 10;
    /* Ensure it's above the main image */
}

.right-content {
    padding: 20px;
}

.right-content .small-heading {
    font-size: 0.85rem;
    color: #6c757d;
    /* Muted text color */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.right-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 20px;
}

.right-content p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-item .icon-circle {
    background-color: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.feature-item .text-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #212529;
    margin-bottom: 5px;
}

.feature-item .text-content p {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0;
}

.bullet-points ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.bullet-points ul li {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.bullet-points ul li::before {
    content: "\f00c";
    /* Font Awesome checkmark icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-red);
    position: absolute;
    left: 0;
    top: 2px;
}

.team-avatars {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.team-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -10px;
    /* Overlap effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.team-avatars .avatar:first-child {
    margin-left: 0;
}

.team-avatars .text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 20px;
    /* Space from avatars */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experience-box {
        position: static;
        /* Remove absolute positioning on small screens */
        transform: translateX(0);
        margin-bottom: 20px;
        width: 100%;
    }

    .tv-screen-image {
        position: static;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .main-image-container {
        max-width: 100%;
    }
}

/* package */
.package-section {
    /* background-color: #f8f9fa; */
    /* Light background as seen in image */
    padding: 5rem 0;
    overflow: hidden;
    /* To handle the overlapping image */
}

.package-content {
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    padding: 3rem;
    position: relative;
    z-index: 1;
    /* Ensure content is above the background image */
}

.package-header .small-heading {
    font-size: 0.85rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.package-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #212529;
    margin-bottom: 30px;
}

.speed-options {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.speed-button {
    background-color: #e9ecef;
    /* Light gray for inactive buttons */
    color: #495057;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.speed-button.active {
    background-color: var(--primary-red);
    color: #fff;
}

.pricing-details {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}

.price-box {
    background-color: var(--primary-red);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.price-box small {
    font-size: 0.9rem;
    display: block;
    font-weight: 400;
    margin-top: 5px;
}

.installation-fee {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #212529;
}

.installation-fee small {
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
    color: #6c757d;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list ul li {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.benefits-list ul li::before {
    content: "\f00c";
    /* Font Awesome checkmark icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-red);
    position: absolute;
    left: 0;
    top: 2px;
}

.website-link {
    text-align: center;
    margin-top: 40px;
}

.website-link a {
    font-size: 1.1rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.website-link a:hover {
    color: #1453a2;
    /* Darker red on hover */
}

.right-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.person-with-router-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    /* Adjust as needed */
    position: absolute;
    right: -10%;
    /* Adjust to overlap the content box as in the image */
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    /* Ensure it's behind the content box */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .person-with-router-image {
        position: static;
        transform: translateY(0);
        margin-top: 20px;
        max-width: 100%;
    }

    .package-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .speed-options {
        flex-wrap: wrap;
        justify-content: center;
    }

    .speed-button {
        flex: 1 1 auto;
    }

    .pricing-details {
        flex-direction: column;
        align-items: center;
    }

    .price-box {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .package-header h2 {
        font-size: 2rem;
    }
}

/* pricing */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .small-heading {
    font-size: 0.85rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #212529;
}

.pricing-cards-container {
    display: flex;
    flex-direction: column;
    /* Stack cards vertically */
    gap: 20px;
    /* Space between cards */
    align-items: center;
    /* Center cards horizontally */
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    /* Light border for default cards */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 950px;
    /* Increased max-width for wider cards to fit content horizontally */
    display: flex;
    /* Use flexbox for horizontal layout */
    align-items: center;
    justify-content: space-between;
    /* Distribute space between sections */
    text-align: left;
    position: relative;
    min-height: 150px;
    /* Ensure enough height for content */
}

.pricing-card.active {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(var(--primary-red-rgb), 0.3);
}

.pricing-card.active .plan-details h5,
.pricing-card.active .plan-details p,
.pricing-card.active .price,
.pricing-card.active .features-list li {
    color: #fff;
}

.pricing-card .plan-details {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Prevent shrinking */
    margin-right: 20px;
    /* Space from next element */
}

.pricing-card .plan-details .icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-right: 15px;
    transition: color 0.3s ease;
}

.pricing-card.active .plan-details .icon {
    color: #fff;
}

.pricing-card .plan-details h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.pricing-card .plan-details p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.pricing-card .toggle-and-price {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Prevent shrinking */
    margin-left: auto;
    /* Push towards center/right */
    margin-right: 20px;
    /* Space from features list */
}

.pricing-card .toggle-switch {
    display: flex;
    align-items: center;
    margin-right: 15px;
    /* Space between toggle and price */
}

.pricing-card .toggle-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
    margin-left: 0;
    cursor: pointer;
    background-color: #e9ecef;
    border-color: #e9ecef;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pricing-card .toggle-switch .form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.pricing-card .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.pricing-card .price small {
    font-size: 0.8rem;
    font-weight: 400;
    display: block;
    color: #6c757d;
    transition: color 0.3s ease;
}

.pricing-card.active .price small {
    color: #fff;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Remove default margins */
    display: flex;
    flex-direction: column;
    /* Keep list items stacked vertically */
    flex-shrink: 0;
    /* Prevent shrinking */
    max-width: 300px;
    /* Adjust as needed for the right section */
}

.pricing-card .features-list li {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 5px;
    /* Reduced margin for tighter list */
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
    white-space: nowrap;
    /* Keep items on a single line if possible */
}

.pricing-card .features-list li:last-child {
    margin-bottom: 0;
}

.pricing-card .features-list li::before {
    content: "\f00c";
    /* Checkmark icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-red);
    position: absolute;
    left: 0;
    top: 2px;
    transition: color 0.3s ease;
}

.pricing-card.active .features-list li::before {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-card {
        flex-wrap: wrap;
        /* Allow items to wrap */
        justify-content: center;
        padding: 20px;
        max-width: 700px;
        /* Adjust max-width for better fit on tablets */
    }

    .pricing-card .plan-details,
    .pricing-card .toggle-and-price,
    .pricing-card .features-list {
        width: 100%;
        /* Take full width on wrap */
        justify-content: center;
        /* Center content when wrapped */
        margin: 0;
        /* Reset margins */
        margin-bottom: 15px;
        /* Add bottom margin for spacing */
    }

    .pricing-card .toggle-and-price {
        flex-direction: column;
        /* Stack toggle and price vertically */
        align-items: center;
    }

    .pricing-card .toggle-switch {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .pricing-card .price {
        margin-left: 0;
    }

    .pricing-card .features-list {
        text-align: left;
        /* Align list items to left */
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pricing-card .plan-details h5 {
        font-size: 1.1rem;
    }

    .pricing-card .price {
        font-size: 1.8rem;
    }
}

/* faq */
/* FAQ Section Specific Styles */
.faq-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.faq-left-content {
    padding-right: 30px;
}

.faq-left-content .small-heading {
    font-size: 0.85rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.faq-left-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 20px;
}

.faq-left-content p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 30px;
}

.faq-left-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.faq-left-content ul li {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.faq-left-content ul li::before {
    content: "\f00c";
    /* Checkmark icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-red);
    position: absolute;
    left: 0;
    top: 2px;
}

.percentage-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    color: #212529;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
}

.stat-item span {
    color: var(--primary-red);
    font-size: 2.5rem;
}

.stat-item small {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    color: #6c757d;
}

.stat-equation {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin: 0 10px;
}

.faq-right-content .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-right-content .accordion-button {
    background-color: #fff;
    color: #212529;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-right-content .accordion-button:not(.collapsed) {
    background-color: var(--primary-red);
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.faq-right-content .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-red);
}

.faq-right-content .accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054";
    /* Chevron right icon */
    background-image: none;
    transform: rotate(90deg);
    transition: transform 0.2s ease-in-out;
    color: var(--primary-red);
    /* Default arrow color */
}

.faq-right-content .accordion-button:not(.collapsed)::after {
    transform: rotate(-90deg);
    /* Chevron down icon */
    color: #fff;
    /* White arrow when active */
}

.faq-right-content .accordion-body {
    padding: 20px;
    background-color: #fff;
    color: #495057;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-left-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .faq-left-content ul {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
        /* Constrain width for list on small screens */
    }

    .stat-item {
        flex: 1 1 45%;
        /* Two stats per row */
    }

    .stat-equation {
        flex: 1 1 100%;
        /* Equation takes full width */
        text-align: center;
        margin: 10px 0;
    }

    .faq-right-content .accordion-button {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .faq-left-content h2 {
        font-size: 2rem;
    }

    .stat-item {
        flex: 1 1 100%;
        /* One stat per row */
    }
}

/* review */
.testimonial-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .small-heading {
    font-size: 0.85rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #212529;
}

/* Slider Wrapper to control overall visible width and hide scrollbar */
.testimonial-slider-wrapper {
    /* Adjusted max-width to show approximately 3 cards + 2 gaps */
    max-width: 1170px;
    /* (380px * 3) + (30px * 2) = 1140 + 60 = 1200px. Using 1170px for better fit in container. */
    margin: 0 auto;
    /* Center the slider */
    overflow: hidden;
    /* Hide the default scrollbar */
}

.testimonial-cards-container {
    display: flex;
    flex-wrap: nowrap;
    /* Ensure cards stay in a single row */
    justify-content: flex-start;
    /* Align items to the start for scrolling */
    gap: 30px;
    /* Space between cards */
    overflow-x: scroll;
    /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory;
    /* Snap to card boundaries */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scroll-behavior: smooth;
    /* Smooth scroll when JS changes scroll position */
    padding-bottom: 20px;
    /* To prevent scrollbar from overlapping content if it appears */
}

/* Hide scrollbar for a cleaner look */
.testimonial-cards-container::-webkit-scrollbar {
    display: none;
}

.testimonial-cards-container {
    scrollbar-width: none;
    /* Firefox */
}


.testimonial-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    /* Prevent cards from shrinking */
    scroll-snap-align: start;
    /* Snap to the start of each card */
    width: 380px;
    /* Fixed width for each card */
    max-width: 380px;
    /* Ensure max-width is respected */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card img{
    background-color: #1453a2;
}

.testimonial-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #000;
    /* Red border around avatar */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #212529;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-card .client-info {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pagination dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 10px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    background-color: #dee2e6;
    /* Light gray for inactive dots */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dot.active {
    background-color: var(--primary-red);
    /* Red for active dot */
}

/* Responsive adjustments */
@media (max-width: 1200px) {

    /* Adjust wrapper for medium-large screens */
    .testimonial-slider-wrapper {
        max-width: 790px;
        /* Approx. 2 cards + 1 gap: (380*2) + 30 = 790px */
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
        /* Take full width of its container */
        max-width: 380px;
        /* Keep max-width for individual card */
    }

    .testimonial-slider-wrapper {
        max-width: 380px;
        /* Show 1 card at a time on smaller screens */
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonial-slider-wrapper {
        max-width: 90%;
        /* Use percentage for better mobile responsiveness */
    }
}

/* News & Blog Section Styles */
.news-blog-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.news-blog-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    /* For the button positioning */
}

.news-blog-header .small-heading {
    font-size: 0.85rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.news-blog-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 20px;
}

.news-blog-header .btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: absolute;
    /* Position button */
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.news-blog-header .btn-primary:hover {
    background-color: #1453a2;
    border-color: #1453a2;
}

.news-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.33% - 30px);
    max-width: 380px;
    overflow: hidden;
    /* Ensures image corners are rounded with card */
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.news-card .card-img-top {
    width: 100%;
    height: 200px;
    /* Fixed height for images */
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news-card .card-content {
    padding: 20px;
    position: relative;
}

.news-card .card-tag {
    background-color: var(--primary-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: -15px;
    /* Adjust to overlap image slightly */
    left: 20px;
    text-transform: uppercase;
}

.news-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #212529;
    margin-top: 15px;
    /* Space for the tag */
    margin-bottom: 10px;
}

.news-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-card .read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-card .read-more:hover {
    color: #1453a2;
}

/* Pagination for news section (if needed, similar to testimonials) */
.news-pagination-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 10px;
}

.news-pagination-dot {
    width: 10px;
    height: 10px;
    background-color: #dee2e6;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.news-pagination-dot.active {
    background-color: var(--primary-red);
}

@media (max-width: 992px) {
    .news-card {
        flex: 1 1 calc(50% - 30px);
    }

    .news-blog-header .btn-primary {
        position: static;
        transform: translateY(0);
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .news-card {
        flex: 1 1 100%;
        max-width: 400px;
    }

    .news-blog-header h2 {
        font-size: 2rem;
    }
}

/* footer */
:root {
    --primary-red: #1453a2;
    /* Bootstrap's default danger red */
    --footer-bg: #212529;
    /* Dark background for footer */
    --footer-text: #adb5bd;
    /* Light gray text */
    --footer-heading: #f8f9fa;
    /* White headings */
}

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 60px;
    /* Adjust padding as needed */
    font-size: 0.9rem;
}

footer .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
}

footer p {
    margin-bottom: 15px;
}

footer .social-icons a {
    color: var(--footer-text);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--primary-red);
}

footer h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--footer-heading);
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary-red);
}

footer .contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

footer .contact-info p i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
    /* Align icon with text top */
}

.footer-bottom-bar {
    background-color: var(--primary-red);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 40px;
    /* Space from main footer content */
}

.footer-bottom-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.footer-bottom-bar .copyright {
    margin-bottom: 0;
}

.footer-bottom-bar .bottom-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer {
        padding-top: 40px;
    }

    footer .col-lg-3,
    footer .col-lg-2 {
        margin-bottom: 30px;
    }

    .footer-bottom-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-bar .copyright {
        margin-bottom: 10px;
    }
}

/* Breadcrumb Section Styling */
.breadcrumb-section {
    background-color: #d9feff;
    /* White background */
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
    /* Subtle border at the bottom */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    /* Light shadow */
}

.breadcrumb {
    margin-bottom: 0;
    /* Remove default Bootstrap margin */
    background-color: transparent;
    /* Ensure transparent background */
}

.breadcrumb-item {
    font-size: 0.95rem;
    color: #6c757d;
    /* Muted text color for inactive items */
}

.breadcrumb-item a {
    color: #495057;
    /* Darker text for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
    /* Red on hover */
}

.breadcrumb-item.active {
    color: var(--primary-red);
    /* Active item is red */
    font-weight: 600;
    /* Bold for active item */
}

/* Adjust separator color if needed (Bootstrap handles this by default for light themes) */
.breadcrumb-item+.breadcrumb-item::before {
    color: #adb5bd;
    /* Light gray separator */
}

/* Example Content below breadcrumb */
.content-area {
    padding: 3rem 0;
    text-align: center;
}

.info-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    font-family: 'Segoe UI', sans-serif;
}

.info-card {
    display: flex;
    width: 600px;
    height: 250px;
    align-items: flex-start;
    background-color: #f0f4f8;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.info-card:hover {
    background-color: var(--primary-red);
}

.info-card:hover .text-block h4,
.info-card:hover .text-block p,
.info-card:hover .icon-box {
    color: #fff;
}

.icon-box {
    font-size: 30px;
    color: var(--primary-red);
    margin-right: 20px;
    margin-top: 5px;
}

.text-block {
    flex: 1;
}

.text-block h4 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--primary-red);
}

.text-block p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

.contact-form-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
}

.contact-form-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.2rem;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-red-rgb), 0.25);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    /* Allow vertical resizing */
}

.btn-submit {
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(var(--primary-red-rgb), 0.3);
}

.btn-submit:hover {
    background-color: #1453a2;
    /* Darker red on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(var(--primary-red-rgb), 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
    /* Hidden by default */
    opacity: 0;
    /* Start with opacity 0 for fade-in */
    transition: opacity 0.5s ease-in-out;
    /* Smooth fade transition */
}

.form-message.show {
    opacity: 1;
    /* Show with opacity 1 */
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .contact-form-container {
        padding: 25px;
    }

    .contact-form-container h2 {
        font-size: 1.8rem;
    }

    .form-control,
    .btn-submit {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

.page-header {
    background: url('assets/4.png') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* color: #fff; */
    position: relative;
}

.page-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title i {
    font-size: 2rem;
    color: #1453a2;
}

.section-title h2 {
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 10px;
}

.section-title p {
    color: #000;
    max-width: 700px;
    margin: 10px auto 0;
}

.service-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 3rem;
    color: #1453a2;
}