* {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all .2s linear;
    text-decoration: none;
}

html {
    font-size: 82.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
    padding-top: 40px;
}
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ccc;
    color: black;
    padding: 10px 20px;
    font-size: 18px;
    z-index: 101;
}

.contact-info a {
    color: black;
    margin-right: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.contact-info i {
    /* margin-right: 5px; */
    margin-left: 20px;
}

.social-icons a {
    margin-left: 10px;
    color: black;
    text-decoration: none;
    margin-right: 40px;
}

.social-icons a:hover {
    color: #818588;
}
/* Add an additional hover effect to contact-info */
.contact-info a:hover {
    color: #818588;
}


.header{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .5rem 1rem;
    /* position: relative; */
    top: 40px;
    left: 0;
    z-index: 100;
    background-color: #011579;
}
.header .logo{
    /* padding: 0 .5rem; */
    height: 60px;
    width: 60px;
    margin-right: 10px;
    /* vertical-align: middle; */
    border-radius: 50%;
    object-fit: contain;
    background-color: rgb(173, 171, 171);

}
/* .logo {
  
} */
.header p{
    font-size: 2rem;
    font-weight: bold;
    color: white;
}
.header .navbar{
    display: flex;
}
.header .navbar ul{
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: center;
}
.header .navbar ul li{
    margin: 0.5rem;
    margin-right: 65px;
    /* margin: 0 1 15px; */

}
.header .navbar ul li a{
    font-size: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;

}
.header .navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; 
    background-color: rgb(7, 168, 248); 
    transform: scaleX(0);
    transition: transform 0.3s ease; 
}
.header .navbar ul li a:hover::after,
.header .navbar ul li a.active::after {
    transform: scaleX(1); 
}

.fas.fa-bars {
    font-size: 2rem; 
    cursor: pointer;
    display: none;
}
.divider{
    border: none;
    height: 2px;
    background-color: rgb(7, 168, 248);
    margin: 10px 0;
}

/* hero section */
#home{
    scroll-margin-top: 140px;
    /* height: 100vh; */
}
.owl-container .owl-carousel{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.owl-container .slide{
    width: 100%;
    height: 100vh;
    /* padding-top: 1.25%; */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center ;
    /* overflow: hidden; */
}
.owl-container .slide::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.4);
}
 .slide1{
    background-image: url("car6.png");
}
.slide2{
    background-image: url("car4.png");
}
.slide3{
    background-image: url("car.png");
}
.slide-content{
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    padding: 0 20%;
    /* margin-left: 15%; */
    z-index: 100;
}
.slide-content h1{
    font-family: 'Times New Roman', Times, serif;
    font-size: 45px;
    font-weight: bolder;
    /* text-transform: uppercase; */
}
.slide-content p{
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 15px;
    margin-bottom: 15px;
}
.slide-content button{
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 20px;
    /* border-radius: 10px; */
    padding: 3px 10px;
    border: 2px solid #011579;


    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    color: #333;
    background-color: #fff;
    font-size: 16px;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}
.slide-content button:hover{
    color: #fff;
    background-color: #acaaaa;
    letter-spacing: .1rem;
}
.owl-dots{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}
.owl-dots span{
    width: 10px !important;
    height: 10px !important;
}
.owl-dots button{
    border: none !important;
    outline: none !important;
}
.owl-nav button{
    border: none !important;
    outline: none !important;
}
.owl-prev, .owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    font-size: 65px !important;
    font-weight: bolder !important;
    border: none !important;
}
.owl-prev{
    left: 1%;
}
.owl-next{
    right: 1%;
}

