/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin-top: 100px; /* Adjust for fixed header height */
}
html {
  scroll-behavior: smooth;
}

/* CSS to add lines around the heading */
.heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.heading-line::before, .heading-line::after {
  content: '';
  top: 50%;
  width: 10%;
  height: 5px;
  background-color: #007bff; /* Change to your desired color */
}

.heading-line::before {
  left: 0;
}

.heading-line::after {
  right: 0;
}

.heading-line h2 {
  margin: 0;
  padding: 0 20px; /* Space between the heading and the lines */
}

/* Header Styles */
header {
  background-color: #fff;
  position: fixed;  /* Fix the header at the top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease-in-out;  /* Smooth transition for shadow */
}

/* Box Shadow for Scrolling */
header.scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Adds box shadow to separate from body */
}

.navbar {
  padding: 10px 20px; /* Adjust padding to fit within fixed header */
}

.navbar-brand img {
  height: 80px;
}

@media (max-width: 767px) {
  .navbar-brand img {
  height: 60px;
}
}
.nav-link {
  color: #b71c1c !important;
  font-family: 'Roboto', sans-serif;
}

.nav-link:hover {
  color: #900c3f !important;
}



   /* Mobile Navigation Popup Styles */
  /* Mobile Navigation Popup Styles */
.mobile-nav {
  height: 100%;
  width: 0; /* Initial width of 0 (hidden) */
  position: fixed;
  top: 0;
  left: 0; /* Make the menu open from the left side */
  background-color: #ffffff;
  overflow-x: hidden;
  transition: width 0.3s ease; /* Smooth transition for opening */
  padding-top: 60px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5); /* Shadow on the right side */
  z-index: 1050;
}

/* When the menu is open */
.mobile-nav.open {
  width: 300px; /* Set the desired width when the menu is open */
}

/* Close button styling */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px; /* Position the close button on the right side of the menu */
  font-size: 36px;
  color: #333;
  text-decoration: none;
}

/* Close button styling */
.close-btn {
  position: absolute;
  top: 15px;
  left: 25px; /* Position the close button on the left side of the menu */
  font-size: 36px;
  color: #333;
  text-decoration: none;
}

.mobile-nav a {
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  color: #333;
  display: block;
  transition: 0.3s;
}

.mobile-nav a:hover {
  color: #d9534f;
}

.nav-item{
    border:1px, dotted;
}

    .get-started-btn {
      background-color: #d9534f;
      color: #fff;
      border-radius: 20px;
      margin: 20px;
      text-align: center;
      padding: 10px 20px;
      display: block;
    

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}
.btn-primary {
  background-color: #b71c1c;
  border-color: #b71c1c;
  font-family: 'Roboto', sans-serif;
}

.btn-primary:hover {
  background-color: #900c3f;
  border-color: #900c3f;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;  /* Increased padding for better spacing */
  overflow: hidden;
}

/* Hero Text Styling */
.hero-title {
  font-size: 2.5rem;  /* Bigger title font size */
  font-weight: 700;  /* Bold title */
  color: #114ca0;  /* Dark text color */
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 1.8rem;  
  }
  .hero-subtitle {
  font-size: 1.0rem;
}
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 30px;
}

/* Get Started Button */
.btn-get-started {
  font-size: 1.1rem;
  padding: 12px 25px;
  border: none;
  background-color:#114ca0;
  color: #fff;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-get-started:hover {
  background-color: white;
  text-decoration: none;
}

/* Hero Image Styling */
.hero-img img {
  animation: moveUpDown 3s ease-in-out infinite; /* Up and down animation */
  max-width: 100%; /* Make image responsive */
  object-fit: contain;
}

/* Up and Down Animation for Hero Image */
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);  /* Image moves up */
  }
  100% {
    transform: translateY(0);
  }
}

/* AOS Animations */
[data-aos="fade-up"] {
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

[data-aos="fade-left"] {
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

/* About Us Section */
  .about-us {
    background-color: #f8f9fa;
    padding: 40px 0;
  }
  .about-us h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
  }
  .about-us .lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
  }
  .about-us .about-image img {
    transition: transform 0.3s ease-in-out;
  }
  .about-us .about-image img:hover {
    transform: scale(1.05);
  }
  .about-us .about-image {
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
  }

.video-section {
  /*background-color: #f8f9fa; */
  padding: 60px 0;           /* Spacing for the section */
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.embed-responsive {
  border-radius: 10px;       /* Rounded corners for the video */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow for better presentation */
}

@media (max-width: 768px) {
  .video-section h2 {
    font-size: 1.8rem;       /* Adjust heading size for mobile */
  }
}

.contact-us {
  background-color: #f8f9fa; /* Light background color for contrast */
  padding: 60px 0;
}

.contact-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
}

.contact-us .lead {
  color: #6c757d;
  margin-bottom: 20px;
}

.contact-info-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box p {
  color: #555;
  margin: 5px 0;
  font-size: 1rem;
}

.contact-info-box i {
  color: #007bff;
  margin-right: 8px;
}

.contact-info-box a {
  color: #007bff;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

form .form-control {
  border-radius: 5px;
  border: 1px solid #ced4da;
}

form .btn {
  border-radius: 30px;
  font-size: 1rem;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .contact-us h2 {
    font-size: 2rem;
  }
}


/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}
