
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  margin:0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway";
  
}

.topbar {
  background-color: #f8f9fa; /* Light gray for header */
  padding: 10px;
  text-align: center;
  margin-left: 50px;
 
}

.title {
  margin:0;
  font-size: 45px;
  color:white;
  font-weight: bold;
  margin-left: 50px;
 
}

.container-fluid {
  padding: 20px;
  
}

/* Apply blue background with responsiveness */
.blue-bg {
  background-color:#242e73; /* Blue background */
  color: #fff; /* White text for contrast */
  padding: 30px; 
  font-family:"Raleway" ;
  text-align: left;
  font-family: 45px;

}

/* Responsive Design */
@media (max-width: 768px) {
  .blue-bg {
      padding: 15px; /* Adjust padding for smaller screens */
  }

  .navbar-title {
      font-size: 28px; /* Adjust title size */
  }
}

@media (max-width: 576px) {
  .blue-bg {
      padding: 10px; /* Further adjust padding for extra small screens */
  }

  .navbar-title {
    font-size: 32px; /* Even larger size for mobile */
}
}

.navbar {
  padding: 1rem 1.5rem;
  
}
@media (max-width: 480px) {
  .blue-bg {
      padding: 10px; /* Further adjust padding for extra small screens */
  }

  .navbar-title {
    font-size: 36px; /* Even larger size for mobile */
}
}

.navbar {
  padding: 1rem 1.5rem;
  
}

/* Navbar Link Styles */
.navbar-nav .nav-link {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  position: relative; /* For the box effect */
  text-align: center;
  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

/* Hover Effect for Navbar Links */
.navbar-nav .nav-link:hover {
  color: #fff; /* Change text color on hover */
  background-color: #fdbb2d; /* Background color */
  box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3); /* Adjusted box shadow color*/
  border-radius: 20px; /* Smooth edges */
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Active State for Navbar Links */
.navbar-nav .nav-link.active {
  color: #fff !important;
  background-color: #007bff; /* Highlight active link */
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  border-radius: 20px;
}

/* Link Box Layout */
.navbar-nav {
  display: flex;
  justify-content: center; /* Center the links */
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping for small screens */
  gap: 10px; /* Space between link boxes */
}

.navbar-nav .nav-item {
  display: inline-block;
}



/* Logo Adjustment for Smaller Screens */
.navbar-brand img {
  max-width: 400px;
  height: auto;
}

/* Responsive Design */

/* For screens below 992px (Tablets and Small Laptops) */
@media (max-width: 992px) {
  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 0.4rem 0.8rem;
  }

  .navbar-brand img {
    max-width: 180px;
  }

  .dropdown-menu {
    font-size: 17px;
  }
}

/* For screens below 768px (Large Phones and Smaller Tablets) */
@media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 0.6rem;
  }

  .navbar-toggler {
    font-size: 18px;
  }

  .dropdown-menu {
    font-size: 17px;
  }
}

/* For screens below 576px (Small Phones) */
@media (max-width: 576px) {
  .navbar-brand img {
    max-width: 150px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 0.5rem;
  }

  .dropdown-menu {
    text-align: left;
    font-size: 17px;
  }

  .navbar-toggler {
    font-size: 18px;
  }
}

/* For extra small screens below 400px */
@media (max-width: 400px) {
  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 0.4rem;
  }

  .navbar-brand img {
    max-width: 120px;
  }
}
@media (max-width: 400px) {
  .mySlides{
    height: 400px;
  }
}
/* General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

/* Container */
.container-xxl {
  width: 100%;
  margin: 0 auto;
}

/* Headings */
h2.box {
  font-size: 27px;
  font-weight: bold;
  color: #242e73;
  text-align: left;
  font-family: "Raleway";
  line-height: 40px;
  letter-spacing: 1px;
}

h2.box:hover {
  color: #ffb61c;
}

