/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .navbar-transparent {
    background-color: transparent;
  }
  
  .navbar-white {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-white .nav-link {
    color: #254B72 !important;
  }
  
.edit-toggeler{
    filter: invert(100%);
}

.dropdown-menu {
    min-width:2.25rem;
}

.dropdown-item {
    padding: 0px;
    text-align: center;
}
.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
}



.navbar-nav .dropdown-menu {
   
    border: none;
    border-radius: 0;
}

.navbar-nav .dropdown-item {
    color: black;
}

.navbar-nav .dropdown-item:hover {
    background-color: #4a4a4a;
   
}

.contact-btn {
    background-color: #336D94;
    color: white;
    border: none;
    padding: 7px 38px;
    border-radius: 7px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    

}


.navbar-gradient-bg {
    background-size: cover;
    background-position: center;
}

.nav-item .nav-link{
    
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}

.nav-link{
    white-space: nowrap;
}

.navbar-scrolled {
    background-color: #121212; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .navbar-toggler{
    border: none;
  }
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  

@media (max-width: 1200px) and (min-width: 992px) {
    .navbar-nav .nav-link {
      padding-left: 8px;
      padding-right: 8px;
      font-size: 14px;
    }
    
    .contact-btn {
      padding: 7px 20px;
    }
  }
  
  
  @media (max-width: 991px) and (min-width: 768px) {
    .navbar-nav .nav-link {
      padding-left: 5px;
      padding-right: 5px;
      font-size: 12px;
    }
    
    .contact-btn {
      padding: 5px 15px;
      font-size: 14px;
    }
  }


  /* -------------footer styles--------- */

.footer .container{
    border-top: 1px solid #32A3E591;
    padding: 27px 20px 5px 20px;
}

.footer-form {
    width: 100%;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.footer-form .form-control {
    width: 100%;
    padding: 12px 15px;
    padding-right: 40px; /* Make room for the arrow */
    border: 1px solid #C6C9CE;
    border-radius: 6px;
    font-size: 14px;
}

.arrow-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-button img {
    width: 20px;
    height: 20px;
}

.arrow-button:hover {
    opacity: 0.8;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; /* Changed from baseline to better align items */
    gap: 30px;
    margin-bottom: 40px;
}

/* Company Info Section */
.footer-info {
    flex: 1;
    min-width: 200px; /* Reduced from 280px */
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-description {
    font-size: 14px;
    color: #707070;
    line-height: 1.6;
    word-wrap: break-word; /* Added to ensure text wraps properly */
}

/* Contact Form Section */
.footer-contact {
    flex: 1;
    min-width: 200px; /* Reduced from 250px */
    max-width: 400px;
}

.footer-contact h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #254B72;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-form {
    display: flex;
    gap: 10px;
}

.footer-form .form-control {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #C6C9CE;
    border-radius: 6px;
    font-size: 14px;
}

.footer-form .contact-btn {
    padding: 7px 20px;
}

.footer-social{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social h3{
    font-size: 18px;
    color: #254B72;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #32A3E5;
    border-radius: 50%;
}

.social-icon img {
    width: 18px;
    height: 18px;
}

/* Copyright Section */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #707070;
}

.footer-copyright a {
    color: #3FC5E8;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px; 
    }
    
    .footer-info, .footer-contact, .footer-social {
        max-width: 100%;
        min-width: 100%; 
    }
    
    .footer-description {
        max-width: 100%; 
        font-size: 13px; 
    }
    
    .footer-social {
        align-items: flex-start; 
    }
    
    .footer .container {
        padding: 20px 15px 5px 15px; 
    }
}


@media (max-width: 480px) {
    .footer-info, .footer-contact, .footer-social {
        padding: 0 5px; 
    }
}



.navbar-scrolled-white {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  
  .navbar-nav .nav-link.text-dark {
    color: #212529 !important;
  }
  
  
  
  
  .navbar-scrolled-white .contact-btn {
    background-color: #336D94;
    color: white;
  }
  
 
  .navbar-toggler-icon {
    transition: background-image 0.3s ease;
  }
  
  body.dark-mode .footer-form .form-control{

    border: 1px solid var(--gradient, #32A3E5);
    background-color: transparent;
}
 
body.dark-mode .footer-contact h3 ,
body.dark-mode .footer-social h3
{
    color: white;
}

 
body.dark-mode .contact-heading{
    color: white;
}

body.dark-mode .footer-copyright p
, body.dark-mode .footer-description{
    color:white;
    opacity: 70%;
}

.form-control::placeholder {
    color: #AFAFAF;
}

body.dark-mode .edit-toggeler{
    filter: none;
}

body.dark-mode .navbar-white{
    background-color:#010A16 ;
}

body.dark-mode .navbar-scrolled {
    background-color: #010A16;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  body.dark-mode .navbar-white {
    background-color: #010A16;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  body.dark-mode .navbar-white .nav-link {
    color: white !important;
  }
  


@media (max-width: 992px) {
   
    .custom-nav-section-styles{
        justify-content: center;
    }
    
    .navbar-transparent .navbar-collapse {
      background: rgba(0, 0, 0, 0.8);
    }
    body.dark-mode .navbar-collapse {
        background: rgba(0, 0, 0, 0.9) !important;
      }
      
      body.dark-mode .navbar-white .navbar-collapse {
        background: rgba(1, 10, 22, 0.95) !important;
      }
      
     
      .navbar-white .navbar-collapse {
        background: rgba(255, 255, 255, 0.95) !important;
      }
      
      .navbar-white .navbar-collapse .nav-link {
        color: #254B72 !important;
      }
  }

 
  
  
  

 