/* downloaad section */
/* #download{
    scroll-margin-top: 140px;
}
.download-section {
    text-align: center;
    padding: 50px;
    /* background-color: #f8f9fa; */
 /* }
 .download-section h2{
    font-size: 42px;
    color: black;
    font-weight: bold;
 }
 
 .app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
 }
 
 .store-btn {
    position: relative;
    z-index: 10;
    height: 60px;
    transition: transform 0.3s;
    cursor: pointer;
 }
 
 .store-btn:hover {
    transform: scale(1.1);
 } */ */

 /* About Section Styles */
 #about {
    scroll-margin-top: 100px;
  }
 .about-section {
    display: flex; 
    align-items: stretch; 
    justify-content: space-between; 
    padding: 20px;
    background-color: #FFFEFA;
    min-height: 100vh;
    /* height: auto; */
}

/* Left Column: Content */
.about-content {
    flex: 1; 
    margin-right: 40px; 
    padding: 20px;
}

/* Right Column: Image */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center; 
    align-items: stretch; 
}

.about-image img {
    width: 115%; 
    height: 97%; 
    object-fit: cover; 
    border-radius: 10px;
}
/* .about-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch; 
    justify-content: space-between; 
    padding: 20px;  
    background-color: #FFFEFA;
    min-height: 100vh;
} */
/* .about-content {
    flex: 1;  */
    /* margin-right: 400px; */
    /* text-align: center; */
    /* margin-left: 80px; */
    /* margin-right: 80px;
/* } */
.about-content h2{
    color: black;
    /* margin-top: 40px; */
    margin-bottom: 20px;
    text-align: center;
    font-size: 44px;
    font-weight: bold;
} 
.about-content p{
    font-size: 18px;
    /* width: 100%; */
    text-transform: none;
} 

/* .about-image { */
    /* margin-left: 400px; */

    /* flex: 1; 
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
}

.about-image img {
    max-width: auto; 
    max-height: 500px; 
    object-fit: cover;
    border-radius: 10px; 
/* } */
.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
} 

/* Card Styles */
.card {
    background-color: transparent;
    border: 2px solid rgb(4, 104, 154); 
    color: black;
    /* padding: 50px; */
    /* border-radius: 10px; */
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
     width: 100%;
     max-width: 600px;
    /* padding: 15px;  */
    margin: 10px 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: none;
    box-shadow: none;
} 

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #acaaaa;
    color: white;
} 
/* Heading and Text Styling */
.card h3 {
    color: #011579; 
    font-weight: bold;
    font-size: 1.9rem;
    margin-bottom: 10px; 
    /* text-transform: uppercase;
    letter-spacing: 1px; */
}

.card p { 
    /* margin-top: 5px;
    color: #666; */
    font-size: 1.2rem;
}
/* .about-image img{ */
    /* height: 100%; */
    /* width: 80%;  */
    /* object-fit: contain; */
 /* }  */

/* services */
#services{
    /* scroll-margin-top: 100px; */
    scroll-margin-top: 70px;
    position: relative;
    padding: 60px 0;
}
.swiper-container{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url(images/back.png) #030728 no-repeat center;
    background-size: cover;
    position: relative;
}
.services-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    /* background: linear-gradient(90deg, #e0dddd, #f1eeec); */
    /* -webkit-background-clip: text;s */
    /* -webkit-text-fill-color: transparent; */
    /* animation: glow 2s infinite alternate; */
}

/* @keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff7e5f, 0 0 10px #ff7e5f, 0 0 20px #ff7e5f;
    }
    100% {
        text-shadow: 0 0 10px #feb47b, 0 0 20px #feb47b, 0 0 30px #feb47b;
    } */
/* } */

.slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* .slider-wrapper{
    overflow: hidden;
    max-width: 1200px;
    margin: 0 70px 55px; */
    /* background: url(images/back.png) #030728 no-repeat center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; */

/* } */
.card-list .card-item{
    color: #fff;
    width: 100%;
    /* max-width: 250px; */
    height: auto;
    text-align: center;
    /* user-select: none; */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    z-index: 2;
    overflow: hidden;
}
.card-list .card-item .user-image{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    /* border: 3px solid #fff;
    padding: 4px; */
}
.card-list .card-item .user-profession{
    font-size: 1.15rem;
    color: #e3e3e3;
    font-weight: 500;
    margin: 14px 0 40px;
}
.card-list .card-item .message-button{
    font-size: 1.25rem;
    padding: 10px 35px;
    color: #030728;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s ease;
}
.card-list .card-item .message-button:hover{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    color: #fff;
}
.slider-wrapper .swiper-pagination-bullet{
    background: #fff;
    height: 10px;
    width: 10px;
}
.slider-wrapper .swiper-slide-button{
    color: transparent;
    margin-top: -50px;
    transition: 0.2s ease;
    opacity: 1;
}
/* Left Button */
.slider-wrapper .swiper-button-prev {
    left: -3px; 
}

/* Right Button */
.slider-wrapper .swiper-button-next {
    right: -3px; 
}
.slider-wrapper .swiper-slide-button:hover{
    color: #4658ff;
}


/* Contact Section */
#contact {
    scroll-margin-top: 70px;
}

.contact-form {
    padding: 100px 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-grid {
    display: flex;
    gap: 0px; 
    align-items: stretch; 
    max-width: 1200px; 
    width: 100%;
    margin: auto;
}

.contact-image {
    flex: 1; 
    display: flex;
    align-items: stretch; 
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; 
}

.form-container {
    flex: 1; 
    background: #ccc; 
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(177, 3, 3, 0.1);
    padding: 2rem;
    border: 1px solid rgb(7, 168, 248);
}

.form-container h2 {
    color: black;
    font-weight: bold;
    font-size: 30px;
}

.form-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.form-control.form-input:focus {
    border-color: rgb(7, 168, 248);
}

.btn-primary {
    background-color: #FFFEFA;
    border: 2px solid #011579;
    color: black;
    padding: 0.75rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #6c6868;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    padding: 0.75rem 2rem;
}

.form-control.form-input {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

#thankYouMessage {
    display: none;
    color: green;
    font-size: 18px;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column; 
        margin-top: -120px;
    }
    .contact-image,
    .form-container {
        flex: 1 1 100%;
    }
}

/* Form Row for Email and Phone */
.form-row {
    display: flex;
    gap: 20px; 
    margin-bottom: 1rem; 
}

.form-group {
    flex: 1;
}

/* Responsive Design for Form Row */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column; 
        gap: 0; 
    }
}

/* Professional Lines Styling */
.form-container p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    background-color: #2c3e50; /* Dark blue background */
    color: #fff;
    padding: 40px 20px;
    font-family: 'Times New Roman', Times, serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 20px; /* Space between sections */
}

.footer-section {
    flex: 1 1 250px;
    margin: 10px;
    padding: 10px;
}

.footer h2, .footer h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: bold;
}

.footer p, .footer li {
    color: #c7c7c7;
    line-height: 1.8;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: #c7c7c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

.footer .contact-f a {
    color: #c7c7c7;
    text-decoration: none;
}

.footer .contact-f a:hover {
    color: #fff;
}

.footer .social-icons a {
    color: #c7c7c7;
    margin-right: 60px;
    font-size: 1.5rem;
    transition: color 0.3s;
    /* gap: 30px, */
}

.footer .social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 1.2rem;
    color: #c7c7c7;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
    margin-top: 10px;
}

.download-btn img {
    width: 120px; 
    height: auto;
    border-radius: 8px; 
    transition: transform 0.3s ease;
}

