/********** Template CSS **********/
:root {
    --primary: #039554;
    --secondary: #0475C0;
    --light: #F7F8FC;
    --dark: #111111;
}

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

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}


/*** 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: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    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 ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);

    background-color: white;
}


.navbar{
    background-color: white;
}



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

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #555555;
    font-weight: 500;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

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

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/page_header.jpeg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}




/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    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;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    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);
}

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


/* Custom */
.head{
    font-size: 40px !important;
    margin-left: 50px !important;
}
 .carousel-caption {

     text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
 }



 .btn-primary {

     background-color: #0475C0;
     border-color: #039554;
 }

 .btn-primary:hover {
     background-color: #2e7d32;
     border-color: #2e7d32;
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 5%;
 }

 

/* vision ans mission card  */

  .mission-box,
  .vision-box {
      transition: all 0.3s ease;
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .mission-box {
      background-color: rgba(40, 167, 69, 0.1);
      border: 1px solid rgba(40, 167, 69, 0.2);
  }

  .vision-box {
      background-color: rgba(13, 110, 253, 0.1);
      border: 1px solid rgba(13, 110, 253, 0.2);
  }

  .mission-box:hover {
      background-color: rgba(40, 167, 69, 0.2);
      transform: translateY(-5px);
  }

  .vision-box:hover {
      background-color: rgba(13, 110, 253, 0.2);
      transform: translateY(-5px);
  }

  .hover-content {
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .mission-box:hover .hover-content,
  .vision-box:hover .hover-content {
      opacity: 1;
  }

  .icon-box {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .bg-light-success {
      background-color: rgba(40, 167, 69, 0.1) !important;
  }

  .modal-content {
      border-radius: 10px;
      overflow: hidden;
  }

  /* why choose kalika global  */
   .service-item {
       transition: all 0.3s ease;
       height: 100%;
       border: 1px solid rgba(40, 167, 69, 0.1);
   }
   .service-item i{
    color: #0475C0 !important;
   }

   .service-item:hover {
       transform: translateY(-10px);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
       border-color: rgba(40, 167, 69, 0.3);
   }

   .icon-box {
       width: 70px;
       height: 70px;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       transition: all 0.3s;
   }

   .service-item:hover .icon-box {
       background-color: rgba(40, 167, 69, 0.2) !important;
       transform: rotate(5deg);
   }
   /* how it works  */

        .process-flow {
            position: relative;
            display: flex;
            justify-content: space-between;
            padding: 80px 0 60px;
        }
    
        .process-line {
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: #0475C0;
            z-index: 0;
            background: linear-gradient(to right, #039554, #0475C0);
        }
    
        .process-step {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 22%;
            z-index: 1;
        }
    
        .step-dot {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3CB815, #4CD964);
        }
    
        .step-icon {
            color: white;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }
    
        .step-content {
            text-align: center;
            padding: 0 15px;
            transition: all 0.3s ease;
        }
    
        .step-content h4 {
            font-weight: 600;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
    
        .step-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }
    
        .process-step:hover .step-dot {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 15px 25px rgba(60, 184, 21, 0.3);
            background: linear-gradient(135deg, #0475C0, #039554);
        }
    
        .process-step:hover .step-icon {
            transform: scale(1.2) rotate(10deg);
        }
    
        .process-step:hover .step-content h4 {
            color: #0475C0;
        }
    
        .process-step:hover .step-content {
            transform: translateY(5px);
        }
    
        @media (max-width: 991.98px) {
            .process-flow {
                flex-wrap: wrap;
                justify-content: center;
                padding: 60px 0 40px;
            }
    
            .process-step {
                width: 45%;
                margin-bottom: 50px;
            }
    
            .process-line {
                display: none;
            }
        }
    
        @media (max-width: 575.98px) {
            .process-step {
                width: 100%;
                margin-bottom: 40px;
            }
    
            .step-dot {
                width: 50px;
                height: 50px;
            }
    
            .step-icon {
                font-size: 1.2rem;
            }
        }
/* certification  */

  .certification-card {
      position: relative;
      height: 100%;
      transition: all 0.3s ease;
      text-align: center;
  }

  .certification-img {
      position: relative;
      width: 160px;
      height: 160px;
      margin: 0 auto 15px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
  }

  .certification-img img {
      max-height: 100%;
      max-width: 100%;
      transition: all 0.3s ease;
  }

  .certification-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(60, 184, 21, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease;
      
  }

  .overlay-content {
      transform: translateY(20px);
      transition: all 0.3s ease;
     
  }

  .certification-detail {
      padding: 0 10px;
  }

  .certification-detail p {
      font-size: 0.85rem;
      color: #555;
      margin-bottom: 0;
  }

  .certification-card:hover .certification-img img {
      transform: scale(1.1);
  }

  .certification-card:hover .certification-overlay {
      opacity: 1;
  }

  .certification-card:hover .overlay-content {
      transform: translateY(0);
  }

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

  @media (max-width: 991.98px) {
      .certification-img {
          width: 150px;
          height: 150px;
      }
  }

  @media (max-width: 767.98px) {
      .certification-img {
          width: 170px;
          height: 170px;
      }
  }
  .ca{
    margin-top: 80px !important;
  }

.mi{
    background-color: #039554;
}
.mi:hover
{
}  
.vi{
    background-color: #0475C0;
}
 .vi:hover,.mi:hover {
     transform: translateY(-5px);
     /* Lift up slightly */
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
     /* Add shadow for depth */
     
     /* Slightly lighter background */
     border-color: #3CB815;
     /* Add your brand green to border */
 }
   .about-img {
       transition: all 0.3s ease;

   }

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

   .about-img img {
       transition: transform 0.5s ease;
   }
        .btn-emoji {
            background-color: white;
            color: #F65005;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
    
        .btn-emoji:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            color: #F65005;
        }
    
        .btn-emoji:active {
            transform: translateY(1px);
        }
    
        .emoji {
            display: inline-block;
            transition: all 0.3s ease;
            font-size: 1.3rem;
        }
    
        .btn-emoji:hover .emoji:first-child {
            transform: translateX(-5px) rotate(-15deg);
        }
    
        .btn-emoji:hover .emoji:last-child {
            transform: translateX(5px) rotate(15deg);
        }
    
        /* Optional pulse animation */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
    
            50% {
                transform: scale(1.05);
            }
    
            100% {
                transform: scale(1);
            }
        }
    
        .btn-emoji:hover {
            animation: pulse 1.5s infinite;
        }


/* Social Slider Container */
.social-slider {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    /* Reverse column order */
    align-items: center;
}

/* Trigger Button */
.slider-trigger {
    width: 65px;
    height: 65px;
    background-color: #0475C0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    order: 1;
    /* Ensure trigger stays at bottom */
}

.slider-trigger:hover {
    background-color: #039554;
    transform: scale(1.1);
}

.slider-trigger i {
    font-size: 30px;
}

/* Slider Content */
.slider-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.slider-content.open {
    max-height: 300px;
    /* Adjust based on number of icons */
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #0475C0;
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
    background-color: #039554;
}

.social-icon i {
    font-size: 20px;
    font-weight: 200;
}


/* timeline  */

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

.main-timeline5 .timeline {
    position: relative;
    margin-top: -79px
}

.main-timeline5 .timeline:first-child {
    margin-top: 0
}

.main-timeline5 .timeline-icon,
.main-timeline5 .year {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.main-timeline5 .timeline:after,
.main-timeline5 .timeline:before {
    content: "";
    display: block;
    width: 100%;
    clear: both
}

.main-timeline5 .timeline:before {
    content: "";
    width: 100%;
    height: 100%;
    box-shadow: -8px 0 5px -5px rgba(0, 0, 0, .5) inset;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2
}

.main-timeline5 .timeline-icon {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #0475C0;
    border-right-color:#0475C0;
    z-index: 1;
    transform: rotate(45deg)
}

.main-timeline5 .year {
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    font-size: 40px;
    font-weight: 700;
    color: #0475C0;
    text-align: center;
    transform: rotate(-45deg)
}

.main-timeline5 .timeline-content {
    width: 35%;
    float: right;
    background: #0475C0;
    padding: 30px 20px;
    margin: 50px 0;
    z-index: 1;
    position: relative
}

.main-timeline5 .timeline-content:before {
    content: "";
    width: 20%;
    height: 15px;
    background: #0475C0;
    position: absolute;
    top: 50%;
    left: -20%;
    z-index: -1;
    transform: translateY(-50%)
}

.main-timeline5 .title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px
}

.main-timeline5 .description {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin: 0
}

.main-timeline5 .timeline:nth-child(2n):before {
    box-shadow: 8px 0 5px -5px rgba(0, 0, 0, .5) inset
}

.main-timeline5 .timeline:nth-child(2n) .timeline-icon {
    transform: rotate(-135deg);
    border-top-color: #039554;
    border-right-color: #039554;
}

.main-timeline5 .timeline:nth-child(2n) .year {
    transform: rotate(135deg);
    color: #039554
}

.main-timeline5 .timeline:nth-child(2n) .timeline-content {
    float: left
}

.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
    left: auto;
    right: -20%
}

.main-timeline5 .timeline:nth-child(2n) .timeline-content,
.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
    background: #039554
}

.main-timeline5 .timeline:nth-child(3n) .timeline-icon {
    border-top-color: #F65005;
    border-right-color: #F65005
}

.main-timeline5 .timeline:nth-child(3n) .year {
    color: #F65005
}

.main-timeline5 .timeline:nth-child(3n) .timeline-content,
.main-timeline5 .timeline:nth-child(3n) .timeline-content:before {
    background: #F65005
}

.main-timeline5 .timeline:nth-child(4n) .timeline-icon {
    border-top-color: #105572;
    border-right-color: #105572
}

.main-timeline5 .timeline:nth-child(4n) .year {
    color: #105572
}

.main-timeline5 .timeline:nth-child(4n) .timeline-content,
.main-timeline5 .timeline:nth-child(4n) .timeline-content:before {
    background: #105572
}

@media only screen and (max-width:1199px) {
    .main-timeline5 .timeline {
        margin-top: -103px
    }

    .main-timeline5 .timeline-content:before {
        left: -18%
    }

    .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
        right: -18%
    }
}

@media only screen and (max-width:990px) {
    .main-timeline5 .timeline {
        margin-top: -127px
    }

    .main-timeline5 .timeline-content:before {
        left: -2%
    }

    .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
        right: -2%
    }
}

