@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

 
 /* Custom CSS for top bar */
  .topbar {
    background-color: #f1f1f1;
    padding: 10px 0; /* #fda700uced padding to minimize space */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar .contact-info {
    font-size: 14px;
}
.topbar .contact-info i {
    margin-right: 8px;
    color: #555;
}
.emergency{
    color:#43aee1;;
    font-size:11px;
    font-weight:400;
}

/* Navbar with Gradient Background */
.navbar {
    background: #122A48;;
    padding: 5px;
}

.navbar a {
    color: white !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link {
    position: relative; /* Necessary for the custom underline effect */
    text-decoration: none; /* Remove default underline */
    display: inline-block;
    padding-bottom: 5px; /* Add some space between text and the underline */
    transition: color 0.3s ease; /* Smooth color transition */
}

.nav-link::after {
    content: ''; /* Necessary to create the underline element */
    position: absolute;
    width: 100%;
    height: 2px; /* Thickness of the underline */
    background-color:rgb(255, 255, 255); /* Color of the underline */
    left: 0;
    bottom: 0;
    transform: scaleX(0); /* Initially hide the underline */
    transform-origin: bottom right; /* Set the origin for animation */
    transition: transform 0.3s ease-in-out; /* Smooth animation */
}

.nav-link:hover::after {
    transform: scaleX(1); /* Show the underline on hover */
    transform-origin: bottom left; /* Animate from left to right */
}

.nav-link:hover {
    color: #007bff; /* Change the text color on hover */
}

.navbar-nav {
    text-align: center;
}



/* Contact Button */
.btn-contact {
    background-color: #43aee1;;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size:14px;
    border-radius: 5px;
    font-family: "Roboto",sans-serif;

}
.btn-contact:hover {
    background-color: #0026ce;
    transform: scale(1.05); 
}

/* Hover effect for navbar items */
.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    padding: 7px 20px;
    /* border-radius: 50px; */
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 12px;
    font-family: "Poppins",;
}



/* Logo styles */
.topbar .logo {
    /* max-height: 50px; */
}




.carousel-item img{
    height: 70vh;
    object-fit: cover;
}
.carousel-caption{
    position: absolute;
right: -750px;
}


/* carousel */
.carousel-left-text h1{
    font-size: 3rem;

    /* text-align: center; */
    line-height: 1.1;
    font-weight: bold;
    letter-spacing: -0.04em;
}
/* .carousel-caption .btn1{
    position: relative;
    left: 400px;
} */
/* .carousel-caption .btn2{
    position: relative;
    left: 400px;
} */
.carousel-left-text p{
    font-size:20px;
    /* text-align: center; */
    margin-top: 10px;
}
.carousel-caption .btn1{
    background: #073e85;
    color: #ffffff !important;
    padding: 7px 15px;
    border: 2px solid #073e85;
    
}

.carousel-caption .btn2{
    background: #fda700;
    color: #ffffff !important;
    padding: 7px 15px;
    border: 2px solid #fda700;
    margin:10px;
    margin-left:0px;
    
}
.carousel-caption .btn1:hover{
background-color: #df1c1c;
border: 2px solid #df1c1c;
}
.carousel-caption .btn2:hover{
    background-color: #007bff;
    border: 2px solid #007bff;
}


.position-absolute {
    display: flex;
    flex-direction: column; /* Stack the icons vertically */
    gap: 15px; /* Add space between the icons */
    z-index: 10;
    top: 50%;
    right: 10px; /* Adjust the right position if necessary */
    transform: translateY(-50%);
  }
  
  .position-absolute a {
    text-align: center; /* Center the icons horizontally */
  }
  
  .position-absolute i {
    font-size: 30px;
    cursor: pointer;
  }

.gear-icon i{
    font-size:20px;
}

.seri1 .card{
   /* color: white; */
   background-color: whitesmoke;
}
.seri1 p{
    /* color: white !important; */
}
.seri2 .card{
    background-color: whitesmoke;
    /* color: white; */
}
.seri2 p{
    /* color: white  !important; */
}
.seri3 .card{
    background-color: whitesmoke;
/* color: white; */
}
.seri3 p{
    /* color: white !important; */
}

/* sliders */


.section2{
    background-color: #f4f8f8;
}




/* Responsive Styling */
@media (max-width: 768px) {

    .topbar .contact-info {
             font-size: 13px;
        font-weight: 500;
    
    }
    .navbar .container {
        padding: 0 10px; /* Add some padding on the sides */
    }
    .topbar .logo {
        width: 150px;
        margin-left: -10px;
    }
    .testimonial-item .customer {
        font-size: 20px !important;
        color: rgb(255, 255, 255);
    }

  
    .carousel-left-text h1 {
        font-size: 2rem;
        line-height: 1.1;
        font-weight: bold;
        letter-spacing: -0.04em;
        text-align: left;
    }
    .carousel-left-text p {
        font-size: 14px;
        margin-top: 10px;
        text-align: left;
    }
    .carousel-caption .btn2 {
   
    }
    .carousel-caption h1 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 25px !important;
    }
    .carousel-caption .btn1 {
        background: transparent;
        color: #ffffff !important;
        padding: 7px 30px;
        border: 2px solid #fff;
      
    }

    .navbar-nav .nav-link {
        padding: 7px 20px;
        /* border-radius: 50px; */
        transition: transform 0.3s ease, background-color 0.3s ease;
        font-size: 12px;
        font-family: "Poppins",;
        background: black;
        width: 100%;
    }
    /* .slick-next {
    left: 85% !important;
}
.slick-prev {
    left: 0px !important;
} */
.contact-form {
   
    padding: 20px;
    width: 100% !important;
    margin-top: 10px;
 
}
.about-text {

    margin-top: 15px;
}

.go-top:after {

    margin-left: -17px;
}

}

