/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #37514e;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #c14a11;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #c14a11;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    left: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    background: #37514e;
}

.back-to-top:hover i {
    color: #c14a11;
}

.back-to-top i {
    color: white;
    padding-top: 10px;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 60px;
    background: #37514e;
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 60px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 60px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    font-size: 22px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #c14a11;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #37514E;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: rgba(256, 256, 256, .1);
    transition: none;
   
  
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 60px;
        padding: 20px 60px;
        background: rgba(0, 0, 0, .1) !important;
        z-index: 9;
    }
    


    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
         color: #37514e!important;
    }

}


/* Fix dropdown hover in sticky navbar */



/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    /* margin-bottom: 45px; */
    height: 700px;
   background-image: url(../img/hero-img.webp);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;

}

.hero .container-fluid {
    padding: 0;
}

 .hero-text {

width: 100%;
   padding-top: 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
 .hero-text .logo{
    text-align: center;
}

 h1 {
    color: #37514e;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #37514E;
    background: none;
    border: 2px solid #37514E;
    border-radius: 0;
    transition: .3s;
}

.hero-text .btn:hover{
    color: #37514E !important;
}
.logo{
    width: 300px;
    margin-bottom: 2%;
}
.hero .hero-text p {
    color: #37514e;
    font-size: 18px;
    margin-bottom: 25px;
}

.hero .hero-text .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #37514e;
    background: none;
    border: 2px solid #37514e;
    border-radius: 0;
    transition: .3s;
}

.hero .hero-text .btn:hover {
    color: #c14a11;
    background: #37514e;
}



@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}



@media (max-width: 991.98px) {
    .hero .hero-text {
        padding-left: 15px;
    }
    
    .hero .hero-text h1 {
        font-size: 35px;
    }
    
    .hero .hero-text p {
        font-size: 16px;
    }
    
    .hero .hero-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .hero .hero-text h1 {
        font-size: 30px;
        font-weight: 600;
    }
    
    .hero .hero-text p {
        font-size: 14px;
    }
    
    .hero .hero-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text h1 {
        font-size: 25px;
        font-weight: 600;
    }
    
    .hero .hero-text p {
        font-size: 14px;
    }
    
    .hero .hero-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 20px;
    font-weight: 700;
}

.section-header h3 {
    margin: 0;
    position: relative;
    font-size: 35px;
    font-weight: 700;
}



.cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #c14a11;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(193, 74, 17, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(193, 74, 17, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(193, 74, 17, 0);
    }
}


@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about .about-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: #37514e;
    z-index: 0;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: -30px;
    right: 30px;
    bottom: 30px;
    left: -30px;
    background: transparent;
    border: 1px solid #c14a11;
    z-index: 0;
}

.about .about-text p {
    font-size: 16px;
    color: #37514E;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #37514e;
    border: 2px solid #37514e;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #c14a11;
    background: #37514e;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background-color: #E1E1E1;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    background: white;
}

.service .service-img {
    position: relative;
    width: 100%;
}

.service .service-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 25px;
    font-weight: 700;
}

.service p{
 color: #37514E;
}

.service .service-item p {
    margin: 0;
    padding: 0 25px 25px 25px;
    font-size: 13px;
    color: #37514E;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #37514e;
    border: 2px solid #37514e;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: white;
    background: #c14a11;
    border-color: #c14a11 ;
}

.service h2{
    font-weight: bold;
}
/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.price .price-item {
    position: relative;
    width: 100%;
  
 
    margin-bottom: 30px;
    background: rgba(29, 36, 52, .08);
    transition: .3s;
}


.price-item h3{
    font-weight: bold
}


.price .price-img img {
    width: 100%;
}

.price .price-img::after {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: transparent;
    border: 1.5px solid #c14a11;
    z-index: 1;
}

.price .price-text {

padding: 2%;
}

.price .price-text p{
    color: #37514E;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}



.team .team-item {
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
}

.team .team-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #F6F6F7;
    transition: .3s;
    z-index: 1;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    margin: -60px 15px 0 15px;
    padding:  10px;
    text-align: center;
    background: #EDEEEF;
    transition: .3s;
    z-index: 2;
}

.team .team-item h3 {
    font-size: 23px;
    font-weight: bold;

}


.team .team-item p {
    margin: 0;
 font-size: 16px;
 line-height: 32px;
}

.team .team-item:hover .team-text {
    background: #c14a11;

}


.team .team-item:hover .team-text p,
.team .team-item:hover .team-text h2
 {
    color: white;

}

