
    /*** Spinner ***/
    #spinner {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
      z-index: 99999;
    }

    #spinner.show {
      transition: opacity 0.5s ease-out, visibility 0s linear 0s;
      visibility: visible;
      opacity: 1;
    }

    /*** Navbar ***/
    .navbar.sticky-top {
      /* top: -100px; */
      transition: 0.5s;
    }

    .navbar .navbar-brand img {
      max-height: 75px;
    }

    .navbar .navbar-nav .nav-link {
      margin-left: 25px;
      padding: 10px 0;
      color: #696e77;
      font-weight: 500;
      outline: none;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
      color: #367582;
      transform: scale(1.1);
    }

    .navbar .dropdown-toggle::after {
      border: none;
      content: "\f107";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      vertical-align: middle;
      margin-left: 8px;
    }

    @media (max-width: 991.98px) {
      .navbar .navbar-brand img {
        max-height: 45px;
      }

      .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
      }

      .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
      }
    }

    @media (min-width: 992px) {
      .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
      }

      .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
      }
    }
.hero {
  position: relative;
  color: white;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a8;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
}
    

/* Creative button */
.creative-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #59848c;
  background-color: #59848c;
  color: #fff;
}

.creative-btn:hover {
  background-color: #fff;
  color: #10515d;
      border-color: #949ca7;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.creative-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(255,255,255,0.2);
  transition: all 0.5s ease;
  z-index: 0;
}

.creative-btn:hover::after {
  height: 300%;
}



/* Creative button */
.secondary-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #59848c;
  background-color: #ffffff00;
  color: #59848c;
}

.secondary-btn:hover {
  background-color: #59848c;
  color: #fff;
      border-color: #59848c;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.secondary-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(255,255,255,0.2);
  transition: all 0.5s ease;
  z-index: 0;
}

.secondary-btn:hover::after {
  height: 300%;
}



/* service */

.services h2 {
  font-size: 2.5rem;
  color: #367582;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card .icon i {
  color: #367582;
  background: #e7f4f6;
  padding: 15px;
  border-radius: 12px;
}
  
.service-card ul li {
  margin-bottom: 6px;
  color: #444;
}

@media (max-width: 576px) {
  .services h2 {
    font-size: 1.8rem;
  }
}

/* why us  */
/* BOX STYLING */
.why-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

/* ICON CONTAINER */
.icon-box {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Colors */
.box-blue {
  background: #3675829e;
}

.box-orange {
  background: #ffe7d7;
}

.box-green {
  background: #e2f8d7;
}

/* Icon coloring */
.box-blue .icon-box i {
  color: #10515d;
}

.box-orange .icon-box i {
  color: #f2994a;
}

.box-green .icon-box i {
  color: #27ae60;
}


/* contact */
#contact .card {
  border-radius: 20px;
}

#contact input, 
#contact textarea {
  border-radius: 10px;
}


.contact-box {
  background: #ffffff;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #3675829e;
  border: 1px solid #3675829e;
  color: #10515d    ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.contact-item:hover .icon-box {
  background: #10515d;
  color: #fff;
  transform: scale(1.08);
}

.contact-item a {
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}



.whatsapp-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.whatsapp-bar:hover {
    background: #1ebe5b;
}


.about-section {
  background: #f8f9fa;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.4s ease;
}

.about-image-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-btn {
  padding: 10px 28px;
  font-size: 1rem;
  border-radius: 10px;
  transition: 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}


.stats-section {
  background: #f0f7fa;
}

.stat-box {
  background: white;
  border-radius: 16px;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.stat-box h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #10515d;
}