@media (max-width: 576px) {
    .topbar .contact-info {
        /* display: none;  */
    }
    .navbar-nav {
        font-size: 14px; /* Slightly smaller font on small screens */
    }
    .btn-contact {
        /* padding: 8px 25px;
        font-size: 8px;
        margin: -30px; */
    }
    
}


/* services style */

.mobiles a{
    display:inline-block;
    color:black;
 }

 .about_us {
   background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/client.png)no-repeat;
   background-attachment: cover;
   background-repeat: no-repeat;
   background-size: cover;
   width:100%;
}


.about_us {
    border-bottom: 5px solid #ffcc00;
}

.breadcromb-box {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
}

.about-us-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* Bold text */
    font-size: 30px;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 20px; /* Space below the heading */
}

.breadcrumb-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: center; /* Center the breadcrumb items */
    align-items: center;
}

.breadcrumb-list li {
    margin: 0 5px; /* Space between breadcrumb items */
    color: white;
    font-size: 13px;
}

.breadcrumb-link {
    color: white;
    text-decoration: none;
    font-weight: 500; /* Medium weight for links */
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffcc00; /* Highlight color on hover */
}

.breadcrumb-icon {
    color: #ffcc00; /* Color for the icons */
}

/* Adjusting responsiveness */
@media (max-width: 768px) {
    .about-us-title {
        font-size: 22px;
    }

    .breadcrumb-list {
        font-size: 14px; /* Smaller font size on mobile */
    }
}


/* Overlay for better contrast */
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6); /* Dark overlay to improve text visibility */

}

/* Main Section Style */


/* Heading style */
.heading {
font-family: 'Poppins', sans-serif;
font-size: 20px;
font-weight: 700;
color: #69d2fc;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Added text shadow for better contrast */
}

/* Highlighted Text */
.highlight {
    color: #69d2fc;
}

/* Intro Text */
.intro-text {
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
font-family: 'Lato', sans-serif;
color: #fff; /* Ensu#fda700 white text color for better visibility */
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added text shadow for clarity */
}

/* List of Services */
.service-list {
list-style: none;
padding-left: 0;
font-size: 15px;
color: #fff; /* Ensu#fda700 list items are white */
margin-bottom: 20px;
}

.service-list li {
margin-bottom: 8px;
}

/* Header for problems we repair */
.repair-header {
font-family: 'Poppins', sans-serif;
font-size: 18px;
font-weight: 600;
color: #ffcc00;
margin-bottom: 10px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added text shadow */
}

/* List of Problems */
.promo-list {
list-style: none;
padding-left: 0;
font-size: 15px;
margin-bottom: 20px;
color: #fff; /* Ensu#fda700 list items are white */
}

