h1,h2,h3,h4,h5,h6{
  font-family:'Rajdhani' !important;
}
/* cursor */
@media (min-width: 992px) {
    .trail-cursor {
        width: 30px;
        height: 30px;
        border: 2px solid #E72D33;
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 999999;
        transform: translate(-50%, -50%);
    }

    .trail-cursor .dot {
        width: 5px;
        height: 5px;
        background: #E72D33;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 991px) {
    .trail-cursor {
        display: none !important;
    }
}

/* preloader css start */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;   
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999;    
}
.loader {
    width: 45px;
    height: 45px;
    border: 4px solid #00A6C7;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* selection css start */

::selection {
    color: #000;
    background: #00f260;
    text-shadow: 2px 2px 8px #0575e6;
}

/* scroller */
@media (min-width: 992px) {
  ::-webkit-scrollbar {
    width: 8px !important;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #0575e6, #00f260, #0575e6);
    border-radius: 10px;
  }
}

/* topbar css start navbar */
 
    
  .top-bar-unique {
  background: linear-gradient(45deg, #0575e6, #00f260, #0575e6);
  color: #000;
  font-size: 14px;
  padding: 6px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
   .top-bar-unique {
  background: #102a43;
  color: #fff;
  }
}

.topbar-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  padding: 0 15px;
}
.top-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.top-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.top-contact a i {
  color: #fff;
}

.top-contact a:hover {
  color: #fff;
}

.divider {
  opacity: 0.4;
}
.top-marquee {
  flex: 1;
  overflow: hidden;
  margin-left: 20px;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 18s linear infinite;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.top-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}
@media (max-width: 768px) {
  .top-contact {
    display: none;
  }
  .marquee-track {
    font-size: 13px;
  }
}

    
    .custom-navbar {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 0 !important;
    }
    
    .custom-navbar .navbar-brand img {
      height: 70px;
      max-height: 70px;
      width: auto;
    }
    
    .navbar-nav .nav-link {
      color: #0b1f3f;
      font-weight: 500;
      margin: 0 8px;
      transition: color 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #f25b5b;
    }
    .nav-item{
       font-family:'Rajdhani' !important;
    }
    
    .sticky-top {
      top: 0;
      z-index: 2000;
    }
    

    .custom-toggler {
      border: none;
      padding: 4px 8px;
    }
    
    .custom-toggler:focus {
      box-shadow: none;
    }
    
    .custom-toggler .navbar-toggler-icon {
      background-image: none;
      width: auto;
      height: auto;
    }
    
    .custom-toggler .navbar-toggler-icon i {
      color: #0b1f3f;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }
    
    .custom-toggler[aria-expanded="true"] .navbar-toggler-icon i {
      transform: rotate(90deg);
    }
    
    .custom-dropdown {
      border: 1px solid #f25b5b !important;
      border-radius: 8px !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 6px 0 !important;
      margin-top: 10px !important;
      min-width: 220px !important;
    }
    
    .custom-dropdown .dropdown-item {
      padding: 8px 10px !important;
      color: #0b1f3f !important;
      transition: all 0.3s ease;
      font-weight: 500;
      font-size: 13px !important;
      border: none !important;
    }
    
    .custom-dropdown .dropdown-item:hover {
      background-color: #f25b5b;
      color: white !important;
      transform: translateX(1px) !important;
    }
    
    .custom-dropdown .dropdown-item i {
      width: 20px;
      text-align: center;
    }
    
    .dropdown-toggle::after {
      transition: transform 0.3s ease;
    }
    
 /* ===== TOGGLER ICON FIX ===== */

/* default */
.custom-toggler .close-icon {
  display: none;
}

/* navbar open hone par */
.custom-toggler[aria-expanded="true"] .open-icon {
  display: none;
}

.custom-toggler[aria-expanded="true"] .close-icon {
  display: inline-block;
}

/* icon look */
.custom-toggler i {
  font-size: 1.6rem;
  color: #0b1f3f;
  transition: 0.3s ease;
}




/* mobile design navbar new feature start css */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7); 
  backdrop-filter: blur(10px); 
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 9999;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-bottom-nav.hide {
  transform: translateY(100%);
  opacity: 0;
}

.mobile-bottom-nav .nav-item {
  color: #000;
  text-align: center;
  flex-grow: 1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-bottom-nav .nav-item i {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
  color: #21cdc0;
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none;
  }
}



/* footer css start*/
    .footer-wave {
            margin-bottom: -1px;
        }

        footer {
            background: #1D5E7C;
            color: #fff;
            padding: 60px 0 20px;
            position: relative;
        }

        footer h4 {
            border-bottom: 2px solid #fff;
            display: inline-block;
            padding-bottom: 5px;
            margin-bottom: 15px;
            font-size : 20px;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: #fff;
            padding-left: 5px;
        }

        .footer-logo {
            width: 200px;
            height: 90px;
        }

        .social-icon a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: #fff;
            color: #00a6c7;
            border-radius: 50%;
            margin-right: 10px;
            transition: 0.3s;
        }

        .phone-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    
}
@media (max-width: 575px) {
    .phone-line {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}

        .social-icon a:hover {
            background-color: #fff;
            color: #00a6c7;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #fff;
            font-size: 14px;
        }

        .app-badges {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: nowrap; 
            justify-content: flex-start;
            align-items: center;
        }

        .app-badge {
            height: 40px;
            transition: transform 0.3s ease;
            flex-shrink: 0; 
        }

        .app-badge:hover {
            transform: scale(1.05);
        }

        @media (min-width: 768px) {
            .app-badges {
                flex-wrap: nowrap;
            }
        }

        @media (max-width: 576px) {
            footer {
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
            
            .app-badges {
                justify-content: center;
                flex-wrap: wrap; 
            }
        }



/* ------------ BUTTON CSS start-------------- New design*/

    .button {
      --primary: #f25b5b;
      --neutral-1: #f7f8f7;
      --neutral-2: #e7e7e7;
      --radius: 14px;

      cursor: pointer;
      border-radius: var(--radius);
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
      border: none;
      box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 5px 0px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
       display: inline-block;
      justify-content: center;
      position: relative;
      transition: all 0.3s ease;
      padding: 18px;
      height: 66px;
      color : #222;
     
      font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
    }

    .button:hover {
      transform: scale(1.02);
      box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 10px 3px -3px rgba(0, 0, 0, 0.04);
    }

    .button:active {
      transform: scale(1);
      box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
        0 10px 3px -3px rgba(0, 0, 0, 0.2);
    }

    .button:after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      border: 2px solid transparent;
      background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45))
        border-box;
      z-index: 0;
      transition: all 0.4s ease;
    }

    .button:hover::after {
      transform: scale(1.05, 1.1);
      box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
    }

    .button::before {
      content: "";
      inset: 7px 6px 6px 6px;
      position: absolute;
      background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
      border-radius: 30px;
      filter: blur(0.5px);
      z-index: 2;
    }

    .state {
    
      z-index: 2;
      display: flex;
      position: relative;
    }

    .state p {
      display: flex;
      align-items: center;
      justify-content: center;
    }


    .state--sent {
      display: none;
    }
    .outline {
      position: absolute;
      border-radius: inherit;
      overflow: hidden;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.4s ease;
      inset: -2px -3.5px;
    }
    .outline::before {
      content: "";
      position: absolute;
      inset: -100%;
      background: conic-gradient(
        from 180deg,
        transparent 60%,
        white 80%,
        transparent 100%
      );
      animation: spin 2s linear infinite;
      animation-play-state: paused;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .button:hover .outline {
      opacity: 1;
    }
    .button:hover .outline::before {
      animation-play-state: running;
    }
    .state p span {
      display: block;
      opacity: 0;
      animation: slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
    }

    .button:hover p span {
      opacity: 1;
      animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
    }

    @keyframes slideDown {
      0% {
        opacity: 0;
        transform: translateY(-20px) translateX(5px) rotate(-90deg);
        color: var(--primary);
        filter: blur(5px);
      }
      30% {
        opacity: 1;
        transform: translateY(4px);
        filter: blur(0);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes wave {
      50% {
        color: var(--primary);
        transform: translateY(-3px);
      }
    }
    @keyframes land {
      0% {
        transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2);
        opacity: 0;
      }
      100% {
        transform: translateX(0) rotate(0);
        opacity: 1;
      }
    }
    @keyframes appear {
      0% {
        opacity: 0;
        transform: scale(4) rotate(-40deg);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }


    /* send button css start */

 
.send-btn {
  font-family: inherit;
  font-size: 18px;
  background: #00a6c7;
  color: white !important;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}

.send-btn span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.4s ease-in-out;
  white-space: nowrap; 
}

.send-btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.4s ease-in-out;
}


.send-btn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}


.send-btn:hover svg {
  transform: translateX(calc(100% - 10px)) rotate(45deg) scale(1.1) !important;
}

.send-btn:hover span {
  transform: translateX(150%);
}

.send-btn:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from { transform: translateY(0.1em); }
  to   { transform: translateY(-0.1em); }
}

