@media (max-width: 768px) {
    .only-larger{
        display: none;
    }

    body{
        overflow-x: hidden !important;
    }

    .toggle-menu img{
        height: 30px !important;
        width: auto!important;
        /* background-color: #084527; */
        border-radius: 5px;
        
    }
    .slider-zoom {
    height: auto !important;
    }
    .section-title {
        font-size: 28px !important;
    }
    .custom-container {
      gap: 20px;
    }

}
    body{
    font-family: Poppins, sans-serif;
    overflow-x: hidden;
}
a{
    text-decoration: none !important;
}
.tamil-mode {
  font-weight: 600;        /* Make whole body bold */
  /* Optionally: change font-family, size, color etc. */
  /* font-family: 'Latha', 'Arial', sans-serif; */
}
.spinner-border {
  width: 3rem;
  height: 3rem;
}

#contactForm.tamil-mode,
#contactForm.tamil-mode * {
  font-weight: 700 !important;
}
.custom-header {
            background: #0B2341;
            padding: 10px 30px;
            color: #ff9a02;
        }
.social-icons i{
    color: #ff9a02;
    /* color: #29cd0d; */
    padding: 0 5px;
    font-weight: bolder;
    font-size: 18px;
}

.social-icons a{
    color: #ffffff;
}

.social-icons{
    font-weight: bolder;
}
        .custom-navbar {
            position: relative;
            /* background: linear-gradient(90deg, #7bc043 25%, #0a0e20 25%); */
            /* background: linear-gradient(140deg, #7bc043 33%, #0a0e20 33%); */
            background-color: #ffffff;
            padding: 15px 0;
        }
        .navbar-brand {
            color: white;
            font-weight: bold;
        }
        .navbar-nav .nav-link {
            color: #053583;
            font-size: 18px;
            font-weight: 600;
        }
        .logo-img{
            height: 80px !important;
        }
        .nav-link {
            margin-right: 25px;
        }
        .navbar-nav .nav-link:hover {
            /* color: #7bc043; */
            color: #ff9a02;
        }
        .cta-btn {
            background: #4360c0;
            color: white;
            border-radius: 5px;
        }
        .cta-btn:hover {
            background: #ff9a02;
            color: white;
        }
        .toggle-menu{
            border: none !important;
        }

        .login-btn{
          color: white !important;
        }

        #lang-toggle-btn,
  #lang-toggle-btn-lg {
    font-weight: 600;
    padding: 4px 12px;
  }

  .custom-ticker-container {
  max-width: 95vw;          /* adjust as needed */
  max-height: 100px !important;
  background-color: #f4f5f8; /* exact light greenish background */
  border: 1px solid #0B2341; /* green border */
  border-radius: 4px;
  overflow: hidden;
  padding: 5px 10px;
}

.custom-ticker-inner {
  display: flex;
  flex-direction: column;
  animation: custom-ticker-scroll 12s linear infinite;
  animation-play-state: running;
}

.custom-ticker-container:hover .custom-ticker-inner {
  animation-play-state: paused;
  cursor: pointer;
}

.custom-ticker-item {
  font-size: 1rem;
  color: #0B2341; /* deep green */
  font-weight: 600;
  padding: 8px 0;
  line-height: 1.4;
}

@keyframes custom-ticker-scroll {
  0% { transform: translateY(0); }
  25% { transform: translateY(-25%); }
  50% { transform: translateY(-50%); }
  75% { transform: translateY(-75%); }
  100% { transform: translateY(-100%); }
}


/* Slider styles */
#imageSlider {
    border-radius: 10px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    position: relative;
    opacity: 1;
}

.slider-zoom {
    height: 550px;
    overflow: hidden;
}

.slider-zoom img {
    height: 100%;
    object-fit: cover;
    transform: scale(0.8);
    transition: transform 0.5s ease-in-out;
}

.carousel-item.active .slider-zoom img {
    transform: scale(1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: none;
    opacity: 0.8;
    z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /* background-color: rgba(0,0,0,0.5); */
    border-radius: 50%;
    padding: 15px;
}

.carousel-indicators {
    margin-bottom: 0.5rem;
    z-index: 10;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255,255,255,0.8);
}

