/* Global Font */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo Heading and Line */
/* Logo Heading */
.brand-title {
  font-size: 1.5rem;
  color: #003087;
}

/* Horizontal Line Below Title */
.logo-line {
  height: 4px;
  border: none;
  border-top: 4px solid rgb(34, 73, 153);
  margin: 4px 0;
  width: 100%;
  max-width: 350px;
}

/* Subheading */
.brand-location {
  font-size: 1rem;
  color: #003087;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .navbar-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .brand-location {
    font-size: 0.95rem;
    margin-left: 0;
  }

  .logo-line {
    width: 80%;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .brand-title {
    font-size: 1.4rem;
  }

  .brand-location {
    font-size: 1rem;
  }
}


/* Social Icons */
.social-icons a {
  font-size: 1.5rem;
  margin-left: 10px;
  color: white;
}

#facebook { color: #1877F2; }
#instagram { color: #C13584; }
#youtube { color: #FF0000; }

.social-icons a:hover {
  color: #f7c700;
}

.navbar-nav .nav-link {
  color: #2a37a8 !important;
  margin: 0 10px;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  transition: 0.3s;
  font-family: 'Times New Roman', Times, serif;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f7c700;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-nav .nav-link:hover {
  color: #f7c700 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 1rem;
  }

  .social-icons {
    margin-right: 0;
  }

  .navbar-nav {
    align-items: center;
  }
}

/* Main Navbar Links */
.navbar-nav .nav-link {
  color: #2a37a8 !important;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 12px;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f7c700;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #f7c700 !important;
}

/* Toggler Customization */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-brand {
    flex-direction: column;
    align-items: start;
  }

  .social-icons {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-nav {
    align-items: center;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }
}
/* News Ticker Container */
    .news-ticker {
      width: 100%;
      background: #d7d7d7;
      overflow: hidden;
      position: relative;
      padding: 10px 0;
    }

    /* The scrolling content */
    .news-ticker-content {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 20s linear infinite;
      padding-left: 100%;
    }

    /* Individual news item */
    .news-ticker-content span {
      display: inline-block;
      color: #4549af;
      font-size: 1rem;
      font-weight: 900;
      margin-right: 3rem;
    }

    /* Animation for scrolling */
    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    /* Responsive font size */
    @media (max-width: 768px) {
      .news-ticker-content span {
        font-size: 0.9rem;
        margin-right: 2rem;
      }
    }

    @media (max-width: 480px) {
      .news-ticker-content span {
        font-size: 0.8rem;
        margin-right: 1.5rem;
      }
    }


/*==============================NAVBAR END===================================================================*/

/* hero Image */

.hero {
    position: relative;
    width: 100%;
    height: 40vh;
    background: url('./M-Images/pexels-thatguycraig000-1563356.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.hero h3 {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.hero h3 {
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  font-size: 2rem; /* default for desktops */
  text-align: center;
  margin: 0 auto;
}

/* Extra Small Devices (phones, portrait 0px - 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

/* Small Devices (phones landscape & small tablets 481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
}

/* Medium Devices (tablets & small laptops 769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}

/* Large Devices (laptops/desktops 1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero h1 {
    font-size: 3rem;
    line-height: 3.4rem;
  }
}

/* Extra Large Screens (1441px and above) */
@media (min-width: 1441px) {
  .hero h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
}


/* Gallery Grid =============================================*/
/* Main screen grid */
    .gallery {
      background-color: #d7d7d7;
      padding: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }

    .gallery img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.01);
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .modal img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }

    /* Close button */
    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      font-weight: bold;
      color: #fff;
      cursor: pointer;
      transition: 0.3s;
    }

    .close:hover {
      color: #ff5555;
    }

    /* Navigation arrows */
    .prev,
    .next {
      position: absolute;
      top: 50%;
      font-size: 40px;
      color: white;
      cursor: pointer;
      padding: 10px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      transform: translateY(-50%);
      user-select: none;
    }

    .prev {
      left: 20px;
    }

    .next {
      right: 20px;
    }

    .prev:hover,
    .next:hover {
      background: rgba(0, 0, 0, 0.6);
    }
/*footer*/
         .body {
            margin: 0;
           
          }
        
          .footer {
            background: url('./M-Images/pexels-vraj-shah-115200-633814.jpg') center/cover no-repeat;
            position: relative;
            color: #fff;
            padding: 60px ;
            overflow: hidden;
          }
        
          
        
          .footer-content {
            position: relative;
            display: flex;
            /* flex-wrap: wrap; */
            justify-content: space-around;
            z-index: 1;
            animation: fadeIn 1.5s ease-in;
            
          }
        
          .footer-section {
            /* flex: 1 1 300px; */
            margin: 20px;
            width: 100%;            
          }
          .footer-section h4{
            color: #ffffff;
          }
         
        
          .footer h1 {
            font-size: 25px;
            margin-bottom: 15px;
            border-bottom: 3px solid rgb(255, 255, 255);
            padding-bottom: 10px;
            font-family: 'Poppins', sans-serif;
          }
        
          .footer p, .footer a {
            font-size: 20px;
            line-height: 1.6;
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
          }
        
          .footer a:hover {
            color: #ffc107;
          }
        
          .footer hr {
            border: none;
            border-bottom: 2px solid white;
            margin: 15px 0;
          }
        
          .footer button {
            padding: 10px 20px;
            margin: 10px 5px 0 0;
            font-size: 16px;
            background-color: #007bff;
            color: white;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
          }
        
          .footer button:hover {
            background-color: #0056b3;
          }
        
          .footer-bottom {
            text-align: center;
            margin-top: 60px;
            font-size: 15px;
            z-index: 1;
            position: relative;
          }
        
          @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
          }
        
          @media (max-width: 768px) {
            .footer-content {
              flex-direction: column;
              align-items: center;
            }
          }
          /* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    
    font-size: 14px;
  }
}


