@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500&display=swap');


/* Global Styles */
:root {
  --primary-dark: #111827;
  /* Deep Indigo */
  --secondary-dark: #1e3a8a;
  /* Dark Blue-Grey */
  --primary-accent: #00baf2;
  /* Cyan/Turquoise */
  --secondary-accent: #f97316;
  /* Deep Purple */
  --highlight: #ffc107;
  /* Amber/Gold */
  --light-bg: #f9fafb;
  /* Light Gray */
  --text-color: #111827;
  /* Dark Gray Text */
  --white: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5em;
  color: var(--primary-dark);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: var(--text-color);
  background-color: var(--light-bg);
}

a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-accent);
}

.topbarbox a{
    color: var(--white);
}

/* Top Bar */
.top-bar {
  background: var(--secondary-dark);
  font-size: 14px;
  padding: 5px 20px;
}

.top-bar div a {
  color: #ffffff !important;
  margin: 0 8px;
}


/* Main Header */
.main-header {
  background: var(--white);
  border-bottom: 2px solid var(--primary-accent);
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header img {
  height: 60px;
}

.custom-bg {
  background-color: var(--secondary-dark);
  position: relative;
  color: var(--white);
  display: inline-block;
  padding: 10px 50px;
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: background-color 0.3s ease;
}


.custom-bg .btn-light {
  background-color: var(--secondary-accent);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-bg .btn-light:hover {
  background-color: var(--white);
  border-color: var(--secondary-accent);
  color: var(--text-color);
}

.fontlogosubtitle{
    font-size: 14px;
}


@media (max-width: 768px) {
    .fontlogosubtitle{
        font-size: 9px;
    }
}

.imgservicebackground {
  background-color: var(--white);
  padding: 0;
  margin: 0;
  text-align: center;
}
.gate {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background: url('assets/images/savakandar.png') center/contain no-repeat;
  position: relative;
  overflow: hidden;
}

.gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/images/savakandar2.png') center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.gate:hover::after {
  opacity: 1;
}


/* Custom CSS */
.main-menu {
  position: sticky;
  padding: 0 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #ffffff;
  color: var(--primary-dark);
}

.main-menu .nav-link {
  font-weight: 500;
  text-align: center;
  padding: 15px;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-menu .nav-link.active {
  background: var(--secondary-accent);
  color: #fff !important;
  border-radius: 5px;
  padding: 15px 35px;
}
.main-menu .btn-warning {
  background: var(--primary-dark);
  border: none;
}

.main-menu .nav-link:hover::before {
  left: 0;
}


.main-menu .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  padding: 15px 35px;
  background: #3736360c;
  transition: left 0.3s ease;
  z-index: 0;
}

.main-menu .nav-link i {
  margin-right: 8px;
  z-index: 1;
  position: relative;
}

.main-menu .nav-link:hover {
  color: var(--secondary-dark) !important;
}

.main-menu .nav-item {
  flex: 1;
  padding: 0px 10px;
}

/* Caption text center aligned */
.carousel-caption {
  bottom: 30%;
}
.carousel-caption h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.carousel-caption p {
  font-size: 1.2rem;
}

.nav-item.dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
        /* smooth alignment */
    }
    .dropdown-menu {
        background: white;
        /* backdrop-filter: blur(6px); */
        transition: all 0.3s ease-in-out;
      }
      .dropdown-item{
        width: 300px;
        padding: 15px 10px 15px 15px;
    }


  


/* Carousel/Slider */
.carousel-item img {
  /* height: 100; */
  /* Slightly taller for impact */
  object-fit: cover;
  width: 100%;
}

.carousel-caption {
  top: 0;
  bottom: 0;
  left: 10%;
  right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: var(--white);
  /* background: rgba(0, 0, 0, 0.5); */
  /* Darker overlay for text readability */
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 50%;
  /* Constrain caption width */
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); */
}