.team .team-item:hover .team-img::after {
    border-color: #c14a11;
    color: white;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 120px 0;
    background: linear-gradient(rgba(29, 36, 52, 1), rgba(29, 36, 52, .2), rgba(29, 36, 52, 1)), url(../img/testimonial-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 700px;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: 100%;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    width: 60px;
    border-radius: 60px;
    margin-bottom: 25px;
}

.testimonial .testimonial-item p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial .testimonial-item h2 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial .testimonial-item h3 {
    color: white;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    background: rgba(29, 36, 52, .04);
    overflow: hidden;
}

.blog .blog-img {
    position: relative;
    width: 100%;
}

.blog .blog-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-text {
    position: relative;
    padding:  30px;
}

.blog .blog-text h2 {
    font-size: 18px;
    font-weight: 600;
}

.blog .blog-text p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 29px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #37514e;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 5px;
}

.blog .blog-item a.btn:hover {
    color: #c14a11;
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: #37514e;
}

.contact .container-fluid {
    background: url(../img/contact-us-img-sec.webp) left center no-repeat;
    background-size: contain;
}

.contact .contact-form {
    position: relative;
    padding: 90px 0 90px 45px;
    background: #37514e;
}

.contact .contact-form input {
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #c14a11;
}

.contact .contact-form textarea {
    height: 90px;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #c14a11;;
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #c14a11;
    background: none;
    border: 2px solid #c14a11;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #37514e;
    background: #c14a11;
}

    form.CUS input.subject {
      display: none;
    }


@media (max-width: 767.98px) {
    .contact .container-fluid {
        background: none;
    }
    
    .contact .contact-form {
        padding: 90px 0;
    }
}

.contact ::placeholder{
    color: white ;
}


.contact .contact-form input,
.contact .contact-form textarea,
.contact .contact-form select {
    color: white;
}


.contact .contact-form input,
.contact .contact-form textarea,
.contact .contact-form select {
    background: transparent;
    color: white;
    border: none;
    border-bottom: 1px solid #c14a11;
}

.contact .contact-form select option {
    color: black;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}



/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #37514e;
   
}

.footer .footer-contact {
    position: relative;
    margin-bottom: 45px;
    color: white;
}

.footer .footer-contact h2
{
    position: relative;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #c14a11;
    padding-bottom: 12px;
    border-bottom: 1px solid #c14a11;
    width: 50%;
}





.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #c14a11;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: white;
}







.footer .copyright {
    padding: 0 30px;

}





