/********** Template CSS **********/
:root {
    --primary: #FF3E41;
    --secondary: #51CFED;
    --light: #F8F2F0;
    --dark: #060315;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

@media (max-width: 576px) {
  .col-11 {
    padding-left: 0;   
    padding-right: 0;
    text-align: center; 
  }

  .col-11 h1 {
    font-size: 28px;  
    line-height: 1.3;  
  }

  .col-11 h4 {
    font-size: 16px;   
  }

  .col-11 p {
    font-size: 14px;   
  }
}

/* Carousel images height control */
.owl-carousel-item img {
  height: 700px;          
  object-fit: cover;     
  width: 100%;
}

/* Navbar*/
.navbar {
  min-height: 100px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .navbar-brand img {
    max-height: 100px;
    margin-top: 6px;   
    margin-bottom: 4px;  
  }

  .navbar {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

/* Nav links spacing */
.navbar-nav .nav-link {
  padding: 20px 18px;
}

/* Phone number text bigger */
.navbar h4 {
  font-size: 1.4rem;
}

.order-btn {
  background-color: #e00000;
  color: #fff;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.order-btn:hover {
  background-color: transparent;
  color: #e00000;
  border: 2px solid #e00000;
}

.order-btn:focus,
.order-btn:active {
  outline: none;
  box-shadow: none;
  /* default glow remove */
}

.order-btn:hover {
  background-color: transparent;
  color: #e00000;
  border: 2px solid #e00000;
  box-shadow: 0 4px 10px rgba(224, 0, 0, 0.2);
}

/* Mobile responsive spacing for button */
@media (max-width: 991px) {
  .order-btn {
    margin-left: 15px;
    margin-bottom: 10px;
  }
}

/* about image */
.about-img {
  transition: all 0.6s ease-in-out;
}

.about-img:hover {
  transform: scale(1.1);
  /* zoom effect */
  filter: brightness(1.1);
}

.position-relative.overflow-hidden {
  overflow: hidden;
}

/* transportation feet images */
/* Common transition for all */
.card img {
  transition: all 0.5s ease-in-out;
}

/* Stylish Hover 1: Zoom + Rotate  */
.card:hover img {
  transform: scale(1.08) rotate(2deg);
  filter: brightness(0.95);
}

/* Stylish Hover 2: Blur background + Focus */
.card:hover img {
  filter: blur(2px) brightness(0.8);
  transform: scale(1.05);
}

/* Stylish Hover 3: Border Glow */
.card {
  overflow: hidden;
  position: relative;
}

.card img {
  display: block;
}

.card:hover img {
  transform: scale(1.05);
}

.card:hover {
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
  border: 2px solid #0d6efd;
}

/*Whatsapp btn */
/* Call Button */
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 135px;   /* वर */
    right: 20px;     /* सर्व बटणांसाठी समान */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WhatsApp Button */
.floata {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 75px;    /* Call च्या खाली */
    right: 20px;     /* back-to-top सारखं align */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 15px;    /* WhatsApp च्या खाली */
    right: 20px;     /* एकाच vertical line मध्ये */
    background-color: red;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Icon size */
.float i,
.floata i,
.back-to-top i {
    color: white;
    font-size: 24px;
}

/*  our values */
.flip-card {
  background: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.flip-card-front {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.flip-card-back {
  background: linear-gradient(135deg, #0d6efd, #6c63ff);
  color: white;
  transform: rotateY(180deg);
  padding: 20px;
  font-size: 15px;
}

.icon-box i {
  font-size: 40px;
  /* desktop sathi */
}

@media (max-width: 768px) {
  .icon-box i {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .icon-box i {
    font-size: 60px;
  }
}

.icon-box {
  text-align: center;
  padding: 20px 10px;
}

/*  text */
.door-to-door {
  position: relative;
  min-height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* 🔥 Background image zoom effect */
.door-to-door::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/back-img1.jpg") center center / cover no-repeat;
  z-index: 0;

  transform: scale(1);
  animation: bgZoom 15s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15); /* हलक्या zoom साठी */
  }
}

/* Overlay black effect */
.door-to-door::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.door-to-door .overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.door-to-door h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255,215,0,0.8), 2px 2px 6px rgba(0,0,0,0.9);
  margin-bottom: 15px;

  opacity: 0;
  animation: fadeUp 1.5s ease forwards;
}

.door-to-door p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);

  opacity: 0;
  animation: fadeUp 1.5s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section */
.partner-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  width: 250px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px 15px;
}

/* Hover Effect */
.partner-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  background: #f8f9fa; /* हलका grey background effect */
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 15px;
  background: #f5f5f5;
  transition: transform 0.3s ease, background 0.3s ease;
}

.partner-card:hover .icon-circle {
  transform: scale(1.1);
  background: #e9ecef;
}

/* Text */
.partner-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.partner-card:hover h3 {
  color: #0d6efd; /* Bootstrap primary color */
}

.partner-card p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
}