.promo-list li {
margin-bottom: 12px;
background: rgba(255, 255, 255, 0.1);
padding: 10px;
border-radius: 8px;
color: #fff; /* Ensu#fda700 list items are white */
transition: transform 0.3s ease;
}

.promo-list li:hover {
transform: translateX(8px);
}

/* Call to Action Text */
.cta-text {
font-size: 16px;
font-weight: 600;
color: #fff;
margin-bottom: 15px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added text shadow */
}

/* Call to Action Button */
.cta-button {
padding: 12px 25px;
background-color: #ffcc00;
color: #333;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
border: none;
border-radius: 50px;
text-decoration: none;
display: inline-block;
transition: background-color 0.3s ease;
}

.cta-button:hover {
background-color: #e6b800;
}



/* Add media queries for responsiveness */
@media (max-width: 767px) {
.about-promo-text {
   /* text-align: center; */
}

.heading {
   font-size: 28px;
}

.cta-button {
   font-size: 16px;
}

.promo-list li {
   padding: 6px;
}

.cta-text {
   font-size: 14px;
}
}

/* Section Styling */
.sectionwhy {
    padding: 30px 0;
    background-color: #f9f9f9;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  /* Feature List Styling */
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
  }
  
  .feature-item i {
    font-size: 1.5rem;
    color: #28a745;
    margin-right: 15px;
  }
  
  .feature-item p {
    margin: 0;
  }
  
  /* FAQ Section Styling */
  .faq-section {
    margin-top: 40px;
  }
  
  .faq-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 12px 15px;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #e7f1f9; /* Light blue on hover */
  }
  
  .faq-question i {
    font-size: 1rem;
    color: #007bff;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    display: none;
    font-size: 1rem;
    color: #666;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 15px;
    background-color: #f0f8ff; /* Light background color for the answer */
    border-left: 5px solid #007bff;
  }
  
  .faq-question.open {
    background-color: #e7f1f9; /* Light blue when open */
  }
  
  .faq-question.open i {
    transform: rotate(45deg);
  }
  
  .faq-answer.open {
    display: block;
  }
  
.standard{
    padding: 0px;;
}

.standard .stimg1{
    height:500px;width:100%;object-fit:cover;
    padding: 20px;
}
.standard h1{
    margin-top: 50px;
    font-weight: 700;
    color: #122A48;
}

.standard .service-item{
    display: flex;
align-items:center;
gap: 20px;
}
.service-item p{
    margin-top: 12px;
    color: #122A48  !important;
    font-weight: 600;
}
.standard .service-item i{
    color: orange;
}

.projectdiv{
    background-color: #122A48;
    color: white;
    border-radius: 10px;
    max-width: 200px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.projectdiv img{
    display: block;
margin: auto;
}

.servicse {
    background-color: #ffffff; /* White background */
    padding: 50px 0; /* Added padding to the section */
    position: relative;
  }

  
  .servicse  .card {
    border: none; /* Remove default border from the card */
    border-radius: 10px; /* Rounded corners for the card */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Light shadow for a floating effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    max-width: 600px;
    
    height: 230px;
  }

  .servicse img{
    width:54px !important;
  }
  
  .servicse  .card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
  }
  
  .servicse  .card-body {
    padding: 20px; /* Padding inside the card */
  }
  
  .servicse  .card-img {
    width: 100%; /* Ensure the image is responsive and fits inside the card */
    max-width: 180px; /* Optional: set a max width for the images */
    margin:  auto; /* Center the images */
    display: block;
    margin-bottom: 10px;;
  }
   
  .servicse  .text-center {
    text-align: center; /* Center the content inside each card */
  }
  

  