/* Extra class to avoid conflicts */
.who-we-are {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #072a9c;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.who-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

    .custom-card {
      background-color: #043246;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      color: white;
      height: 100%;
    }
    .custom-card-light {
      background-color: rgb(238, 244, 248);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      color: #0f2027;
      height: 100%;
    }
    .custom-icon {
      font-size: 30px;
      margin-bottom: 10px;
    }
    .custom-heading {
      font-weight: 700;
      font-size: 1.5rem;
    }
    .custom-dot {
      height: 10px;
      width: 10px;
      background-color: #2ecc71;
      border-radius: 50%;
      display: inline-block;
      margin-left: 10px;
    }
    /* .custom-container {
      gap: 20px;
    } */
    .section-title-1{
        text-align: center;
    }
    @media (max-width: 767px) {
      .custom-card,
      .custom-card-light {
        padding: 20px;
      }
    }

    /* contact section  */

    .contact-section {
      background-color: #f8f9fa;
      padding: 50px 20px;
    }

    .contact-section .form-container {
      background: #ffffff;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .contact-section .form-label {
      font-weight: 500;
    }
    .form-label{
        color: #053583;
    }

    .contact-section .form-control {
      border-radius: 6px;
      padding: 10px 14px;
    }

    .contact-section .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 8px;
    }

    @media (min-width: 768px) {
      .contact-section .form-map-wrapper {
        display: flex;
        gap: 30px;
      }

      .contact-section .form-container,
      .contact-section .map-container {
        flex: 1;
      }

      .contact-section .map-container {
        min-height: 450px;
      }
    }

    @media (max-width: 767.98px) {
      .contact-section {
        padding: 30px 10px;
      }

      .contact-section .map-container {
        margin-top: 30px;
        height: 300px;
      }
       .quick-links {
         height: auto !important;
        }
    }

.whychoose-section {
      background-color: #f0f4f8;
      padding: 60px 20px;
    }

    .whychoose-section .feature-box {
      background: #ffffff;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      height: 100%;
    }
    .whychoose-section .feature-box:hover {
      transform: translateY(-5px);
    }
    .whychoose-section .feature-icon {
      font-size: 2.5rem;
      color: #0547a9;
      margin-bottom: 15px;
    }
    .whychoose-section .feature-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #0c3243;
    }
    .whychoose-section .feature-text {
      font-size: 0.95rem;
      color: #333333;
      line-height: 1.6;
    }
    @media (max-width: 767.98px) {
      .whychoose-section {
        padding: 40px 15px;
      }
    }

.quick-links {
  background-color: #ffffff;           /* clean white box */
  /* border: 1px solid #0B2341;           deep blue border */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* subtle shadow for depth */
  height: 70vh;                        /* flexible height */
  margin-bottom: 20px;
}

.quick-links h4 {
  background-color: #0B2341;           /* deep blue header */
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.quick-links .list-group-item {
  font-size: 0.95rem;
  color: #0B2341;
  font-weight: 500;
  border: none;
  padding: 10px 15px;
  transition: background-color 0.3s, color 0.3s;
}

.quick-links .list-group-item a {
  color: #0B2341;
  display: block;
}

.quick-links .list-group-item:hover {
  background-color: #f4f5f8;           /* light background on hover */
  color: #ff9a02;                      /* accent color on hover */
}

.quick-links .list-group-item a:hover {
  color: #ff9a02;                      /* accent color link on hover */
  text-decoration: none;
}

.quick-links .badge {
  background-color: #ff9a02;           /* badge in your accent color */
  color: white;
  font-size: 0.7rem;
  margin-left: 5px;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .quick-links {
    margin-top: 20px;
    height: auto;
  }
}

.visit-counter-box {
  background-color: #0B2341;    /* deep blue background matching your theme */
  color: #ffffff;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 6px;
  display: inline-block;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin-top: 10px;
}
#visitCounter {
  font-weight: 700;
  margin-left: 5px;
  color: #ff9a02;
  display: inline-block;
  transition: color 0.3s ease;
}

#visitCounter.animated {
  transform: scale(1.3);
  color: #ffc107;              /* highlight color during animation */
}