/* Section */
.rate-section {
  background: #f3f4f6;
  padding: 70px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.rate-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.rate-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* Cards Layout */
.rate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.rate-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.rate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Circle Icon */
.icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ff2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-box img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Text */
.rate-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0d0e0f;
}

.rate-card p {
  font-size: 1rem;
  color: #374151;
}

/* footer */
/* Default link style */
.footer .btn-link {
  color: #ccc;
  transition: color 0.3s ease;
}

/* Hover color */
.footer .btn-link:hover {
  color: #0d6efd;
}

/* Active*/
.footer .btn-link:focus,
.footer .btn-link:active {
  color: #ffc107;
  font-weight: bold;
}

.branch-name {
  color: #f6f4ec;
  /* Default gold */
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  /* smooth effect */
}

.branch-name:hover {
  color: #FF4500;
  cursor: pointer;
}


/* Testimonial Styling */
.fancy-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  min-height: 300px;
  /* bigger height */
  max-width: 400px;
  /* bigger width */
  margin: auto;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fancy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.fancy-card p {
  font-style: italic;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.fancy-card h5 {
  font-weight: 600;
  font-size: 20px;
}

.testimonial-carousel .owl-item {
  display: flex;
  justify-content: center;
  /* cards center align */
}

/*about page */
.page-header {
  background: url('img/worker.jpg') center center no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  padding: 180px 0 100px 0;
}

@media (min-width: 768px) {
  .page-header {
    min-height: 500px;
    /* Tablet and above */
  }
}

@media (min-width: 1200px) {
  .page-header {
    min-height: 500px;
  }
}

/* Heading color */
.heading-text {
  color: rgb(210, 20, 55);
  font-weight: 300;
}

/* Breadcrumb links */
.breadcrumb-link {
  color: rgb(210, 20, 55) !important;
  text-decoration: none;
}

/* Breadcrumb active item */
.breadcrumb-active {
  color: rgb(210, 20, 55) !important;
  font-weight: bold;
}

.breadcrumb .breadcrumb-link {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.breadcrumb .breadcrumb-active {
  font-size: 20px;
  font-weight: 600;
  color: #ffd700;
}

/*why choose  */
/* Feature Box Styling */
.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Border glow on hover */
.feature-box:hover {
  border-color: #e63946;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
  transform: translateY(-5px);
}

/* Icon styling */
.feature-box i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e63946;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
}

/* Pulse + rotate on hover */
.feature-box:hover i {
  background: #d00000;
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 0 20px rgba(224, 0, 0, 0.5);
}

/* Text animations */
.feature-box h5 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.feature-box p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #555;
}

.feature-box:hover h5 {
  transform: translateX(5px);
}

/* Fade-in animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-box {
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

.feature-box:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-box:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-box:nth-child(3) {
  animation-delay: 0.6s;
}


/* why choose image */
/* Smooth Zoom In */
.col-lg-6.pe-lg-0 img {
  transition: all 0.5s ease;
}

.col-lg-6.pe-lg-0 img:hover {
  filter: brightness(0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(1.04);
}

/*Contact page*/
.contact-card {
  background: #f7f0f0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: row;
  height: 100%; /* equal height force */
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .icon-circle {
    margin-bottom: 10px;
  }
}


/* services */
.service-img {
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-img {
    height: auto;      
    object-fit: contain; 
  }
}
.service-item p {
    text-align: center;       
    max-width: 90%;           
    margin: 0 auto;           /* horizontally center */
    line-height: 1.6;         /* readable spacing */
}

@media (min-width: 992px) {   /* desktop */
    .service-item p {
        max-width: 80%;       
    }
}

@media (max-width: 767px) {   /* mobile */
    .service-item p {
        font-size: 13px;
        max-width: 95%;       
    }
}



.owl-nav {
  display: none !important;
}
.heading-fix {
  position: relative;
  left: -8px; /* जास्त/कमी करून balance मिळव */
  
}
/* Mobile view (max-width: 576px) */
@media (max-width: 576px) {
  .heading-fix {
    left: -4px;  /* कमी shift mobile वर */
  }
}

/* Tablet view (576px ते 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .heading-fix {
    left: -6px;
  }
}
.how-it-works {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
}

.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.icon-circle1 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    margin: 0 auto;
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    font-size: 14px;
}

.btn-outline-primary, 
.btn-outline-success, 
.btn-outline-warning, 
.btn-outline-danger {
    border-width: 2px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .icon-circle1 {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}
.footer-email {
    font-size: 16px; /* default desktop size */
    word-break: break-word; 
    font-weight: 500px;
}

@media (max-width: 576px) {
    .footer-email {
        font-size: 13px;  
        font-weight: 800;
    }
}