@media only screen and (max-width:767px) {
    .main-timeline5 .timeline {
        margin-top: 0;
        overflow: hidden
    }

    .main-timeline5 .timeline:before,
    .main-timeline5 .timeline:nth-child(2n):before {
        box-shadow: none
    }

    .main-timeline5 .timeline-icon,
    .main-timeline5 .timeline:nth-child(2n) .timeline-icon {
        margin-top: -30px;
        margin-bottom: 20px;
        position: relative;
        transform: rotate(135deg)
    }

    .main-timeline5 .timeline:nth-child(2n) .year,
    .main-timeline5 .year {
        transform: rotate(-135deg)
    }

    .main-timeline5 .timeline-content,
    .main-timeline5 .timeline:nth-child(2n) .timeline-content {
        width: 100%;
        float: none;
        border-radius: 0 0 20px 20px;
        text-align: center;
        padding: 25px 20px;
        margin: 0 auto
    }

    .main-timeline5 .timeline-content:before,
    .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
        width: 15px;
        height: 25px;
        position: absolute;
        top: -22px;
        left: 50%;
        z-index: -1;
        transform: translate(-50%, 0)
    }
}

/* why choose us  */
 .card-main {
     border: none;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     margin-bottom: 30px;
     background: white;
     opacity: 0;
     transform: translateY(50px);
 }
 

 .card-main.visible {
     opacity: 1;
     transform: translateY(0);
 }

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

 .card-icon {
     font-size: 2.5rem;
     color: white;
     margin-bottom: 20px;
 }

 .card-header {
     background: #0475C0;
     color: white;
     padding: 20px;
     position: relative;
 }

 .card-header h3 {
     margin: 0;
 }

 .card-body {
     padding: 30px;
 }

 .product-chip {
     display: inline-block;
     background: var(--light);
     padding: 8px 15px;
     margin: 5px;
     border-radius: 30px;
     font-size: 0.9rem;
 }

 .cta-section {
     background: linear-gradient(135deg, var(--primary), var(--dark));
     color: white;
     padding: 80px 0;
 }

 .btn-cta {
     background: var(--secondary);
     color: var(--dark);
     font-weight: 600;
     padding: 12px 30px;
     border-radius: 50px;
     transition: all 0.3s;
 }

 .btn-cta:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .floating-animation {
     animation: floating 3s ease-in-out infinite;
 }

 @keyframes floating {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .delay-1 {
     transition-delay: 0.2s;
 }

 .delay-2 {
     transition-delay: 0.4s;
 }

 .delay-3 {
     transition-delay: 0.6s;
 }

 .delay-4 {
     transition-delay: 0.8s;
 }

 .delay-5 {
     transition-delay: 1s;
 }


 /* Eanquiry button  */
 /* Base Button Styling */
 .btn-explore {
     background: #3CB815;
     /* Gradient effect */
     border: none;
     color: white;
     font-weight: 100;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     border-radius: 50px !important;
     /* Fully rounded */
     padding: 0.30rem 1.1rem;
   margin-top: 5px;
     /* Better padding */
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     display: inline-block;
     text-align: center;
     white-space: nowrap;
 }

 /* Hover & Active Effects */
 .btn-explore:hover {
     background: var(--secondary);
     /* Reverse gradient */
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 .btn-explore:active {
     transform: translateY(0);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {

     /* For tablets & small laptops */
     .btn-explore {
         padding: 0.6rem 1.5rem;
         font-size: 0.9reFm;
     }
 }

 @media (max-width: 768px) {

     /* For mobile devices */
     .btn-explore {
         padding: 0.5rem 1.25rem;
         font-size: 0.85rem;
         margin-right: 0.5rem !important;
     }
 }
 .visit{
    height: 65px ;
    width: 65px;
 }
 .visit i{
    font-size: 30px;
 }


 /* responsiveness  */

@media (max-width: 768px) {

   /* For mobile devices  */
.logofooter{
    width: 280px; 
    height: 60px;
}
.infbox{
    padding-top: 200px !important;
}
.carouselm{
    height: 700px !important;
}
.headc{
    font-size: 20px !important;
    margin-top: -90px;
    
}
.cbtn{
    margin-bottom: 120px;
}
.carousel-control-prev, .carousel-control-next{
    display: none;

}
.pcb
{
    display: none;
}
.aheading{
    margin-left: 110px;
}
.aimg{
    margin-left: -25px;
    margin-top: -30px;
}
.lgh{
width: 230px !important;
}
.display-3 {
    background-color: white;
    padding: 5px;
    border-radius: 5%;
    text-align: center;
        margin: 0 auto;
        /* Centers the inline-block element */
    
}
 .container.pageheaderhead {
     text-align: center !important;
 }

}

@media (min-width: 769px) and (max-width: 1400px) {

    .carouselm {
            height: 600px !important;
        }
                .headc {
                    font-size: 25px;
                    margin-top: 40px;
                    width: 700px;
        
                }
    .aimg {
            margin-left: -25px;
            margin-top: -30px;
            height: 830px !important;
        }
                .aheading {
                    margin-left: 180px;
                    
                }

    /* For tablets & small laptops */
    .btn-explore {
        padding: 0.6rem 1.5rem;
        font-size: 0.9reFm;
    }
    

.pcb {
            display: none;
        }
        .quiklinks{
            width: 200px;
        }
        .top-bar{
            height: 55px;
        }

        /* logo 
         */
                 .lgh {
                     width: 228px !important;
                 }
}


/* Navbar  */
  /* Style for mobile request quote button */
  .navbar-nav .btn-explore {
      color: white;
      border-radius: 4px;
      padding: 8px 16px;
      text-align: center;
      display: block;
      margin-top: 10px;
  }

  /* Adjust spacing for mobile menu */
  @media (max-width: 991.98px) {
      .navbar-nav {
          padding-bottom: 20px;
      }

      .nav-item {
          padding: 8px 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .navbar-nav .btn-explore {
          margin-top: 20px;
          padding: 10px;
          font-size: 1rem;
      }
  }

/* Font family  */

.navbar .navbar-nav .nav-link{
    font-family: Fortbook, Arial, San-serif !important;

}

  p,h1,h3,h2,h4,h5,a,li,h6{
    font-family: Fortbook, Arial, San-serif !important;
    
  }
  span
  {
    font-family: Fortbook, Arial, San-serif !important;
  }
  p
  {
    
    font-size: 16px !important;
  }
  .linkf{
    font-family: Fortbook, Arial, San-serif !important;
        font-size: 16px !important;
  }
.button{
    font-family: Fortbook, Arial, San-serif !important;
}