@media screen and (min-width:300px) and (max-width:768px) {
    .standard .stimg1{
        width: 100%;
        padding: 0px !important;
        border-radius: 0px !important;
        margin-top: 25px !important;
    }
    .secimg{
        left: 0px;
        top: 0px;
        
    }
    .secimg img{
        
    }
    .projectdiv{
       max-width: 100% !important;
    }
    .standard h1{
        margin-top: 10px;
    }
    body,html{
        overflow-y: none;
        overflow-x: hidden;
    }
    .service{
        padding: 0px;
    }
    .servicse  .card {
        width: 100%;
    
        height: 100%;
margin-top: 10px;
    }
    .servicse .row{

        top:0px !important;
      }
  
    .servicse   .card-img {
      max-width: 150px; /* #fda700uce image size on smaller screens */
    }
    .carousel-caption{
        position: absolute;
    right: 40px;
    }
    .carousel-caption .btn1{
        left: 0px;
        width: 100%;
       
    }
    .carousel-caption .btn2{
        left: -10px;
        width: 100%;
    }
    .servicse .col-lg-4{
        margin-bottom: 10px;
       
    }
    .servicse{
        padding: 12px;
    }
    #contact_us h4 {
        font-size: 24px;
        margin-top: 10px;
    }
  
}

@media screen and (min-width:768px ) and (max-width:820px) {
    .carousel-caption{

    right: 60px;
    }
    .carousel-caption .btn1{
        left: 130px;
        width: 50%;

    }
    .carousel-caption .btn2{
        left: 120px;
        width: 50%;
    
     
    }
    .servicse .lstcol{
        margin-top:15px !important;
    }
    .carousel-item img{
        height: 50vh;
    }
}







 /* Section Styling */
 .why-choose-us-section {
    background-color: #eef3f9;
    padding: 10px 0;
    color: #0eb3d6;
    position: relative;
 }
 .text-primary{
    color:#0eb3d6 !important;
 }
 /* Heading */
 .why-choose-us-section .section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
 }

 /* Card Styling */
 .service-card {
    border-radius: 8px;
    background-color: white;
    color: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
    /* margin-left:25px ; */

 }

 .service-card:hover {
    /* transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: #000; 
    color: white; */
 }

 .service-card-body {
    padding: 30px;
 }

 .service-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
 }

 .service-card-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
 }

 .service-card-icon {
    color: #1e72b8; /* Icon color */
 }

 .service-card-body i {
    font-size: 3rem; /* Icon size */
 }

 /* Contact Section Links */
 .contact-link {
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
 }

 .contact-link:hover {
    color: #fff;
    text-decoration: underline;
 }

 /* Responsive Design */
 @media (max-width: 767px) {
    .why-choose-us-section .section-heading {
       font-size: 2rem;
    }

    .service-card .service-card-body {
       padding: 20px;
    }

    .service-card .service-card-title {
       font-size: 1.3rem;
    }

    .service-card .service-card-text {
       font-size: 1rem;
    }
 }


 
 .about-promo {
    background: linear-gradient(rgba(14, 179, 214, 0.9), rgba(14, 179, 214, 0.9)), url('images/choose_us_bg.jpg') no-repeat; /* Lighter gradient with background image */
    background-size: cover; /* Ensures the background image covers the entire section */
    background-position: center; /* Centers the background image */
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Adds shadow around the section */
    justify-content: center;
    align-items: center;
    text-align: center; /* Centers the text */
    height: auto; /* Optional: full viewport height */
}




.about-promo {
  background-color: #f8f9fa; /* Light background */
  padding: 60px 0;
}

/* Custom Service Card Styling */
.custom-service-card {
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 0px; /* Sharp edges */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 20px 0px;
  cursor: pointer;
  text-align: center;
  margin:10px;
}
.snowflake-icon {
  font-size: 30px;
  color:rgb(255, 255, 255);
  display: block;
  text-align: center;
  font-weight:100;
  margin-bottom: 10px;
}

/* Hover Effect */
.custom-service-card:hover {
  background-color:rgb(0, 0, 0); /* Blue background */
  color: white;
  transform: translateY(-5px); /* Lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.custom-service-card i {
color: #0eb3d6;
padding: 10px;
font-size: 41px;
transition: color 0.3s ease-in-out;
}

.custom-service-card:hover i {
color:#fda700; /* Default icon color */
}

/* Heading Styling */
.about-promo h3 {
font-weight: bold;
color: #ffffff;
font-family: sans-serif;
text-transform: uppercase;
}
.card-title {
margin-top: 0.5rem;
}

.card-title{
margin-top: 20px;
font-size: 14px;
}

 /* Style for the section */