.footer .copyright .row {
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright p {
    margin: 0;
    color: white;
}

.footer .copyright  p {
    text-align: center;
}

.footer .copyright p a {
    color: white;
    font-weight: 700;
}

.footer .copyright p a:hover {
    color: #c14a11;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


.obfuscatedEmail a{
    color: white;
}


.zip-btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 6px;
    background-color: transparent; /* No background */
    color: white;
    border: 1px solid #C14A11;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.zip-btn:hover {
    background-color: #C14A11;
    color: #ffffff;
}




/* start brands */

.marquee {
  width: 100%;

  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  animation: marquee 50s linear infinite;
  color: #fff;
}

.marquee:hover {
  animation-play-state: paused;
}

.brands {
  background-color: #E1E1E1;
  padding: 30px 0;
  /* margin-bottom: 5%; */
  width: 100%;
  margin: auto;


}

.brand-img {
  align-items: center;
}

.brand-img img {
  height: 30px; /* Decrease image size */
  opacity: 0.5; /* Lower transparency */
  transition: opacity 0.3s ease;
  margin-right: 3%;
}

.brand-img img:hover {
  opacity: 1; /* Full visibility on hover */
}

@keyframes marquee {
  0% {
    text-indent: 27.5em;
  }
  100% {
    text-indent: -105em;
  }
}

/* end brands */

/* start FQA */
/* FAQ SECTION STYLE */


.faq{
  padding:50px 25px;
}

.headings{
  text-transform:capitalize;
  text-align:center;
}

.section-heading{
  font-size:40px;
  color:#131313;
}

.sub-heading{
  margin:20px auto 0;
  max-width:45ch;
  color:#939393;
  line-height:1.6;
}

.que-container{
  max-width:1200px;
  margin:50px auto 0;
}

.question{
  border-top:1px solid #131313;
}

.question:last-child{
  border-bottom:1px solid #131313;
}

.question button{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background-color:transparent;
  font-size:20px;
  color:#131313;
  text-transform:capitalize;
  font-family:inherit;
  font-weight:500;
  letter-spacing:1px;
  padding:25px 20px 25px 0;
  border:none;
  cursor:pointer;
  transition:color 0.3s;
}

.question button i {
  color:#ff7a00;
  transition:transform 0.3s;
}

.question p{
  color:#37514E;
  line-height:1.6;
  height:0;
  overflow:hidden;
  transition:all 0.3s;
}

.question button.show + p{
  padding-bottom:25px;
  height:auto;
}

.question button.show{
  color:#ff7a00;
}

.question button.show i{
  transform:rotate(180deg);
}


.question button {
  outline: none;
}

.question button:focus {
  outline: none;
  box-shadow: none;
}




/* start FQA */



/* start call to action */

:root{
  --primary:#37514E;
  --accent:#6b9294;
  --light:#d9dbd9;
  --soft:#b7cbcd;
  --gray:#929292;
}

/* CTA Section */
.cta-section{
  padding: 90px 20px;
  background: #37514E;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle overlay effect */
.cta-section::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background: rgba(255,255,255,0.05);
  border-radius:50%;
  top:-120px;
  right:-120px;
}

/* Wrapper */
.cta-wrapper{
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Content */
.cta-title{
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
}

.cta-text{
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 550px;
}

/* Buttons */
.cta-buttons{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn{
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  display: inline-block;
}

/* Primary Button */
.cta-primary{
  background: #ffffff;
  color: var(--primary);
}

.cta-primary:hover{
  background: var(--soft);
  transform: translateY(-3px);
}

/* Secondary Button */
.cta-secondary{
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-secondary:hover{
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  border: none;
  color: white;
}

/* Responsive */
@media (max-width: 992px){
  .cta-wrapper{
    flex-direction: column;
    text-align: center;
  }

  .cta-title{
    font-size: 1.9rem;
  }
}

@media (max-width: 576px){
  .cta-section{
    padding: 60px 15px;
  }

  .cta-title{
    font-size: 1.5rem;
  }

  .cta-text{
    font-size: 1rem;
  }

  .cta-btn{
    width: 100%;
    text-align: center;
  }
}







/* end call to action */


/* start critical */
.critical .critical-item{
    height: 800px;
}

.critical .critical-item p{
    font-size: 17px;
}

.critical .critical-item h3 {
    margin: 0;
    padding: 25px 15px 0px 15px;
    font-size: 25px;
    font-weight: 700;
}


.critical .critical-item p{
    color: #37514E;
    font-size: 16px;
}
.critical-txt{
    padding-bottom: 5% ;
     position: relative;
     height: 370px;
}

 /* .critical-txt::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid rgba(193, 74, 17,0.2);
    z-index: 1;
} */
/* end critical */


/* start why choose us */
.why-icons {
  padding: 100px 20px;
  background: #37514E; /* changed */
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Decorative shapes */
.why-icons::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #415A57; /* changed */
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.why-icons::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #415A57; /* changed */
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.why-title {
  text-align: center;
  font-size: 42px;
  color: white;
  text-transform: uppercase;
 
}



.icon-card {
  background: transparent;
  padding:  10px;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border: 1px solid #C14A11;
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.icon-bg{
    background-color: white;
      padding:  20px;
        border-radius: 40px;
}

.icon-wrap {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  background: rgba(193,74,17,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #C14A11;
}



.icon-card h4 {
  margin: 0;
  color: #37514E;
  font-weight: 600;
}

/* Responsive */

@media(max-width: 576px) {
  .why-title {
    font-size: 30px;
  }
}


.why-subtitle {
  text-align: center;


  font-size: 18px;
  line-height: 1.6;
 
}

/* en why choose us */

.cta-btn:hover{
    color: white !important;
}


.white-logo img{
    width: 180px;
   
}

.why-container .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    background: none;
    border: 2px solid white;
    border-radius: 0;
    transition: .3s;
}

.icon-card{
    margin-bottom: 5%;
}


.about-text .w-75{
display: flex;
justify-content: space-around;
align-items:center ;
}


.hero-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* start responsive */

@media(max-width: 1350px) {
.hero-text{
    padding-top: 8%;
}
}

@media(max-width: 1110px) {
.hero-text{
    padding-top: 10%;
}
}

@media(max-width: 991px) {
.top-bar{
   display: none;
}

.navbar button{
    margin: auto;
}


.icon-card{
    margin-bottom: 5%;
}

.navbar{
    background-color: #37514E;
}
        .navbar-dark .navbar-nav .nav-link,
     .navbar-dark .navbar-nav .nav-link:focus,
      .navbar-dark .navbar-nav .nav-link:hover,
       .navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
     color: white !important; 
}

}


@media(max-width: 768px) {

.about-text .w-75{
    display: block;
}

.hero-btn{
    display: block;
}

}
/* end responsive */



/* start service locations */
.service-locations h2{
font-weight: bold;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;               /* SAME HEIGHT */
  width: 100%;                /* SAME WIDTH */
  background-color: white;
  color: #37514E;
  border: 2px solid #37514E;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  padding: 0 10px;
}

.location-btn:hover {
  background-color: #C14A11;
  color: white;
  border-color: #C14A11;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}



/* end service locations */


.owl-nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px; /* space between arrows */
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #37514E;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background: #C14A11;
}