:root {
  --brand: #01b5fb;
  --primary: #0e1a2b;
  --sub: #ff9933;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}


.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

.carousel-caption h3 {
  font-weight: 700;
}

.carousel-item img {
  filter: brightness(80%);
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
  background-color: transparent;
}

/* .carousel-control-prev-icon:hover,
  .carousel-control-next-icon:hover {
    width: 3rem;
    height: 3rem;
    background-color: var(--brand);
  } */

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 600px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.slider-btn {
        background: #ff9933;
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 16px;
        color: #fff;
        transition: 0.3s;
    }

    .slider-btn:hover {
        background: #0e3a6f;
        color: #fff;
    }

/* .slide-btn{
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.5s;
}
.slide-btn:hover{
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: 5px;
} */


    /* ABOUT SECTION */
.about-section {
    padding: 80px 0;
}

.about-img-box {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.about-img {
    width: 100%;
    height: auto;
    transition: 0.6s ease;
}

/* Hover Zoom Image */
.about-img-box:hover .about-img {
    transform: scale(1.08);
}

/* Subheading */
.about-sub {
    font-size: 16px;
    font-weight: 600;
    color: #ff9933;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Main Heading */
.about-title {
    font-size: 35px;
    font-weight: 700;
    color: #0e3a6f;
    margin-bottom: 20px;
}

/* Description */
.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Button */
.about-btn {
    background: #ff9933;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.about-btn:hover {
    background: #0e3a6f;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 26px;
    }
}

/* SECTION TITLE */
.service-sub {
    color: #ff9933;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    color: #0e3a6f;
}

/* SERVICE CARD */
.service-card {
    display: block;
    padding: 18px;
    text-decoration: none;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* IMAGE BOX */
.service-img-box {
    border-radius: 12px;
    overflow: hidden;
    height: 210px;
    margin-bottom: 18px;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* HEADING */
.service-name {
    font-size: 20px;
    font-weight: 600;
    color: #0e3a6f;
    margin-bottom: 12px;
}

/* BUTTON STYLE */
.service-btn {
    color: #ff9933;
    font-weight: 600;
    transition: 0.3s;
}

.service-card:hover .service-btn {
    color: #0e3a6f;
}

/* WHY CHOOSE US SECTION */
.why-choose-section {
    background: #f7f9fb;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.why-sub {
    font-size: 16px;
    color: #ff9933;
    font-weight: 600;
}

.why-title {
    font-size: 34px;
    font-weight: 700;
    color: #0e3a6f;
    margin-top: 10px;
}

.why-text {
    color: #555;
    font-size: 16px;
}

/* Feature Box */
.why-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: 0.35s;
    height: 100%;
}

/* Hover Lift */
.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* ICON STYLE */
.why-icon {
    font-size: 45px;
    color: #ff9933;
    margin-bottom: 15px;
    transition: 0.3s;
}

.why-box:hover .why-icon {
    color: #0e3a6f;
}

.why-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0e3a6f;
    margin-bottom: 12px;
}

.why-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-title {
        font-size: 28px;
    }
}


/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--sub);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--sub);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--sub);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--sub);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--sub);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--sub);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment p {
    color: #fff !important;
}


/*** Testimonial End ***/


/* Contact Section Background */
#contact {
  background:none ;
  padding: 60px 0;
}

/* Headings */
#contact h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color:var(--brand) ; /* dark grey */
}

#contact h5.section-title {
  color: black;
  font-family: "poppins"; 
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#contact .info-box h5 {
  margin-top: 10px;
  font-weight: 600;
  color: var(--brand); /* strong green */
}

/* #contact .info-box p {
  color: #555;
  margin: 0;
  font-size: 15px;
} */

/* Map Styling */
#contact iframe {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Info Boxes - same height */
#contact .info-box {
  /* background: #1c1c1c; */
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 180px; /* ensures equal height */
}

#contact .info-box:hover {
  /* background:#30472a;  */
  transform: translateY(-5px);
}

#contact .info-box h5 {
  margin-top: 10px;
  font-weight: 600;
  color:#1c1c1c;
}

#contact .info-box p{
    color:#1c1c1c;  
    margin: 0;
    font-size: 15px;

}
#contact .info-box p a {
    color:#1c1c1c;  
    margin: 0;
    font-size: 15px;                   
   
}

/* Icons */
#contact .info-box .icon {
  font-size: 30px;
  color: var(--brand);
  margin-bottom: 10px;
}

.foot-icon{
    height: 70px;
}


/* CTA SECTION */
.cta-section{
    position:relative;
    background:url('../img/image-2/cta.jpg') center/cover no-repeat;
    padding:90px 20px;
    text-align:center;
    color:#fff;
    border-radius:0;
}

.cta-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:750px;
    margin:0 auto;
}

.cta-content h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
    color: white;
}

.cta-content p{
    font-size:17px;
    margin-bottom:25px;
    line-height:1.7;
    color: #f5f5f5;
}

.cta-btn{
    display:inline-block;
    background:#ff7e00;
    padding:14px 32px;
    color:#fff;
    border-radius:8px;
    font-weight:600;
    font-size:16px;
    transition:0.3s;
}

.cta-btn:hover{
    background: var(--primary);
    transform:translateY(-3px);
    color: white;
}

/* Responsive */
@media (max-width:768px){
    .cta-content h2{
        font-size:28px;
    }
    .cta-content p{
        font-size:15px;
    }
}


        /*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/


.why-us {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--surface-color);
}
.why-us .why-box {
  color: white;
  background: var(--brand);
  padding: 30px;
}

.why-us .why-box h3 {
  color: white;
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--brand), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: white;
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: white;
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: rgb(243, 243, 243);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--brand);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--brand);
  background: var(--primary);
}




 /* Path */

.banner-area {

  position: relative;

  min-height: 300px;

  color: #fff;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(../img/image-2/path.jpg) ;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



.banner-title {

  color: #fff;

  text-transform: uppercase;

  font-size: 38px;

  font-weight: 900;

  font-family: "Volkhov", "DM Serif Display", 'cursive' !important;

}



@media (max-width: 767px) {

  .banner-title {

    font-size: 48px;

  }

}



@media (max-width: 575px) {

  .banner-title {

    font-size: 32px;

  }

}



.banner-text {

  position: absolute;

  top: 50%;

  left: 0;

  right: 0;

  max-width: 1170px;

  margin: 0 auto;

  width: 100%;

  z-index: 1;

  -webkit-transform: translateY(-50%);

          transform: translateY(-50%);

}



.banner-heading {

  text-align: center;

}



.breadcrumb {

  padding: 0;

  background: none;

  font-weight: 700;

  text-transform: uppercase;

  font-size: 12px;

}



.breadcrumb li a,

.breadcrumb .breadcrumb-item,

.breadcrumb li a:focus {

  color: #fff !important;

  text-decoration: none;

}



.breadcrumb li a:hover {

  text-decoration: underline;

}



.breadcrumb .breadcrumb-item + .breadcrumb-item::before {

  color: #fff;

}