/* Paragraphs */
p {
  font-size: 18px;
  color: #555;
  text-align: justify;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  opacity: 0;
  transform: translateX(20px); /* Moves text from the right */
  animation: fadeInRight 1s ease-in-out forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

span {
  font-size: 18px;
}

/* Image Styling */
.img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Card Container */
.about1-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.card-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Card Content */
.content {
  width: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  border-radius: 10px;
}

.card {
  font-family: "Poppins", sans-serif;
  padding: 15px;
  display: flex;
  align-items: center;
  min-height: 350px !important;
  width: 100%;
  max-width: 350px;
}

.card:hover .content {
  transform: rotateY(180deg);
}

/* Front & Back Styles */
.front,
.back {
  width: 100%;
  height: 320px;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.front {
  background: linear-gradient(to bottom right, #242e73, #ffb61c);
  color: white;
  text-align: center;
}

.front h2 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.front img {
  width: 80%;
  border-radius: 10px;
  margin-top: 10px;
}

.back {
  background: linear-gradient(to bottom right, #ff8c00, #1e90ff);
  color: white;
  transform: rotateY(180deg);
}

.back h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 650;
}

/* Mission Text */
.our-mission {
  font-size: 1rem;
  color: #fff;
  padding: 5px;
  text-align: center;
}

/* Image and Content */
.img-fluid {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design */

/* For screens 992px and larger */
@media (max-width: 992px) {
  h2.box {
    font-size: 22px;
    text-align: center;
  }

  p {
    font-size: 18px !important;
  }

  span {
    font-size: 16px;
  }

  /* .col-lg-6 {
    margin-bottom: 20px;
  } */

  img {
    width: 100%;
  }
}

/* For screens 768px and smaller */
@media (max-width: 768px) {
  h2.box {
    font-size: 24px;
    text-align: center;
  }

  p {
    font-size: 18px !important;
  }

  span {
    font-size: 16px;
  }

  /* .col-lg-6 {
    margin-bottom: 20px;
  } */

  img {
    width: 100%;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 320px !important;
    height: 320px !important;
    /* min-height: 48vh !important; */
    /* margin: 10px; */
  }

  .front h2, .back h2 {
    font-size: 22px;
  }

  .back p, .back ul li {
    font-size: 16px;
  }
}

/* For screens 576px and smaller */
@media (max-width: 576px) {
  h2.box {
    font-size: 24px;
    text-align: center;
  }

  p {
    font-size: 16px !important;
  }

  span {
    font-size: 16px;
  }

  .container {
    padding: 10px;
  }
  .front img {
    width: 60%;
    border-radius: 10px;
    margin-top: 10px;
  }
  img {
    margin-bottom: 15px;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 95% !important;
    height: auto !important;
  }
  .back p, .back ul li {
    font-size: 16px;
  }
}

/* For extra small devices (max-width: 360px) */
@media (max-width: 360px) {
  h2.box {
    font-size: 22px;
  }

  p {
    font-size: 18px !important;
  }

  span {
    font-size: 16px !important;
  }

  .container {
    padding: 10px;
  }

  img {
    margin-bottom: 15px;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 320px !important;
    height: 320px !important;
    /* min-height: 45vh !important; */
  }

  .content {
    max-width: 320px !important;
    height: 320px !important;
    min-height: 45vh !important;
  }

  .front h2, .back h2 {
    font-size: 18px;
  }

  .back p, .back ul li {
    font-size: 16px;
    color: black;
  }
}


/* footer Reset */
/* Footer Container */

/* Footer Container */
.footer-container {
  display: flex; /* Enabled flex for layout */
  flex-wrap: wrap; /* Allows wrapping of content on smaller screens */
  justify-content: space-around;
  background-color: #000c66;
  color: #fff;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

/* Footer Content */
.footer-content {
  flex: 1;
  margin: 15px;
  min-width: 250px; /* Ensures proper spacing for smaller screens */
  text-align: left;
}

.footer-content h3 {
  color: #f4c04e;
  font-size: 20px;
  margin-bottom: 10px;
  animation: fadeInUp 2s ease-in-out infinite alternate;
}

.address{
color: #ddd;
font-size: 18px;
}

.footer-content h4,
.footer-content ul {
  margin: 5px 0;
  color: #ddd;
  font-size: 18px;
}

.footer-content ul {
  list-style: none;
  padding: 0;
}

.footer-content ul li {
  margin: 8px 0;
}

.footer-content ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-content ul li a:hover {
  color: #f4c04e;
}

/* Social Icons */
/* Social Icons Container */
/* Contact Info Styling */
/* .contact-info {
  text-align: center; 
  color: white;
  background-color: #00124d; 
  padding: 20px;
  border-radius: 10px;
} */

/* WhatsApp Button Container (Centers the Icon) */
.whatsapp-container {
  display: flex;
  justify-content: left;
  margin-top: 15px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  background-color: #25D366; /* WhatsApp Green */
  color: white;
  text-decoration: none;
  font-size: 20px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Icon */
.whatsapp-icon {
  font-size: 30px !important;
}

/* Hover Effect */
.whatsapp-float:hover {
  background-color: green; /* Darker Green */
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-float {
      width: 50px;
      height: 50px;
  }
  .whatsapp-icon {
      font-size: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
      width: 45px;
      height: 45px;
      /* color:#25D366 */
  }
  .whatsapp-icon {
      font-size: 25px !important;
  }
}
@media (min-width: 1024px) {
  .whatsapp-float {
      width: 70px;
      height: 70px;
      font-size: 35px;
      bottom: 30px;
      right: 30px;
  }
  .whatsapp-icon {
      font-size: 32px;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content {
    margin: 15px 0;
}

.social-icons {
    justify-content: left;
}
h5 {
  color: #f4c04e !important;
  text-align: center !important;
  font-size: 20px !important;  /* Reduced font size for responsiveness */
}

}

@media (max-width: 480px) {
.footer-content h3 {
  font-size: 22px !important; /* Smaller headings for smaller screens */
}

.address{
  font-size: 20px !important;
}
.footer-content h4,
.footer-content ul {
    font-size: 20px !important; /* Reduced font size for better readability */
}

.social-icons a {
    width: 35px;
    height: 35px; /* Smaller icons */
}
}


/* Bubble Animation */
.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

@keyframes fadeInUp {
  0% {
      transform: translateY(10px);
      opacity: 0.7;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes float {
  0% {
      transform: translateY(0);
      opacity: 1;
  }
  100% {
      transform: translateY(-200px);
      opacity: 0;
  }
}
/* Customize the Scrollbar */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
  height: 8px; /* Height of the scrollbar (for horizontal scrolling) */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background of the scrollbar track */
  border-radius: 50px; /* Optional: make it rounded */
}

::-webkit-scrollbar-thumb {
  background: orange; /* Color of the scrollbar thumb */
  border-radius: 50px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #e67e22; /* Darker shade on hover for interactivity */
}
.back-to-top{
  height: 2000px; /* Just to create scrollable content */
  padding: 20px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: orange !important;
  color: white;
  border: none !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.back-to-top:hover {
  background-color: orange;
  cursor: pointer;
}

/* Show button when scrolled down */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Icons */
.fa-arrow-up {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .back-to-top {
      width: 50px;
      height: 50px;
  }

  .fa-arrow-up {
      font-size: 20px;
      color: #fff;
      margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .back-to-top {
      width: 45px;
      height: 45px;
  }

  .fa-arrow-up {
      font-size: 18px;
      color: #fff;
      margin-bottom:0;
  }
}


  
