@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root{
    --primary-font:"Open Sans", sans-serif;
    --secondary-font:"Montserrat", sans-serif;
    --primary-color:#2a4045;
    --accent-color:#3eb0f7;
    --text-color:#333;
    --light-bg:#f8f9fa;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none!important;
    list-style: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}


.hero-top{
    background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/bannertop1.jpg') center;
    background-size: cover;
    height:auto;
    width: 100%;
    background-attachment:fixed;
    padding: 120px 0px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* .hero-top::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
} */

.hero-top .logo img{
    transition: transform 0.3s ease;
}

.hero-top .logo img:hover {
    transform: scale(1.05);
}
@media(max-width:767px){
    .hero-top .hero-lower-content h1{
        font-size: 34px!important;
    }
    .hero-form{
        margin-top: 30px;
    }
}

.hero-top .hero-lower-content h1 {
    font-size: 56px;
    line-height: 70px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-lower-para p {
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 0;
    animation: fadeInUp 1.2s ease;
}

.hero-lower-btn button {
    font-size: 18px;
    margin-right: 15px;
    padding: 15px 35px;
    border: 2px solid var(--accent-color);
    background: var(--accent-color);
    transition: all 0.4s;
    color: white;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(62, 176, 247, 0.3);
    animation: fadeInUp 1.4s ease;
}

.hero-lower-btn button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(62, 176, 247, 0.4);
}

.hero-lower-btn .btn-2 {
    background-color: white!important;
    color: var(--primary-color);
    border: 2px solid white;
}

.hero-lower-btn .btn-2:hover {
    background-color: transparent!important;
    color: white;
}



.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95)!important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.navbar .container {
    max-width: 1140px;
}

.navbar .navbar-brand {
    padding: 0;
}

.navbar .navbar-brand img {
    width: 150px;
    height: 37px;
    transition: all 0.3s ease;
}

.navbar .navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar .navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-toggler-icon {
    background-image: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar .navbar-toggler-icon::before {
    top: 0;
}

.navbar .navbar-toggler-icon::after {
    bottom: 0;
}

.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 50%;
}

.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 50%;
}

.navbar .nav-link {
    font-weight: 600;
    padding: 8px 15px!important;
    position: relative;
    color: var(--text-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 80%;
}

.navbar .nav-link.active {
    color: var(--accent-color);
}

.navbar .nav-link.active::after {
    width: 80%;
}

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 15px;
    }

    .navbar .nav-link {
        padding: 10px 15px!important;
        border-radius: 5px;
    }

    .navbar .nav-link:hover {
        background: var(--light-bg);
    }

    .navbar .nav-link::after {
        display: none;
    }
}


#features {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
}

.features-heading {
    text-align: center;
    margin-bottom: 60px;
}

.features-heading h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.features-heading h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.features-heading p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.features-inner {
    background: white;
    border-radius: 20px;
    padding: 40px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    transition: transform 0.3s ease;
}

.features-inner:hover {
    transform: translateY(-10px);
}

.features-left img {
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}
@media(max-width:767px){

    .features-right .row {
        margin-top: 30px;
    }
}



.features-right .col-2 i {
    font-size: 45px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.features-right .col-10 h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.features-right .col-10 p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}


#how-we-work {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    /* padding: 100px 0; */
    /* position: relative; */
    /* overflow: hidden; */
}

.how-work-heading {
    text-align: center;
    margin-bottom: 60px;
}

.how-work-heading h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    /* position: relative; */
    display: inline-block;
}

.how-work-heading h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.circle {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 300px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin: 15px auto;
    position: relative;
    /* overflow: hidden; */
}



.circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    /* background: var(--accent-color); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.circle:hover .icon-circle {
    transform: scale(1.1);
}

.icon-circle i {
    font-size: 35px;
    color: white;
}

.circle p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-top: 20px;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.floating-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(62, 176, 247, 0.4);
    transition: all 0.3s ease;
}

.floating-contact a:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    #about h1,
    .features-heading h1,
    .how-work-heading h1 {
        font-size: 36px;
    }
    
    .circle {
        height: 280px;
        width: 280px;
    }
}

@media (max-width: 767px) {
    #about h1,
    .features-heading h1,
    .how-work-heading h1 {
        font-size: 28px;
    }
    
    .features-inner {
        padding: 20px;
    }
    
    .circle {
        height: 250px;
        width: 250px;
    }
    
    .about-image::before {
        display: none;
    }
    .about-image img{
        width: 100%;
        margin-top: 20px;
    }
}

@media(min-width:1200px){
    .hero-top .logo img{
        width: 210px;
        height: 57px;
    }
    .hero-top .hero-lower-content{
        margin:30px 0px 30px 0px;
    }
    .hero-top .hero-lower-content h1{
        font-size: 56px;
        line-height: 70px;
    }
    .hero-lower-para {
        margin: 40px 0px 10px 0px;
    }
}
.hero-top .hero-lower-content {
font-family: var(--secondary-font);
}

.hero-lower-para{
    font-size: var(--primary-font);
}
.hero-lower-para p{
    font-size: 17px;
}

.hero-lower-btn button{
    font-size: 18px;
    margin-right: 10px;
    padding: 15px 35px;
    border: 2px solid #3eb0f7;
    background: #3eb0f7;
    transition: all 0.4s;
    color: white;
    border-radius: 100px;
    font-weight: 700;
    color: white;
}
.hero-lower-btn .btn-2{
    background-color: white!important;
    border: none;
    color: var(--primary-color);
}





#about{
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.05;
    z-index: 0;
}

#about .container {
    position: relative;
    z-index: 1;
}

#about h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

#about h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

#about p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

#about .about-btn {
    padding: 15px 35px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 176, 247, 0.3);
}

#about .about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(62, 176, 247, 0.4);
    background: var(--primary-color);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
}

@media(min-width:1200px){
    #features{
        margin-top: 40px;
    }
}

#features{
    background-color:#f6f6f6;
    width: 100%;
    height: auto;
    padding-top:100px ;
}

#features .container{
    max-width: 1140px;
}

.features-heading h1{
    font-family: var(--secondary-font);
}

.features-heading p{
    font-size: 18px;
    /* font-family: var(--secondary-font); */
}
.features-inner .features-left img{
    width: 100%;
}

#features .features-inner .fa-ioxhost{
    color: grey;
    cursor: pointer;
    font-size: 42px;
    transition: color 0.5s;
}
#features .features-inner .fa-ioxhost:hover{
    color: #468bf2;
}
#features .features-inner .fa-gears{
    color: grey;
    cursor: pointer;
    font-size: 42px;
    transition: color 0.5s;
}
#features .features-inner .fa-spinner:hover{
    color: #468bf2;
}
#features .features-inner .fa-spinner{
    color: grey;
    cursor: pointer;
    font-size: 42px;
    transition: color 0.5s;
}
#features .features-inner .fa-gears:hover{
    color: #468bf2;
}
#features .features-inner .fa-motorcycle{
    color: grey;
    cursor: pointer;
    font-size: 42px;
    transition: color 0.5s;
}
#features .features-inner .fa-motorcycle:hover{
    color: #468bf2;
}


@media(min-width:1200px){
 .how-work-heading{
        padding-top: 100px;
    }
}
.how-work-heading h1{
    font-family: var(--secondary-font);
}
#how-we-work{
    background-color: #efefef;
}

#how-we-work .icon-circle .fa-globe{
    color: #0d6efd;
    font-size: 45px;
    transition: all 0.5s;
}
#how-we-work .icon-circle .fa-signs-post{
    color: #ed9c28;
    font-size: 45px;
    transition: all 0.5s;
}
#how-we-work .icon-circle .fa-gears{
    color: #47a447;
    font-size: 45px;
    transition: all 0.5s;
}
#how-we-work .icon-circle .fa-link{
    color: #d2322d;
    font-size: 45px;
    transition: all 0.5s;
}
#how-we-work .circle{
    border-radius: 200px;
    background: #ffffff;
    padding: 35px;
    text-align: center;
    height: 250px;
    width: 250px;
    border: 8px solid #F2F2F2;
    transition: all 0.5s;
}
#how-we-work .icon-circle{
    outline: 1px solid #0d6efd;
    height: 60px;
    width: 60px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    margin-left: 50px;
    transition: all 0.5s;
}
#how-we-work p{
    font-size: 14px;
    color: grey;
}

