:root {
    --primary-color: #141414;
    --primary-color-light: #1f2125;
    --primary-color-extra-light: #35373b;
    --secondary-color: #535353;
    --secondary-color-dark: #2d2e2d;
    --text-light: #333;
    --hover: #f4b400;
    --white: #ffffff;
    --max-width: 1200px;
}
.active{
  color: var(--hover);
}
*::before,
*::after {
  box-sizing: border-box;
}
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Kumbh Sans', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--white);
}

/* ======= NAVBAR STYLES ======= */
.navbar {
  background: var(--white);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  width: 100%;
  padding: 0 20px;
}

#navbar__logo {
  background-color: var(--secondary-color);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}
#navbar__logo img{
height: 30%;
width: 40%;
}
#navbar__logo span{
  color: var(--secondary-color);
}


.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.navbar__item {
  position: relative;
}


.navbar__links {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s ease;
}

.navbar__links:hover,
.navbar__links:focus {
  background-color: var(--hover);
  color: var(--primary-color);
}

/* Ensure the parent <li> has relative positioning */
.dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* 👈 places it directly under the button */
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1000;
  flex-direction: column;
  padding: 10px 0;
}

.dropdown-content a {
  padding: 10px 16px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  display: block;
  transition: 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: var(--hover);
}

/* Show dropdown on click */
.dropdown-content.show {
  display: flex;
}


/* Mobile menu */
.navbar__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.dropbtn  {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s ease;
}
.dropbtn:hover,
.dropbtn:focus {
  background-color: var(--hover);
  color: var(--primary-color);
}
.bar {
  height: 3px;
  width: 25px;
  background-color: var(--primary-color);
  margin: 4px 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar__menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    background: var(--white);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__toggle {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    min-width: 100%;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown .dropbtn::after {
    content: " ▼";
  }
}

#page-header {
  position: relative;
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 14px;
  overflow: hidden;
  text-align: center;
  margin-top: 2%;
  margin-bottom: -4%;
  background-size: cover;
  background-position: center;
  margin-bottom: 5%;
}

#page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background-image: url("../images/banners/contactBanner.png");
  background-size: inherit;
  background-position: inherit;
  filter: blur(3.5px); /* Increase blur intensity if needed */
  z-index: -1; /* Ensure the pseudo-element is behind the text */
}

  #page-header h1,
  #page-header p {
    color: var(--primary-color);
  }
  

h2 {
    color: var(--hover);
}
a {
  text-decoration: none;
/*   color: var(--hover); */
}
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
  }
  
  .alert-success {
    background-color: #d4edda;
    color: #155724;
  }
  
  .alert-error {
    background-color: #f8d7da;
    color: #721c24;
  }
  

.container{
    width: 100%;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .container .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .container .content .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-light);
  }
  .content .left-side .details{
    margin: 14px;
    text-align: center;
  }
  .content .left-side .details i{
    font-size: 30px;
    color: var(--hover);
    margin-bottom: 10px;
  }
  .content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
  }
  .content .left-side .details .text-one,
  .content .left-side .details .text-two{
    font-size: 14px;
    color: #afafb6;
  }
  .container .content .right-side{
    width: 75%;
    margin-left: 75px;
  }
  .content .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    color: var(--text-light);
  }
  .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #c0c0c2;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
  }
  .right-side .message-box{
    min-height: 110px;
  }
  .right-side .input-box textarea{
    padding-top: 6px;
  }
  .right-side .button{
    display: inline-block;
    margin-top: 12px;
  }
  .right-side .button input[type="button"]{
    color: var(--primary-color);
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .topic-text {
    color: var(--hover);
    margin-bottom: 1.5%;
   
  }
  button.normal{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #020202;
    background-color: var(--hover);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
  
  }
  /* .button input[type="button"]:hover{
    background: var(--secondary-color);
  } */
  @media (max-width: 950px) {
    .container{
      width: 90%;
      padding: 30px 40px 40px 35px ;
    }
    .container .content .right-side{
     width: 75%;
     margin-left: 55px;
  }
  }
  @media (max-width: 820px) {
    .container{
      margin: 40px 0;
      height: 100%;
    }
    .container .content{
      flex-direction: column-reverse;
    }
   .container .content .left-side{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }
   .container .content .left-side::before{
     display: none;
   }
   .container .content .right-side{
     width: 100%;
     margin-left: 0;
   }
  }

  /* Footer CSS */
footer.footer__container {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--max-width);
    margin: auto;
    border-top: 4px solid var(--hover);
    position: relative;
  }
  
  .footer__col {
    flex: 1 1 220px;
    min-width: 220px;
  }
  
  .footer__logo img {
    width: 120px;
    margin-bottom: 15px;
  }
  
  .footer__col h4 {
    font-size: 1.2rem;
    color: var(--hover);
    margin-bottom: 20px;
  }
  
  .footer__col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s ease;
    font-size: 15px;
  }
  
  .footer__col a:hover {
    color: var(--hover);
    transform: translateX(5px);
  }
  
  .footer__socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
  }
  
  .footer__socials a {
    font-size: 1.25rem;
    background-color: var(--hover);
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .footer__socials a:hover {
    background-color: var(--white);
    transform: scale(1.1);
  }
  
  .footer__bar {
    background-color: var(--primary-color-extra-light);
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--white);
    border-top: 1px solid var(--secondary-color);
    margin-top: 40px;
  }
  
  @media (max-width: 768px) {
    footer.footer__container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
  
    .footer__col {
      margin-bottom: 30px;
    }
  
    .footer__socials {
      justify-content: center;
    }
  }
    /* Social Icons */
  /*   .social__icon--link {
      color: #017fb5;
      font-size: 24px;
    }
    
    .social__media {
      max-width: 1000px;
      width: 100%;
    }
    
    .social__media--wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 90%;
      max-width: 1000px;
      margin: 40px auto 0 auto;
    }
    
    .social__icons {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 240px;
    } */
    
    /* .social__logo {
      color: #017fb5;
      justify-self: start;
      margin-left: 20px;
      cursor: pointer;
      text-decoration: none;
      font-size: 2rem;
      display: flex;
      align-items: center;
      margin-bottom: 16px;
    }
     */
    .website__rights {
      color: #000000;
    }
    
    @media screen and (max-width: 820px) {
      .footer__links {
        padding-top: 2rem;
      }
    
      #footer__logo {
        margin-bottom: 2rem;
      }
    
      /* .website__rights {
        margin-bottom: 2rem;
      } */
    
      .footer__link--wrapper {
        flex-direction: column;
      }
    
      .social__media--wrap {
        flex-direction: column;
      }
    }
    
    @media screen and (max-width: 480px) {
      .section-p1 {
        padding: 0%;
      } 
      .footer__link--items {
        margin: 0;
        padding: 10px;
        width: 100%;
      }
    }