.download-btn img:hover {
    transform: scale(1.05); /* Hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .download-buttons {
        justify-content: center;
    }
}



@media (max-width: 768px){
    .slider-wrapper{
        margin: 0 10px 40px;
    }

    .slider-wrapper .swiper-slide-button{
        display: none;
    }
    .card-item{
        font-size: 20px;
    }
    .card-list .card-item{
        display: flex;
        text-align: center;
        align-items: center;
    }
    .card-list .card-item .user-profession{
        font-size: 15px;
        text-align: center;
    }
    .card-list .card-item .message-button{
        font-size: 15px;
    }

}

/* Media Queries for Responsiveness */

@media (max-width: 992px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 10px;
    }
    .owl-container{
        height: 70vh;
    }
    .owl-container .slide {
        height: 70vh; 
        }

    .slide-content {
        padding: 0 10%;
        margin-left: 15%;
    }

    .slide-content h1 {
        font-size: 35px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-content button {
        font-size: 16px;
    }
    .owl-nav{
        display: none;
    }
    .owl-dots{
        bottom: 180px;
    }
    .owl-prev, .owl-next {
        font-size: 45px !important;
    }
    /* .download-section h2 {
        font-size: 32px;
    }

    .app-buttons {
        gap: 10px;
    } */
}

@media (max-width: 768px) {
    
    html{
        font-size: 50%;
    }
    .contact-info a{
        font-size: 20px;
    }
    .social-icons {
        display: flex;
        gap: 0px;
    }
    
    .social-icons a{
        font-size: 20px;
        margin-right: 0px;
        text-decoration: none;
        margin: 0;
    }

    .header .fa-bars{
        display: block;
        color: white;
    }

    .header .navbar{
        position: fixed;
        top: 100%;
        left: 0;
        height: auto;
        width: auto;
        background-color: #fff;
        z-index: 1000;
        border-top: .2rem solid rgba(0, 0, 0, .3);
        /* display: none; */
    }
    /* .header .navbar.active{
        display: flex;
        flex-direction: column;
    } */
    .header .navbar ul{
        height: 100%;
        width: auto;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .header .navbar ul li{
        margin: 1rem 0;
    }
    .header .navbar ul li a{
        color: #444;
        font-size: 2.4rem;
    }
    .header .fa-times{
        transform: rotate(180deg);
    }
    .header .nav-toggle{
        top: 9.8rem;
    }
    /* .nav-btn{
        visibility: hidden;
    } */
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 300px;
    }
    .about-section {
        
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1; 
        margin-bottom: 20px; 
        /* margin-right: -20px; */
    }

    .about-content {
        margin: 0;
    }
    .top-bar {
        height: 100px;
        font-size: 11px;
        padding: 16px 10px;
    }

    .top-bar .contact-info {
        margin-top: 5px;
        /* margin-bottom: 10px; */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar .contact-info a {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .top-bar .social-icons {
        display: flex;
        justify-content: space-between;
        width: 60%;
    }

    .top-bar .social-icons a {
        margin-left: 10px;
    }
    .owl-container{
        height: 60vh;
    }
    .owl-container .slide {
        height: 60vh; 
    }

    .slide-content {
        padding: 0 5%;
        margin-left: 15%;
    }

    .slide-content h1 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slide-content button {
        font-size: 14px;
        padding: 8px 15px;
    }
    .owl-nav{
        display: none;
    }
    .owl-dots{
        bottom: 240px;
    }
    .owl-prev, .owl-next {
        font-size: 40px !important;
    }
    /* .download-section h2 {
        font-size: 28px;
        margin-left: 0px;
    }

    .app-buttons {
        margin-left: 0px;
        gap: 1px;
        padding: 0 10px; 
    }

    .store-btn {
        width: auto; 
        padding: 10px 20px;
        margin-left: 30px;
    } */
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-content {
        margin: 0;
        padding: 10px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 14px;
    }

    .card {
        width: 90%;
        margin: 15px 0;
    }
    .about-image{
        width: 80%; 
        height: 200vh;
        flex: 1;
        margin-left: 140px;
        /* margin-right: 40px; */
        margin-top: 60px;
    }
    .about-image img{
        max-width: 100%;
        /* margin-left: -500px; */
        margin-right: 122%;
        /* text-align: center;
        align-items: center; */
        /* left: 600%; */
    }
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1; 
        margin-bottom: 20px; 
        margin-right: 20px;
        /* margin-left: -300px;s */
    }

    .about-content {
        margin: 0; 
    }
    .card-item{
        margin-top: 60px;
    }
    .swiper-container .swiper-slide h2{
        font-size: 25px;
        font-weight: bold;
    }
    #services .user-profession{
        font-size: 18px;
    }
    .footer{
        text-align: center;

    }
    .footer-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        gap: 1px;
    }
.footer-section.about p{
    margin-top: 10px;
}
    .footer h2, .footer h3 {
        font-size: 2.5rem;
    }

    .footer p, .footer li {
        font-size: 1.8rem;
    }
    .links ul li a{
        font-size: 2rem;
    }
    .footer-section.contact-info p{
        font-size: 2rem;
    }

    .footer-section.social{
        font-size: 2rem;
        /* gap: 110px; */
    }
    .footer .social-icons {
        /* margin-top: 10px; */
        display: flex;
        justify-content: center;
        flex-wrap: wrap; 
        gap: 15px; 
    }

    .footer .social-icons a {
        margin-right: 0; 
        font-size: 1.8rem; 
    }
    .footer-bottom{
        margin-top: 60px;
    }

    .footer-bottom p {
        font-size: 2rem;
        margin-top: 160px;
    }
    .footer-section.links h3{
        margin-top: 100px;
    }
    .footer-bottom{
        margin-top: -150px;
    }
    .footer-section.links{
        margin-top: -130px;
    }
    .footer-section.contact-info{
        margin-top: -20px;
    }
}


