body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", serif;
    box-sizing: border-box;
  }
  
  /* Hero Section  */
  .hero-section {
    position: relative;
    background: url('img/logo.png');
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center;
    height: 80vh;
    border-radius: 0 0 50px 50px;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    border-radius: 0 0 50px 50px;
  }
  
  .content {
    color: white;
    position: relative;
    text-align: center;
    z-index: 2;
  }
  
  .logo {
    max-width: 300px;
    z-index: 2;
    margin: 10px;
  }
  
  .main-title {
    font-size: 3rem;
    margin: 100px 0;
  }
  
 
  
  .logo-area {
    display: flex;
    align-items: left;
    gap: 15px;
  }
  
  .logo-area div {
    text-align: left;
  }
  
  .logo-text-small,
  .logo-text-large {
    margin: 0;
  }

  

  
/* Form Container Section */
.main-form{
    display: flex;
    flex-direction: column;
    gap: 3rem;  
    align-items: center;
    justify-content: center;   
    margin-top: 3rem;
  
   }
  
  .form-reg-container {
    display: flex;
    flex-wrap: wrap;
   
    max-width: 1000px;
    gap: 20px;
  }
  
  .section-title {
    font-size: 1.7rem;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
  }
  
  .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
  
  input {
    padding: 10px;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 1);
    background: rgba(255, 255, 255, 1);
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    flex: 1;
    height: 40px;
    width: 500px;
    outline: none;
  }
  
  .row .section-title {
    flex: 1;
    text-align: left;
    width: 500px;
  }
  
  
  #dropdown{
    padding:10px;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 1);
    background: rgba(255, 255, 255, 1);
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    flex: 1;
    height: 50px;
    width: 500px;
    outline: none;
  }
  
  

  .consent-section {
    display: flex;
    margin: 0 auto;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
  }
  
  .consent-title {
    font-size: 3rem;
    word-spacing: 4px;
    letter-spacing: 3px;
  }
  
  .consent-text {
    font-size: 1.7rem;
    margin: 10px 0;
    font-weight: 300;
    line-height: 1.5;
  }
  
  .register-btn {
    padding: 12px 40px;
    background-color: rgba(254, 207, 15, 1);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    color: rgba(1, 33, 66, 1);
    font-weight: bold;
    box-shadow: 0px 0px 15px 0px rgba(254, 207, 15, 1);
  }
  
  .register-btn:hover {
    background-color: #e0a800;
  }
  
  .consent-image img {
    max-width: 350px;
  }

  
.blog-container {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .blog-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .blog-container h1 span {
    color: #f9c806;
  }
  
  .carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .carousel-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(66, 66, 66, 0.2);
    flex: 0 0 300px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px; /* Ensures consistent height across all items */
  }
  
  .carousel-item img {
    max-width: 100%;
    border-radius: 10px;
    max-height: 200x;
    object-fit: cover;
  }
  
  .carousel-item h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  
  .carousel-item p {
    font-size: 1rem;
    color: #666;
  }
  
  .indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s;
  }
  
  .indicator.active {
    background-color: rgba(38, 38, 38, 1);
  }
  
  
  
  
  
  /* Follow Page Section */
  .follow-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
  }
  
  .follow-section img {
    width: 50rem;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* Social Media Section */
  .sm-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 1vh auto;
  
    padding: 0 2vh;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
  }
  .sm-section a {
    cursor: pointer;
  }
  .sm-section img {
    width: 100%;  /* Set a fixed width for better consistency */
    height: 50vh; /* Set a fixed height as well */
    object-fit: contain; /* Ensures the entire image fits within the set dimensions */
    display: block;
    margin: 0 auto;
  }
  
  
  
  .faq-container {
    width: 85%;
    margin: 20px auto;
    background: #E2F0FF;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .faq-item {
    border: 1px solid #fff;
  }
  
  .faq-question {
    cursor: pointer;
    padding: 15px;
    background: #E2F0FF;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
  }
  .faq-question::after {
    content: '\002B';
    font-size: 1.2rem;
  }
  .faq-question.active::after {
    content: '\2212';
  }
  .faq-question:hover {
    background: #072f58;
    color: #fff;
  }
  .faq-answer {
    display: none;
    padding: 15px;
    border-radius: 5px;
    background: #E2F0FF;
  }
  .faq-question.active + .faq-answer {
    display: block;
    background-color: #fff;
  }
  
  
  
  /* Contact Section */
  .contact-section {
    background-color: #002855;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
  }
  
  .contact-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .contact-item p {
    margin: 0;
  }
  
  .social-icons {
    display: flex;
    gap: 5px;
  }
  
  .social-icons img {
    width: 40px;
    height: 40px;
  }
  
  
  .map-container {
    width: 100%;
    height: 400px;
    position: relative;
  }
  iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  .marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    border: 2px solid white;
  }
  
  .footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    margin: 0 5rem;
  }
  .footer-left {
    max-width: 400px;
  }
  .footer-left img {
    height: 50px;
  }
  .footer-left p {
    margin-top: 10px;
    font-size: 18px;
  }
  .footer-right {
    list-style: none;
  }
  .footer-right li {
    margin: 5px 0;
  }
  .footer-right a {
    text-decoration: none;
    color: #072f58;
  }
  .copyright {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd;
  }
  .links h2{
    color: #072f58;
    font-weight: 600;
  }
  .faq-answer ul li {
    margin: 10px 0  
  }
    


  @media (max-width: 768px) {
    .hero-section {
      height: 100vh;
      padding: 20px;
    }
  
    .main-title {
      font-size: 2rem;
    }
  
    .logo {
      max-width: 80px;
    }
  
    .description {
      font-size: 1rem;
      letter-spacing: 2px;
      word-spacing: 1px;
    }
    .row {
     flex-direction: column;
     justify-content: center;
     align-items: center;
  }
  .row .section-title {
   
    text-align: center;
  }
  .main-form {
  padding: 10px;
  }
  
  }
  
  @media (max-width: 768px) {
    .follow-section {
      padding: 10px;
    }
  }
  
  @media (max-width: 768px) {
    .consent-section {
      flex-direction: column;
      text-align: center;
      padding: 30px 0px;
    }
  
    .consent-text {
      font-size: 1rem;
      margin: 1rem 0px;
    }
  
    .consent-content {
      padding-right: 0;
    }
  
    .consent-image img {
      max-width: 200px;
      margin-top: 20px;
    }
    .follow-section img {
      width: 25rem;
      
  }
    .sm-section {
      flex-direction: column;
   }
  }
  
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
     align-items: start;
    }
    
    input {
      padding: 10px;
      box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 1);
      background: rgba(255, 255, 255, 1);
      border: 1px solid #ccc;
      border-radius: 10px;
      font-size: 1rem;
      flex: 1;
      height: 40px;
      width: 300px;
    }
    
  
  
  
  }
  
  
  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      align-items: start;
     
    }
  
  
  
    .footer-logo {
      max-width: 150px;
      margin-bottom: 20px;
    }
  
    .footer-right a {
      margin: 10px 0;
    }
  }