.rates {
    background: linear-gradient(rgba(14, 179, 214, 0.9), rgba(14, 179, 214, 0.9)),
      url('images/plx-dark.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 50px 0;  /* Adjust padding for better spacing */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    text-align: center;  /* Center the text */
    color: white;  /* Set text color to white for better readability */
  }
  
  /* Style for the heading */
  .rates h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
  }
  
  /* Style for the paragraph */
  .rates p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Style for the button */
  .rates .btn-danger {
    background-color: #fda700;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
  }
  
  .rates .btn-danger:hover {
    background-color: #e64a19;  /* Darker shade on hover */
    color: white;
    cursor: pointer;
  }
  
  /* Responsive design */
  @media (max-width: 767px) {
    .rates h1 {
      font-size: 28px;
    }
  
    .rates p {
      font-size: 16px;
      max-width: 100%;
    }
  
    .rates .btn-danger {
      font-size: 16px;
      padding: 10px 25px;
    }
  }
  


     /* Style for the Tips and Maintenance Section */
.tips-maintenance {
    background-color: #fafafa;
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .tips-maintenance h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
  }
  
  .maintenance-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  
  .maintenance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .maintenance-card i {
    font-size: 40px;
    color: #0eb3d6 !important;
    margin-bottom: 20px;
  }
  
  .maintenance-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .maintenance-card p {
    font-size: 16px;
    color: #555;
    font-weight: 300;
  }
  
  /* Media Queries for Responsive Design */
  @media (max-width: 767px) {
    .maintenance-card {
      padding: 20px;
      margin-bottom: 20px;
    }
  
    .maintenance-card h3 {
      font-size: 20px;
    }
  
    .maintenance-card p {
      font-size: 14px;
    }
  
    .tips-maintenance h2 {
      font-size: 20px;
    }
  }
  .quotes {
    background-color: #eef3f9; /* Light background color for contrast */
    padding: 40px 0; /* Space around the section */
  }
  
  
  .quotes h3 {
    font-size: 1.2rem; /* Larger font size for better readability */
    font-weight: 600; /* Bold text for emphasis */
    color: #000; /* Dark text color for high contrast */
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 400;
      line-height: 1.5;
      font-style:italic;
  }
  
  button.quote-btn {
    background-color: transparent;
      color: #0eb3d6;
      font-size: 15px;
      padding: 10px 30px;
      border: 2px solid #0eb3d6;
      border-radius: 0px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 0.3sease, transform 0.3sease;
  }
  
  button.quote-btn:hover {
    background-color: #fda700; /* Darker blue for hover effect */
  color:white;
  border: 2px solid #fda700;
  }
  
  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .col-md-7 {
    flex: 0 0 60%; /* 60% width for the heading */
  }
  
  .col-md-5 {
    flex: 0 0 40%; /* 40% width for the button */
  }
  
  .d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }


   /* General Section Styling */
   #about {
    background-color: #f8f9fa;
    padding: 30px 0;
    font-family: 'Poppins', sans-serif;
}

/* Hover effect for the cards */
.hover-effect {
    transition: background-color 0.5s ease, color 0.5s ease; /* Smooth transition on hover */
}

.hover-effect:hover {
    background-color: #000; /* Change background to black */
    color: #fff; /* Text color changes to white */
}

.hover-effect:hover .card-title, 
.hover-effect:hover .card-text {
    color: #fff; /* Text inside the card becomes white */
}

.hover-effect:hover i {
    color: #fff; /* Icons become white */
}

/* Heading Styling */
#about h4 {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

/* Card Text Styling */
.card-text {
    font-size: 12px;
    color: #555;
}

/* Button Styling */
.btn-warning {
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Separator Styling */
.separator {
    border-color: #ffcc00;
    border-width: 3px;
    width: 60px;
    margin-top: 40px;
}


@media (max-width: 768px) {
  .card-title{
    font-size:14px !important;
  }
  .about-promo h3 {
    font-size: 15px;
}
.text-dark{
  font-size:15px !important;
}
.text-muted{
  font-size:14px !important;
}
.btn-warning{
  font-size:12px !important;
}
.card-body i{
  font-size:30px;
}
.section-title{
  font-size: 25px !important;
}
.faq-item p{
  font-size: 14px !important;
}
}