 
    /* ===== Topbar Unique Style ===== */
.top-bar {
  background: linear-gradient(270deg, #ff512f, #2490dd, #ffe02f);
  background-size: 600% 600%;
  animation: gradientBG 12s ease infinite;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  z-index: 1000;
}

/* Background animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Contact Info */
.contact-info span {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 6px;
  color: #ffd369;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  margin-left: 12px;
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ffd369;
  color: #222;
  transform: rotate(10deg) scale(1.15);
}

/* Language Selector */
.lang-select {
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 13px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
}

.lang-select option {
  color: #000;
}

/* Responsive */
@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .top-bar .contact-info {
    margin-bottom: 6px;
    justify-content: center;
  }
}
    /* ===== Navbar ===== */

    .navbar {
      background: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 16px;
      color: #000;
    }

    .navbar-nav .nav-link {
      font-size: 14px;
      font-weight: 500;
      max-width: 160px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 0.2s ease-in-out;
    }

    .navbar-nav .nav-link:hover {
      white-space: normal;
      /* full text visible */
      background: #f8f9fa;
      border-radius: 5px;
      /* ❌ padding change mat karo */
    }

    @media (max-width: 1180px) {
      .navbar-nav .nav-link {
        max-width: none;
        /* responsive me koi limit nahi */
        white-space: normal;
        /* text line-break ho sakta hai */
        text-overflow: unset;
      }
    }


    /* Custom toggler icon */
    .navbar-toggler {
      border: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* Dropdown hover effect */
    @media (min-width: 992px) {
      .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

    /* ===== Responsive Fix ===== */
    @media (max-width: 576px) {
      .top-bar .container {
        flex-direction: column;
        text-align: center;
      }

      .top-bar .container>div {
        justify-content: center !important;
        margin-bottom: 5px;
      }

      .navbar-brand {
        font-size: 16px;
      }

      .navbar-brand img {
        height: 60px;
      }
    }

    /* <!-- ===== carousel ===== --> */
    .carousel-item img {
      width: 100%;
      height: 80vh;
      /* tum apni pasand se fix height set kar sakte ho */
      object-fit: cover;
      /* puri image dikhegi */

    }

    @media(max-width:768px) {
      .carousel-item img {
        height: 60vh;
        /* mobile ke liye chhoti height */
      }
    }


    /* News Section */
    .news-ticker {
      background: linear-gradient(90deg,#ef6640, #dd9783);
      /* blue gradient */
      overflow: hidden;
      position: relative;
    }

    .news-heading {
      background: rgba(0, 0, 0, 0.3);
      padding: 6px 12px;
      border-radius: 5px;
      font-size: 15px;
      font-weight: bold;
    }

    .ticker-wrap {
      overflow: hidden;
      position: relative;
      white-space: nowrap;
    }

    .ticker {
      display: inline-block;
      padding-left: 100%;
      animation: ticker 20s linear infinite;
    }

    .ticker-item {
      display: inline-block;
      margin-right: 50px;
      font-size: 14px;
      color: #fff;
    }

    .ticker-item:hover {
      animation-play-state: paused;
      cursor: pointer;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    /* <!-- Chairman Section --> */
    /* Section Background */
    .chairman-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      position: relative;
      overflow: hidden;
    }

    /* Floating Animation */
    .animate-float {
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }

      100% {
        transform: translateY(0);
      }
    }

    /* Chairman Card */
    .chairman-card {
      background: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .chairman-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Message Box */
    .message-box {
      background: #fff;
      border-left: 6px solid #0d6efd;
      transition: all 0.3s ease;
    }

    .message-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Decorative Line */
    .decor-line {
      position: absolute;
      top: 15px;
      left: -6px;
      width: 6px;
      height: 50px;
      background: linear-gradient(#0d6efd, #6610f2);
      border-radius: 5px;
      animation: growLine 2s infinite alternate;
    }

    @keyframes growLine {
      from {
        height: 30px;
      }

      to {
        height: 80px;
      }
    }

    .message-box p {
      text-align: justify;
    }



    /* Section Background */
    .about-modern {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      position: relative;
      overflow: hidden;
    }

    /* Content Box */
    .about-box {
      background: #fff;
      border-left: 6px solid #0d6efd;
      transition: all 0.3s ease;
    }

    .about-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Underline Animation */
    .about-box h2 {
      position: relative;
      display: inline-block;
    }

    .about-box h2 .underline {
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #0d6efd, #6610f2);
      transition: width 0.5s ease;
    }

    .about-box:hover h2 .underline {
      width: 100%;
    }

    /* Banner Image */
    .about-banner {
      position: relative;
      overflow: hidden;
    }

    .about-banner img {
      transition: transform 0.6s ease;
    }

    .about-banner:hover img {
      transform: scale(1.1);
    }

    /* Overlay */
    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease;
    }

    .about-banner:hover .banner-overlay {
      background: rgba(0, 0, 0, 0.6);
    }

    /* Banner Text */
    .banner-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }


    /* Section Background */
    .departments-section {
      background: linear-gradient(135deg, #f9f9fb, #eef3ff);
      position: relative;
      overflow: hidden;
    }

    .departments-section::before {
      content: "";
      position: absolute;
      top: -80px;
      left: -80px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(255, 105, 180, 0.3), transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .departments-section::after {
      content: "";
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 191, 255, 0.3), transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }


    /* Department Card */
    .dept-card {
      position: relative;
      z-index: 1;
      background: #fff;
      border-radius: 20px;
      border-left: 6px solid #0d6efd;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
    }

    .dept-card:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Icon Circle */
    .icon-circle {
      width: 110px;
      height: 110px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #ef6640, #dd9783);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .icon-circle img {
      width: 200%;
      height: auto;
    }

    /* Title */
    .dept-card h5 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      color: #333;
    }

    /* Description */
    .dept-card p {
      font-size: 0.95rem;
      color: #555;
      min-height: 70px;
    }


    /* Our Services */
    /* Section background */
    .services-modern {
      background: linear-gradient(135deg, #f9f9fb, #eef3ff);
      position: relative;
      overflow: hidden;
    }

    .services-modern::before,
    .services-modern::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      z-index: 0;
    }

    .services-modern::before {
      width: 280px;
      height: 280px;
      top: -80px;
      left: -80px;
      background: radial-gradient(circle, rgba(255, 105, 180, 0.25), transparent 70%);
    }

    .services-modern::after {
      width: 320px;
      height: 320px;
      bottom: -90px;
      right: -90px;
      background: radial-gradient(circle, rgba(0, 191, 255, 0.25), transparent 70%);
    }


    /* Card modern */
    .service-card-modern {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      height: 280px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      color: #fff;
      text-align: center;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .service-card-modern:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    }

    /* Background Image */
    .card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
      z-index: 0;
    }

    .service-card-modern:hover .card-bg {
      transform: scale(1.15);
    }

    /* Overlay */
    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
      z-index: 1;
      transition: background 0.4s ease;
    }

    .service-card-modern:hover .card-overlay {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.85));
    }

    /* Content */
    .card-content {
      position: relative;
      z-index: 2;
      padding: 1.5rem;
    }

    .card-content h4 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .card-content p {
      font-size: 1rem;
      margin-bottom: 0.8rem;
    }

    .card-content a {
      color: #ffb347;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .card-content a:hover {
      color: #ffd166;
    }

    /* grievance  */
    .public-grievance {
      background: linear-gradient(135deg, #f8fbff, #eef4fa);
      position: relative;
      overflow: hidden;
    }

    .public-grievance::before {
      content: "";
      position: absolute;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, #0077ff33, transparent 70%);
      top: -60px;
      left: -60px;
      border-radius: 50%;
    }

    .public-grievance::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, #00c6ff33, transparent 70%);
      bottom: -80px;
      right: -80px;
      border-radius: 50%;
    }

    .grievance-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .grievance-card:hover {
      transform: translateY(-6px);
    }

    


    .message-text {
      font-size: 1rem;
      color: #555;
      line-height: 1.7;
      text-align: justify;
    }

    .btn-modern {
      padding: 12px 28px;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      border: none;
      border-radius: 30px;
      background: linear-gradient(135deg, #ef6640, #dd9783);
      box-shadow: 0 6px 18px rgba(0, 119, 255, 0.3);
      transition: all 0.3s ease;
    }

    .btn-modern:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 22px rgba(0, 119, 255, 0.45);
    }

    .grievance-img-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }

    .grievance-img-wrapper img {
      transition: transform 0.6s ease;
    }

    .grievance-img-wrapper:hover img {
      transform: scale(1.08);
    }

    .grievance-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 119, 255, 0.25), rgba(0, 198, 255, 0.25));
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 20px;
    }

    .grievance-img-wrapper:hover .grievance-overlay {
      opacity: 1;
    }

    /* Modal Improvements */
    .modal-content {
      border-radius: 20px;
    }

    .modal-title {
      font-size: 1.25rem;
    }


    /* yojana */
    .yojana-section {
      background: linear-gradient(135deg, #f8fbff, #eef4fa);
      position: relative;
      overflow: hidden;
      
    }

    .yojana-section::before,
    .yojana-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
    }

    .yojana-section::before {
      width: 250px;
      height: 250px;
      background: #0077ff44;
      top: -60px;
      left: -60px;
    }

    .yojana-section::after {
      width: 300px;
      height: 300px;
      background: #00c6ff44;
      bottom: -80px;
      right: -80px;
    }

    .yojana-heading {
            font-size: 2rem;
      position: relative;
      display: inline-block;
    }

    .yojana-heading::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -8px;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #0077ff, #00c6ff);
      border-radius: 3px;
    }

    .yojana-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 25px 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
        border-left: 6px solid #0d6efd;
    }

    .yojana-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .yojana-card h5 {
      margin-top: 15px;
      font-weight: 600;
      color: #2c3e50;
    }

    .yojana-card p {
      color: #666;
      font-size: 0.95rem;
      min-height: 50px;
    }

    .icon-box {
      width: 120px;
      height: 120px;
      margin: 0 auto;
      border-radius: 30%;
      /* background: linear-gradient(135deg, #0077ff, #00c6ff); */
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 16px rgba(0, 119, 255, 0.25);
      padding: 5px;
    }

    .icon-box img {
      width: 100%;
      height: auto;
      border-radius: 30%;
      object-fit: cover;
    }
     #img333 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;

    }

    
  


    .btn-modern {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 22px;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 25px;
      background: linear-gradient(135deg, #0077ff, #00c6ff);
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 18px rgba(0, 119, 255, 0.3);
    }

    .btn-modern:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 119, 255, 0.5);
    }

    /* gallery */
     .gallery-section {
      background: #d6deef;
      font-family: 'Segoe UI', sans-serif;
    }
    
    .gallery-section p {
      color: #6c757d;
      margin-bottom: 2rem;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay i {
      color: #fff;
      font-size: 2rem;
    }

 /* event  */
    .events-news h2 .underline {
    position: absolute;
    bottom: -8px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg,#0072ff,#00c6ff);
    border-radius: 5px;
    animation: slideWidth 2s infinite alternate;
  }
  @keyframes slideWidth {
    from { width: 40px; }
    to { width: 100px; }
  }
  .event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }
  .event-img {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  .event-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .event-card:hover .event-img img {
    transform: scale(1.1);
  }
  .date-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg,#ef6640, #dd9783);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  .event-body {
    padding: 1rem 1.2rem;
  }
  .event-body h5 {
    font-weight: 600;
    color: #0072ff;
    margin-bottom: 0.5rem;
  }
  .event-body p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
  }
  

  /* staff */
  .staff-section h2 .underline {
    position: absolute;
    bottom: -8px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg,#0072ff,#00c6ff);
    border-radius: 5px;
    animation: slideWidth 2s infinite alternate;
  }
  @keyframes slideWidth {
    from { width: 40px; }
    to { width: 100px; }
  }
  .staff-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  }
  .staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }
  .staff-img {
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f6fa;
    overflow: hidden;
  }
  .staff-img img {
    width: 120px; height: 120px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
  }
  .staff-card:hover .staff-img img {
    transform: scale(1.1);
  }
  .staff-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232, 102, 66, 0.85);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
  }
  .staff-card:hover .staff-overlay {
    opacity: 1;
  }
  .staff-overlay i {
    margin-right: 6px;
  }
  .staff-info {
    padding: 1rem;
  }
  .staff-info h5 {
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #0072ff;
  }
  .staff-info p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
  }

  /* download */
  .form-card {
    transition: all 0.3s ease;
    background: #fff;
  }
  .form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }
  .form-card:hover .icon-circle {
    background: #ffecec;
  }
  .download-btn {
    background: #dc3545;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
  }
  .download-btn:hover {
    background: #b02a37;
    color: #fff;
    transform: scale(1.05);
  }

  /* Feedback */
  #feedback{
    background-color:#f2f6fe;
  }
     #feedback .form-control {
    border: 1px solid #ddd;
    padding: 10px 14px;
    transition: border 0.3s, box-shadow 0.3s;
  }
  #feedback .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 6px rgba(40, 167, 69, 0.3);
  }
  #feedback h2 {
    color: #2c3e50;
  }
  #feedback button {
    font-weight: 600;
    transition: 0.3s;
  }
  #feedback button:hover {
    transform: scale(1.05);
  }

     /* contact us  */
  .contact-section {
      padding: 60px 0;
    }

    .contact-card {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease-in-out;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .contact-icon {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: #fff;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .contact-card:hover .contact-icon {
      transform: scale(1.15);
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }

    .contact-info h5 {
      font-weight: 600;
      margin-bottom: 5px;
    }

    iframe {
      border: none;
      border-radius: 16px;
      width: 100%;
      height: 350px;
    }

    /* footer  */
    .footer {
  background: linear-gradient(to right, #ef6640, #dd9783);
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}
.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
.footer h5::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #0d6efd;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.footer-list {
  list-style: none;
  padding: 0;
}
.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-list li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-list li a:hover {
  color: black;
  padding-left: 5px;
}
.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0 5px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transition: 0.3s;
}
.social-links a:hover {
  background: black;
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}
.footer-bottom .visitors {
  color: #ffcc00;
  font-weight: bold;
}
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
} 