.carousel-caption h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1.6rem;
  margin-top: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.carousel-caption .btn {
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.carousel-caption .btn-warning {
  background-color: var(--highlight);
  border-color: var(--highlight);
  color: var(--primary-dark);
}

.carousel-caption .btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.carousel-caption .btn-primary {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  color: var(--white);
}

.carousel-caption .btn-primary:hover {
  background-color: #0097a7;
  border-color: #0097a7;
}

.carousel-caption .btn-danger {
  background-color: #e53935;
  border-color: #e53935;
  color: var(--white);
}

.carousel-caption .btn-danger:hover {
  background-color: #c62828;
  border-color: #c62828;
}



/* marqee line */
.marquee-wrapper {
    background: #111827; /* Dark background */
    color: #fff; /* White text */
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
  }

  .marquee-label {
    font-size: 16px;
    font-weight: 700;
    margin-right: 20px;
    padding: 16px 51px;
    background: #facc15; /* Yellow background only for label */
    color: #111827; /* Dark text on yellow */
    white-space: nowrap;
  }

  .marquee {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
  }

  .marquee span {
    font-size: 16px;
    font-weight: 600;
    padding-left: 100%;
    display: inline-block;
  }

  /* Hover par animation stop */
  .marquee-wrapper:hover .marquee {
    animation-play-state: paused;
  }

  @keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }


/* About Section (Welcome to Digital Info Solutions) */
.about-section {
  padding: 80px 0;
}

.about-section h1 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section .lead {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 950px;
  margin: 0 auto 50px;
}

.about-service-box {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 1px solid #eee;
}

.about-service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-accent);
}

.about-service-box i {
  color: var(--primary-accent);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.about-service-box h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.about-service-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.about-service-box a {
  color: var(--secondary-accent);
  font-weight: 500;
  margin-top: 15px;
}

/* Features Section */
.features-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.feature-box {
  transition: all 0.3s ease;
  border-radius: 15px;
  min-height: 280px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  border: 1px solid #f0f0f0;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--highlight);
}

.feature-box .icon-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    45deg,
    var(--primary-accent),
    var(--secondary-accent)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-box .icon-circle img {
  filter: brightness(0) invert(1);
  /* Make icons white */
  width: 50px;
  height: 50px;
}

.feature-box p {
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--primary-dark);
}

/* Services Section (6 boxes) */
.services-grid-section {
  background: linear-gradient(to top, var(--light-bg), var(--white));
  padding: 80px 0;
}

.services-grid-section h2 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 50px;
}

.service-box {
  transition: all 0.3s ease;
  border-radius: 15px;
  background: var(--primary-accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  text-align: center;
  border: 1px solid #eee;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-accent);
}

.service-box .icon-circle {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 3px solid var(--primary-accent);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-box .icon-circle img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.service-box h6 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
}




.btn-apply {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  overflow: hidden;
  backdrop-filter: blur(10px);

  /* Glassy gradient */
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);

  /* Neon glow */
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.6),
              0 0 40px rgba(0, 153, 255, 0.5);
  transition: all 0.4s ease;
}

/* Hover effect */
.btn-apply:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.9),
              0 0 50px rgba(0, 153, 255, 0.7),
              0 0 80px rgba(0, 153, 255, 0.6);
  transform: translateY(-3px) scale(1.05);
}

/* Shiny moving effect */
.btn-apply::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 3s infinite;
}

/* Shine animation */
@keyframes shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}




.main-menu-other{
    background: var(--white);
    padding: 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Our Products Section */
.products-section {
  background: var(--white);
  padding: 80px 0;
}

.products-section h2 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.products-section .lead {
  font-size: 1.15rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 50px;
}

.product-item {
  margin-bottom: 40px;
}

.product-item h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.product-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-item a {
  color: var(--primary-accent);
  font-weight: 500;
}

.products-section .mobile-img {
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

/* Testimonial Section */
.testimonial-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.testimonial-section h2 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 50px;
}

.testimonial-box {
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 320px;
  /* Ensure consistent height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-box .ratio {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.testimonial-box h6 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-box small {
  color: var(--text-color);
  font-size: 0.9rem;
}

.testimonial-section .btn-dark {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.testimonial-section .btn-dark:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

#testimonial-heading{
  font-size: 2vw;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 50px;
}

/* Franchise Button with Glassmorphism and Neon Glow */

.inquiry-btn {
  position: relative;
  display: grid;
  justify-content: center;
  padding: 7px 25px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1.2px;
  border: 1px solid #ffffffad;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  animation: 3s infinite ease-in-out;
  /* Gradient Glass Background */
  background:  var(--secondary-accent);
  transition: all 0.4s ease;
}

/* Hover Effect */
.inquiry-btn:hover {
  letter-spacing: 2px;
  color: white;
}

/* Counter Section */
.counter-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--secondary-accent)
  );
  color: var(--white);
  border-radius: 20px;
  margin: 40px 20px;
  /* Increased margin for floating effect */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  animation: rotateGradient 20s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.counter-section .container {
  position: relative;
  z-index: 1;
}

