
    @import url('../../../cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Segoe UI', sans-serif;
    }

    .navbar {
        background-color: #bf1e2d;
    }

    .navbar-brand, .nav-link {
        color: #fff !important;
    }

    .hero {
    color: black;
    padding: 50px 0;
    position: relative;
    min-height: 70vh;
    background-color: #FFDEDE;
    background-size: cover;
    background-position: center;
    }

    .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    }

    .hero .container {
    position: relative;
    z-index: 2;
    }

    .hero h1,
    .hero h2,
    .hero p {
    color: black;
    }

    .card {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero .row {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .card {
        margin-top: 30px;
    }
    }

    /* Base Styles */
    .about-img {
    border-radius: 15px;
    width: 100%;
    height: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .tagline {
    font-size: 1.25rem;
    color: #555;
    }

    .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    color: #6c757d; /* Optional - matches Bootstrap's text-muted */
    }

/* Responsive Tweaks */
    @media (max-width: 767px) {
    #about .row {
        text-align: center;
    }

    #about .col-md-6 {
        margin-bottom: 30px;
    }

    .tagline {
        font-size: 1rem;
    }

    #about p {
        font-size: 16px;
        line-height: 2.1;
        padding: 0 10px;
        text-align: justify;
    }
    }

    @media (min-width: 768px) and (max-width: 991px) {
    #about p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .tagline {
        font-size: 1.15rem;
    }
    }

    .section-padding {
        padding: 60px 0;
        min-height: 70vh; /* Ensures every section fills screen height */
        display: flex;
        background-color: #FFDEDE;
        align-items: center;
    }

    /* Service Section Styling */
    #services .card-img-top {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    }

    #services .card {
    border-radius: 15px;
    transition: transform 0.3s ease;
    }

    #services .card:hover {
    transform: translateY(-5px);
    }

    #services .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    }

    #services .card-text {
    font-size: 1rem;
    color: #555;
    }

    /* Brand List */
    .brand-list span {
    background-color: #f0f0f0;
    margin: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.95rem;
    }

    /* Mobile View Adjustments */
    @media (max-width: 767px) {
    #services h2 {
        font-size: 1.5rem;
    }

    #services .card-title {
        font-size: 1.1rem;
    }

    #services .card-text {
        font-size: 0.95rem;
    }

    #services .card-img-top {
        height: 180px;
    }

    .brand-list span {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    .service-img {
        height: 500px; /* Same height and width proportion to make square on small screens */
        aspect-ratio: 1 / 1; /* Maintains square shape */
    }
    }

    .footer {
        color: white;
        text-align: center;
        padding: 20px 0;
        background-color: #bf1e2d;
    }

    .contact-info {
        font-size: 1.2rem;
    }

   /* Ensure cards look good across all devices */
    #why .card {
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    height: 100%;
    }

    #why .card:hover {
    transform: translateY(-5px);
    }

    /* Text styling for consistency */
    #why .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    }

    #why .card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    }

    /* Mobile adjustments */
    @media (max-width: 767.98px) {
    #why h2 {
        font-size: 1.75rem;
    }

    #why .card-title {
        font-size: 1.1rem;
    }

    #why .card-text {
        font-size: 0.95rem;
    }

    #why .card {
        padding: 15px;
    }
    }    

    .faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
    }

    .faq-title {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 40px;
    }

    .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    }

    .faq-item input[type="checkbox"] {
    display: none;
    }

    .faq-question {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    }

    .faq-question::after {
    content: '+';
    float: right;
    font-size: 1.2em;
    transition: transform 0.3s ease;
    }

    .faq-item input[type="checkbox"]:checked + .faq-question::after {
    content: '-';
    }

    .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.95em;
    background-color: #fff;
    }

    .faq-item input[type="checkbox"]:checked + .faq-question + .faq-answer {
    max-height: 500px;
    padding: 15px 10px;
    }

    #contact {
    padding: 60px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
    }

    .contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    }

    .contact-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    }

    .contact-heading::after {
    content: '';
    width: 40%;
    height: 2px;
    background: #007bff;
    position: absolute;
    left: 30%;
    bottom: -10px;
    }

    .contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    }

    .contact-box {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
    }

    .icon {
    font-size: 40px;
    color: #bf1e2d;
    margin-bottom: 10px;
    }

    .contact-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    }

    .contact-box p {
    font-size: 16px;
    line-height: 1.6;
    }
    a {
    color: #bf1e2d; /* Bootstrap blue */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    }

    a:hover {
    color: #0056b3;
    text-decoration: underline;
    }

    .service-form {
    padding: 25px;
    border-radius: 10px;  
    max-width: 500px;   
    }

    .service-form .form-label {
    font-weight: 600;
    }

    .submit-btn {
    background-color: #bf1e2d; /* pink */
    color: white;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
    background-color:#FFDEDE ; /* darker pink */
    }

    /* Mobile Responsive */
    @media (max-width: 576px) {
    .service-form {
        padding: 15px;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 10px;
    }
    }

