/********** CSS **********/
:root {
    --primary: #EB1616;
    --secondary: #191C24;
    --light: #6C7293;
    --dark: #000000;
}
.color-change {
      font-size: 2em;
      font-weight: bold;
      animation: colorCycle 2s infinite;
    }

    @keyframes colorCycle {
      0%   { color: #000075;}
      25%  { color: #fff; }
      50%  { color: #000075; }
      75%  { color: #fff; }
      100% { color: #000075;} /* back to start */
    }
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.abi{
  border-top-left-radius: 117px;
}
/*** 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-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 ***/
.logo{
    font-size: 2rem;
    color: #fff !important;
}
.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 {
    margin-right: 30px;
    padding: 40px 0;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

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

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

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

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .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 ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 300px;
    z-index: 1;
}
.details-card-box h4 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 10px;
}
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        /* min-height: 540px; */
    }


    .display-2 {
      font-size: 23px !important;
      padding-top: 160px;

}
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

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

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


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    transition: .5s;
}
.team-img  img{
    display: block;
    width: 100%;
    height: auto;
    min-height: 550px;
    object-fit: cover;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
}
.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    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 {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

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

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

    .profile-box {
      background-color: #111;
      color: #fff;
      padding: 20px;
      border-radius: 12px;
      max-width: 400px;
      margin: 30px auto;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }

    .left-info .age {
      color: hotpink;
      font-weight: bold;
    }

    .left-info .location {
      color: #a569bd;
    }

    .star-row {
      display: flex;
      gap: 5px;
    }

    .star {
      background-color: #dc3545;
      color: white;
      border: none;
      padding: 4px 7px;
      border-radius: 4px;
      font-size: 14px;
    }

    .buttons {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }

    .btn-call {
      background-color: #a2064e;
      color: white;
      flex: 1;
    }
     .btn-call:hover {
      background-color: #000075;
      color: white;
      flex: 1;
    }

    .btn-whatsapp {
      background-color: green;
      color: white;
      flex: 1;
    }
       .btn-whatsapp:hover {
      background-color: #000075;
      color: white;
      flex: 1;
    }

    @media (max-width: 576px) {
      .top-section {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
      }
.logo{
    font-size: 1.8rem;
    color: #fff !important;
}
      .star-row {
        justify-content: flex-start;
      }

      .buttons {
        flex-direction: column;
      }
    }
      .blue-box {
      background-color: #02336a;
      color: #fff;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    }

    .blue-box h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 15px;
      border-bottom: 2px solid white;
      padding-bottom: 8px;
    }

    .blue-box p {
      font-size: 1rem;
      line-height: 1.6;
    }

    @media (max-width: 576px) {
      .blue-box {
        padding: 25px 15px;
      }

      .blue-box h2 {
        font-size: 1.5rem;
      }
            .search-wrapper {
          display: flex;
          align-items: center;
          border: 1px solid #ccc;
          background: white;
          padding: 5px 15px;
          width: 100% !important;
          margin: auto;
      }
    }
    .search-container {
      width: 100%;
      background-color: #A2064E;
      padding: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .search-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    background: white;
    padding: 5px 15px;
    width: 55%;
    margin: auto;
    border-radius: 45px;
    }

    .search-input {
      flex: 1;
      border: none;
      outline: none;
      font-size: 16px;
      padding: 10px;
      border-radius: 30px;
      background: transparent;
    }

    .icons {
      display: flex;
      align-items: center;
    }

    .icons i {
      font-size: 16px;
      color: #666;
      cursor: pointer;
      margin-left: 10px;
    }

    .dropdown {
      margin-top: 8px;
      background: white;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      max-height: 250px;
      overflow-y: auto;
      display: none;
      width: 55%;
      margin: auto;
    }

    .dropdown a {
      display: block;
      padding: 12px 18px;
      text-decoration: none;
      color: #333;
      border-bottom: 1px solid #f0f0f0 !important;
      transition: background 0.2s;
    }

    .dropdown a:hover {
      background-color: #f9d4e2;
    }

    .dropdown a:last-child {
      border-bottom: none;
    }
    .search{
    background-color: #000075;
    width: 100%;
    padding: 12px 11px;
    color: #fff !important;
    border: none;
    text-transform: uppercase;
    font-size: 12px;
  }
    .hidden {
      display: none !important;
    }
    .district-list li{
      list-style: none;
    }
    .display-2{
      font-size: 3rem;
    }
    .callic{
      padding: 8px;
    }
    .wht{
      color: #fff;
    }
      .slider-section {
      background: url('your-background-image.jpg') no-repeat center center;
      background-size: cover;
      height: 100vh;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-direction: column;
      padding: 40px 20px;
    }

    .slider-section h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .btn-group-custom {
      margin-bottom: 40px;
    }



    .btn-whatsapp {
      background-color: #25D366;
      color: white;
      font-weight: bold;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .feature-box {
      text-align: center;
      color: white;
    }

    .feature-box i {
      font-size: 40px;
      margin-bottom: 10px;
      display: block;
    }

    @media (max-width: 768px) {
      .slider-section h1 {
        font-size: 1.8rem;
      }

      .features {
        flex-direction: column;
        gap: 20px;
      }
    }
    /* Sticky Footer Base */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #191c24;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

/* Common Button Styles */
.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  margin: 0 8px;
  max-width: 160px;
}

/* Call Button */
.call-btn {
  background-color: #a2064e;
}
.call-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  color: #fff;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366;
}
.whatsapp-btn:hover {
  background-color: #1ebe5c;
  transform: translateY(-2px);
}

/* Icon size */
.footer-btn i {
  font-size: 18px;
}

/* Mobile Style */
@media (max-width: 480px) {
  .sticky-footer {
    flex-direction: row;
    gap: 10px;
    padding: 8px;
  }

  .footer-btn {
    font-size: 14px;
    padding: 10px;
    gap: 6px;
    max-width: 140px;
  }
}
.heart {
  font-size: 150px;
  color: #e00;
  animation: beat .25s infinite alternate;
  transform-origin: center;
}

/* Heart beat animation */

@keyframes beat{
  to { transform: scale(1.2); }
}
@media only screen and (max-width: 480px) {
  .about-section {
    position: relative;
    margin: 2px 0 70px;
}
}