#how-we-work .circle:hover{
    color: white;
    background-color: #0d6efd;
}
#how-we-work .circle-2:hover{
    color:white;
    background-color: #ed9c28;
}
#how-we-work .circle-3:hover{
    color: white;
    background-color: #47a447;
}
#how-we-work .circle-4:hover{
    color: white;
    background-color: #d2322d;
}
#how-we-work .circle:hover p{
    color: white!important;
}
#how-we-work .circle:hover .icon-circle{
    background-color: #2a4045;
}

#how-we-work .circle:hover .icon-circle .fa-globe{
   color: white;
}
#how-we-work .circle:hover .icon-circle .fa-signs-post{
   color: white;
}
#how-we-work .circle:hover .icon-circle .fa-gears{
   color: white;
}
#how-we-work .circle:hover .icon-circle .fa-link{
   color: white;
}
@media (max-width:767px){
   #how-we-work .how-work-icon-box{
        display: flex!important;
        align-items: center!important;
        justify-content: center!important;
        
    }
}

.new-section{
    margin-top: 50px;
    margin-bottom:50px;
}

.new-section h1{
    font-family: var(--secondary-font);

    font-weight: 300;
    margin: 15px 0 15px 0;
}
@media(max-width:767px){
    .new-section img{
        margin-top: 10px!important;
    }
}
@media(min-width:768px){
    .new-section .container{
        max-width:1140px;
    }
.new-section h1{
    font-size: 40px;
}
}

.contact-btn{
    padding: 20px 30px ;
    font-weight: 600;
    color: black;
    background-color: white;
    border-radius: 50px;
    border: 2px solid grey;
    font-size: 15px;
}

.logos-section {
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #efefef;
    padding: 60px;
}
.logos-section .container{
    max-width:1140px;
}

.logos-section img{
    margin-right: 30px;
}

@media(min-width:768px){
    #reviews{
        margin-top: 40px;
    }
   #review .review p{
        width: 70%;
        margin: auto;
    }
}
#reviews h1{
    font-family: var(--secondary-font);
    font-weight: 700;
}
.heading-line::before{
    content: "";
    position: absolute;
    width: 200px;
    height: 3px;
    background-color: #0d6efd;
    margin: auto;
    top:186.5rem;
    right: 41.5rem;
}

.review{
text-align: center;
}
.review img{
    width: 100px;
    border-radius: 50px;
}
.review p{
    padding: 20px;
    font-style: italic;
    line-height: 30px;
    font-weight: 300;
    font-size: 20px;
}



#contact {
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/footer-banner.jpg') center/cover;
    background-repeat: no-repeat;
    height: auto;
    width: 100%;
    /* padding: 50px 0px ; */
    color: white;
}
#contact .container{
    max-width: 1140px;
}


#reviews {
    background-color: var(--light-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 0;
}

.reviews-heading {
    position: relative;
    z-index: 1;
}

.reviews-heading h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.reviews-heading h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.review {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 20px auto;
    max-width: 800px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-10px);
}

.review::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: serif;
}

.review img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--accent-color);
    padding: 3px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.review:hover img {
    transform: scale(1.1);
}

.review p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.client-name {
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

.client-name p {
    margin: 0;
    position: relative;
    display: inline-block;
}

.client-name p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-name p:hover::after {
    transform: scaleX(1);
}


#contact {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/footer-banner.jpg') center/cover;
    background-attachment: fixed;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 0;
}

.footer-left {
    position: relative;
    z-index: 1;
}

.footer-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-left h1 span {
    color: var(--accent-color);
}

.footer-left-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.footer-left-info:hover {
    transform: translateY(-5px);
}

.footer-left-info p {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-left-info i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--accent-color);
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    padding: 15px;
    color: white;
    margin-bottom: 20px;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: white;
}

.contact-form .btn-submit {
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Social Media Links */
.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .review {
        padding: 30px;
    }
    
    .footer-left h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .review {
        padding: 20px;
    }
    
    .review p {
        font-size: 16px;
    }
    
    .footer-left h1 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 20px;
    }
}