@media (max-width: 576px) {
    .top-bar {
        font-size: 10px;
        padding: 5px 8px;
    }

    .top-bar .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar .contact-info a {
        margin-right: 0;
        margin-bottom: 3px;
    }

    .top-bar .social-icons {
        display: flex;
        justify-content: space-between;
        width: 50%;
    }

    .top-bar .social-icons a {
        margin-left: 5px;
    }
    .header .navbar{
        width: auto;
    }
    .owl-container{
        height: 50vh;
    }
    .owl-container .slide {
        height: 50vh; 
        }

    .slide-content {
        padding: 0 5%;
        margin-left: 15%;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 12px;
    }

    .slide-content button {
        font-size: 12px;
        padding: 6px 12px;
    }
    .owl-nav{
        display: none;
    }
    .owl-dots{
        bottom: 300px;
        left: 30px;
    }
    .owl-prev, .owl-next {
        font-size: 30px !important;
    }
    /* .download-section h2 {
        font-size: 24px;
        margin-left: 60px;
    }
    .store-btn {
        width: auto; 
        height: 60px; 
    } */
    .about-section {
        padding: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 13px;
    }

    .card {
        width: 100%;
    }
    .about-image{
        width: 180%;
    }
    .about-image img{
        max-width: 70%;
        /* margin-right: 290%; */
        margin-left: -20px;
        margin-top: -90px;
    }
    .card-item h2{
        font-size: 20px;
    }
    .card-list .card-item .user-profession {
        font-size: 15px;
        text-align: center;
    }
    .card-list .card-item .message-button{
        font-size: 15px;
    }
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1; 
        margin-bottom: 20px;
        margin-right: -160px;
        margin-left: 230px;
        text-align: center;
    }

    .about-content {
        margin: 0; 
    }
}



@media screen and (max-width: 480px) {
   
    .header .navbar{
        width: 100%;
        margin-top: 100px;
    }
    .footer{
        text-align: center;
       

    }
    .footer-container{
       
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        gap: 1px;
    }

    .footer h2, .footer h3 {
        font-size: 2.5rem;
    }

    .footer p, .footer li {
        font-size: 1.8rem;
    }
    .links ul li a{
        font-size: 2rem;
    }
    .footer-section.contact-info p{
        font-size: 2rem;
    }

    .footer .social a {
        font-size: 1.9rem;
    }

    .footer-bottom p {
        font-size: 2rem;
    }
    .footer-section.links{
        top: -10px;
    }
    .footer-bottom{
        margin-top: -150px;
    }
    .footer-section.links{
        margin-top: -100px;
    }
    .footer-section.contact-info{
        margin-top: -20px;
    }
}

/* Styles for the map section */
.map-section {
    background-color: #FFFEFA; 
    text-align: center;
    padding: 40px 0; 
}