.counter-section .col-md-3 {
  margin-bottom: 30px;
}

.counter-section i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--highlight);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.counter-section h5 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter-section .counter {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.counter-section .counter + span {
  font-size: 2.5rem;
  font-weight: 700;
  vertical-align: super;
  margin-left: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Latest Updates Section */
.latest-updates-section {
  background: var(--white);
  padding: 80px 0;
}

.latest-updates-section .section-heading h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2vw;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.latest-updates-section .section-heading span {
  background: var(--highlight);
  padding: 8px 20px;
  border-radius: 5px;
  color: var(--primary-dark);
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.latest-updates-box, .benefit-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #eee;
}

.latest-updates-box:hover, .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 7px 1px var(--secondary-accent);
  border-color: var(--primary-accent);
  color: var(--text-color);
}

.latest-updates-box i {
  font-size: 3.5rem;
  color: var(--primary-accent);
  margin-bottom: 15px;
}

.latest-updates-box:hover i,.latest-updates-box:hover p {
  color: var(--secondary-accent);
}

.latest-updates-box p {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.status-btn {
  margin-top: 20px;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
}
.status-btn.live {
  background: #28a745;
  color: #fff;
}
.status-btn.coming {
  background: #ffc107;
  color: #000;
}

.slider-container {
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}
.slider-container::-webkit-scrollbar {
  display: none; /* scroll line hide */
}

.slider-btn {
  position: absolute;
  top: 30%;
  transform: translateY(55%);
  background: var(--secondary-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}



.slider-btn:hover {
  background: #F97316;
}
.prev-btn { left: -25px; }
.next-btn { right: -25px; }




/* Footer Css */
.footer {
  background: linear-gradient(to right, #111827, #201c37);
}
.footer h6 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffc107;
  padding-left: 5px;
}
.social-icons a {
  display: inline-block;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 8px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
}
.social-icons a:hover {
  background: #ffc107;
  color: #000;
}
.footer-bottom {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

#about-heading{
  font-size: 2vw;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
  .carousel-caption {
    max-width: 70%;
    left: 5%;
    padding: 20px 30px;
  }

  .carousel-caption h1 {
    font-size: 2.8rem;
  }

  .carousel-caption p {
    font-size: 1.2rem;
  }

  .carousel-item img {
    height: 400px;
  }

  .products-section .mobile-img {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 10px 20px;
  }

  .top-bar div:first-child {
    margin-bottom: 5px;
  }

  .custom-bg {
    padding: 8px 20px;
    clip-path: none;
    display: block;
    text-align: center;
  }

  .custom-bg .btn {
    margin-bottom: 5px;
  }

  .main-menu .navbar-nav {
    flex-direction: column;
  }

  .main-menu .nav-item {
    flex: none;
    width: 100%;
  }

  .carousel-item img {
    height: 300px;
  }

  .carousel-caption {
    max-width: 90%;
    left: 5%;
    padding: 15px 20px;
    text-align: center;
    align-items: center;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-caption .btn {
    width: 100%;
    max-width: 200px;
  }

  .about-service-box,
  .feature-box,
  .service-box,
  .testimonial-box,
  .latest-updates-box {
    min-height: auto;
    margin-bottom: 30px;
  }

  .counter-section {
    margin: 20px 10px;
    padding: 40px 0;
  }

  .counter-section .col-md-3 {
    margin-bottom: 30px;
  }

  .counter-section i {
    font-size: 3rem;
  }

  .counter-section h5 {
    font-size: 1.1rem;
  }

  .counter-section .counter {
    font-size: 3.5rem;
  }

  .counter-section .counter + span {
    font-size: 2rem;
  }
  
  .footer h6{
      text-align: center !important;
  }

  .footer .col-md-4 {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer ul {
    text-align: center;
  }

  .footer .social-media {
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 576px) {
    
    
  .footer h6{
      text-align: center;
  }
  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .custom-bg {
    padding: 5px 15px;
  }

  .main-header .col-md-6:last-child {
    text-align: center !important;
  }

  .main-header .text-end.px-5.py-2 {
    padding: 10px 15px !important;
  }
}
.top-bar a {
  text-decoration: none;
  color: #333;
  margin: 0 3px;
  transition: 0.2s;
}
.translate-box{
  border: none !important;
}


.news-section {
  padding: 20px;
}

.news-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.card-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card-header {
  background: var(--secondary-dark);
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-body {
  padding: 10px 15px;
}

/* Scroll Effect */
.news-scroll {
  height: 250px;         /* Fixed height for scroll */
  overflow: hidden;
  position: relative;
}
.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
}
.news-scroll:hover .scroll-content {
  animation-play-state: paused;  /* Hover → Pause */
}

/* Animation Keyframes */
@keyframes scroll-up {
  0%   { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}

.news-item {
  padding: 5px 0;
}
.date {
  font-size: 12px;
  color: #777;
}
.badge-new {
  background: red;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
}
.view-all {
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
}


.suvidha-section {
  padding: 50px 20px;
  background: #fff;
}

.suvidha-section .container {
  max-width: 1100px;
  margin: auto;
}

.suvidha-heading {
  font-size: 2rem;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 20px;
}

.suvidha-heading span {
  color: var(--secondary-accent);
  font-weight: bold;
}

.suvidha-intro {
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #444;
}

.suvidha-block {
  margin-bottom: 30px;
}

.suvidha-block h2 {
  color: #0b3d91;
  font-size: 20px;
  margin-bottom: 10px;
}

.suvidha-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}


.business-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.business-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.business-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.business-points li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
}

.business-points i {
  color: #2ecc71;
  margin-right: 8px;
}

.business-idcards {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.business-idcards img {
  max-height: 120px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.business-note {
  font-size: 14px;
  color: #444;
}

.business-docs {
  font-size: 20px;
  font-weight: bold;
  color: #0b3d91;
}

.business-right img {
  max-width: 100%;
  border-radius: 50%;
  border: 5px solid #f5f5f5;
}


.benefits-section {
  padding: 60px 20px;
  background: #fff;
}

.benefits-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.benefits-desc {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
}

.benefit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 7px 1px var(--secondary-accent);
  border-color: var(--primary-accent);
  color: var(--text-color);  
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.benefit-card h5 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.bgwelcome{
    background-color: #ffffff !important;
}

/* Icon Colors */
.blue { color: #004aad; }
.green { color: #008f39; }
.orange { color: #ff6600; }



/* Fix logo alignment in slider */
.logo-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px; /* sabhi logos ka ek jaisa box height */
}

.logo-slider .swiper-slide img {
  max-height: 60px;  /* logo ka max height fix */
  max-width: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  margin: -10px 6px !important; /* left-right space between dots */
}






/* Main wrapper */
.auth-main-box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

/* Left box (Login + Register) */
.left-box {
  display: flex;
  gap: 15px;
  padding: 0px 20px;
}

/* Right box (Franchise rounded) */
.right-box {
  padding: 0px 25px;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------- LOGIN BUTTON ---------------- */
.login-btn-uni {
  padding: 15px 25px;
 border: unset;
 border-radius: 50px;
 color: #212121;
 z-index: 1;
 background: #5e53da;
 position: relative;
 font-weight: 1000;
 font-size: 17px;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 transition: all 250ms;
 overflow: hidden;
}

.login-btn-uni::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 border-radius: 15px;
 background-color: #161691;
 color: #000;
 z-index: -1;
 -webkit-box-shadow: 4px 8px 19px -3px #281066b8;
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 transition: all 250ms
}

.login-btn-uni:hover {
 color: #17086d;
}

.login-btn-uni:hover::before {
 width: 100%;
}


/* ---------------- REGISTER BUTTON ---------------- */
.register-btn-uni {
  border: 1px solid;
  border-radius: 999px;
  font-weight: 900;
  padding: 0.7rem 1.5rem;
  text-transform: uppercase;
  overflow: hidden;
  background: #000;
  color: #fff;
  position: relative;
}

.register-btn-uni .original {
  background: #ff7b00;
  color: #ffffff;
  display: grid;
  inset: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.register-btn-uni:hover .original {
  transform: translateY(100%);
}

.register-btn-uni .letters {
  display: inline-flex;
}

.register-btn-uni span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.2s, opacity 0.2s;
}

.register-btn-uni span:nth-child(2n) {
  transform: translateY(15px);
}

.register-btn-uni:hover span {
  opacity: 1;
  transform: translateY(0);
}

.register-btn-uni:hover span:nth-child(2) { transition-delay: 0.1s; }
.register-btn-uni:hover span:nth-child(3) { transition-delay: 0.2s; }
.register-btn-uni:hover span:nth-child(4) { transition-delay: 0.3s; }
.register-btn-uni:hover span:nth-child(5) { transition-delay: 0.4s; }
.register-btn-uni:hover span:nth-child(6) { transition-delay: 0.5s; }
.register-btn-uni:hover span:nth-child(7) { transition-delay: 0.6s; }
.register-btn-uni:hover span:nth-child(8) { transition-delay: 0.7s; }

/* ---------------- FRANCHISE BUTTON ---------------- */
.franchise-btn-uni {
  position: relative;
  text-decoration: none;
  color: #fff;
  /* background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987); */
  padding: 14px 25px;
  border-radius: 50px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  font-weight: 700;
}

.franchise-btn-uni span {
  position: relative;
  z-index: 1;
}

.franchise-btn-uni::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #272727;
  border-radius: 50px;
  transition: 0.5s;
}

.franchise-btn-uni:hover::before {
  opacity: 0.7;
}

.franchise-btn-uni::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(45deg, #062198, #000f7f);
  transition: 0.5s;
  border-radius: 50px;
  opacity: 0;
}

.franchise-btn-uni:hover:after {
  opacity: 1;
}



/* Globle heading Responsive Adjustments for Buttons */
@import "https://unpkg.com/open-props@1.6.17/easings.min.css";

@keyframes shake {
  50% {
    transform: translate3d(20px, 0, 0);
  }
}

@keyframes flip {
  100% {
    transform: rotateY(180deg);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.5);
  }
}

@keyframes glitch {
  50% {
    transform: skew(180deg);
  }
}

@keyframes fill {
  50% {
    transform: translateX(-5%);
  }
}

@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

@keyframes glow {
  50% {
    box-shadow: 0 0 40px hsl(12, 100%, 60%);
  }
}

@keyframes tonyhawk {
  50%,
  100% {
    transform: rotate(900deg);
  }
}

@keyframes blur {
  50% {
    filter: blur(20px);
    transform: skew(45deg);
  }
}

[anim="shake"]:not(.toggled) {
  animation: shake var(--ease-elastic-in-1) 300ms infinite alternate;
}

[anim="pulse"]:not(.toggled) {
  animation: pulse var(--ease-elastic-in-1) 1400ms infinite alternate;
}

[anim="glitch"]:not(.toggled) {
  animation: glitch var(--ease-elastic-in-1) 600ms infinite;
}

[anim="tonyhawk"]:not(.toggled) {
  animation: tonyhawk var(--ease-elastic-in-1) 600ms infinite;
}

[anim="flip"]:not(.toggled) {
  animation: flip var(--ease-elastic-in-1) 600ms infinite alternate;
}

[anim="fill"]:not(.toggled)::after {
  animation: fill var(--ease-spring-1) 8000ms infinite;
}

[anim="sheen"]:not(.toggled)::after {
  animation: sheen var(--ease-elastic-in-1) 1s infinite;
}

[anim="glow"]:not(.toggled) {
  animation: glow var(--ease-elastic-in-1) 600ms infinite alternate;
}

[anim="blur"]:not(.toggled) {
  animation: blur var(--ease-elastic-in-1) 1s infinite alternate;
}

[anim="fill"]::after {
  content: "";
  color: var(--black);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  height: 100%;
  width: 200%;
  inset: 0;
  transform: translateX(-400px);
  background-color: hsl(12, 90%, 63%);
}

[anim="sheen"]::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: var(--red-sheen);
  transform: rotateZ(60deg) translate(-5em, 7.5em);
}




/*  Heading Animation */
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/* .bo1{
  background-color: #FF6F00 !important;
} */






.boxextra{
  background-color: #eeeeee;
  border: #000001c7 1px solid;
}