.map-section h2 {
    margin-bottom: 30px; 
    color: black; 
    font-size: 40px; 
    font-weight: bold;
}

/* Map container styles */
.map-container {
    max-width: 1200px; 
    margin: 0 auto; 
    border: 2px solid #1d40f0;
    border-radius: 8px;
    overflow: hidden; 
}

/* Responsive iframe styling */
.map-container iframe {
    width: 100%; 
    height: 450px; 
    border: 0; 
}
.container{
    margin-top: 150px;
}
.services-heading {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

/* Testimonials Section */
#testimonials {
    scroll-margin-top: 20px;
}

.testimonials-section {
    margin-top: -150px;
    padding: 50px 0;
    background-color: #FFFEFA;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: black;
    font-size: 40px;
    font-weight: bold;
}

/* Swiper Slider Container */
.testimonial-swiper {
    width: 100%;
    padding: 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border: 2px solid #011579;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-card h5 {
    text-align: right;
    font-style: italic;
    color: #6c757d;
    margin-top: 10px;
}

/* Star Rating */
.star-rating {
    font-size: 24px;
    color: #ffc107; 
    margin-bottom: 10px;
}

/* Swiper Navigation Buttons */
.testimonial-next,
.testimonial-prev {
    display: none;
}

.testimonial-next:hover,
.testimonial-prev:hover {
    background: #011579; 
    color: white; 
}

/* Swiper Pagination */
.testimonial-pagination .swiper-pagination-bullet {
    background: #011579; 
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #011579; 
}
/* Animation */
/* Logo Styling */
.logo {
    width: 100px;
    animation: bounceInLeft 1s ease both;
}

/* Keyframes for bounceInLeft Animation */
@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

/* .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 0; /* Start hidden */
    /* transform: translateY(30px); 
    animation: fadeInUp 2s ease-in-out forwards; 
} */

/* Keyframes for fadeInUp Animation */
/* @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
} */ 


/* Initial state of the image (hidden or out of view) */
.about-image img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

/* State after image becomes visible */
.about-image.visible img {
    opacity: 1;
    transform: translateY(0);
}







@media (max-width: 480px) {
    .top-bar{
        height: 70px;
    }
    .social-icons{
        font-size: medium;
        margin-left: 5px;
    }
    .top-bar .contact-info{
        font-size: medium;
    }
    .header{
        margin-top: 30px;
    }
    .header p{
        font-size: 30px;
        text-align: center;
    }
    .slide-content h1{
        font-size: 30px;
    }
    .slide-content p{
        font-size: medium;
    }
    /* .download-section{
        text-align: center;
        margin-right: 35px;
    } */
    .about-content p{
        font-size: 18px;
    }
    .card h3{
        font-size: 20px;
    }
    .swiper-container h2{
        margin-left: 10px;
    }
    .contact-form h2{
        font-size: 25px;
    }
    .mb-4 .form-label{
        font-size: 17px;
    }
    .mb-4 .form-control.form-input{
        font-size: 14px;
    }
    .btn-primary{
        font-size: 15px;
    }
    /* .about-image{
        text-align: center;
        margin-right: -120px;
    } */
    .header .navbar ul{
        /* background-color: transparent; */
        height: 100%;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
    .header .navbar ul li{
        margin: 1rem 0;
    }
}



@media (max-width: 432px) {
    .top-bar {
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
    }

    .contact-info,
    .social-icons {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        margin-top: 0;
    }

    .contact-info a{
        font-size: 18px;
        margin: 0 5px;
    }
    .social-icons a {
        font-size: 14px;
        margin: 0 5px;
    }

    .contact-info i {
        margin-left: 5px;
    }
}



@media (max-width: 420px) {
    .top-bar {
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
    }

    .contact-info,
    .social-icons {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        margin-top: 0;
    }

    .contact-info a{
        font-size: 16px;
        margin: 0 5px;
    }
    .social-icons a {
        font-size: 14px;
        margin: 0 5px;
    }

    .contact-info i {
        margin-left: 5px;
    }
}