* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

:root {
  --primary: #273246;
  --primary-dark: #273246;
  --secondary: #273246;
  --text-dark: #2732466;
  --text-light: #64748b;
  --background: #f4f7fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-light: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar Styles */
/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 5%;
  background-color: #273246;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}



.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Remove the filter that was making it white */
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;

  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  /* color: rgb(10, 10, 10); */
  transition: transform 0.5s ease;
}


/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(59, 130, 246, 0.05);
  color: var(--primary);
}

.container h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* res */
/* Default desktop styles */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .hamburger {
    display: block;
    z-index: 1101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    max-height: 80vh;
    /* Add this */
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    color: #273246;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: white;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}


.contact-hero {
  background-image: url('../images/contact7.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 60vh;
  min-height: 300px;
  width: 100%;
  padding: 120px 15px 80px;
  box-sizing: border-box;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 375px) {
  .contact-hero {
    height: 45vh;
    min-height: 220px;
    padding: 100px 10px 50px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    height: 50vh;
    min-height: 250px;
    padding: 100px 15px 60px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .contact-hero {
    height: 55vh;
    min-height: 280px;
    padding: 120px 20px 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-hero {
    height: 60vh;
    min-height: 300px;
  }
}

@media (min-width: 1370px) {
  .contact-hero {
    height: 65vh;
  }
}



.hero-content h1 {
  color: white;
  font-size: 3rem;
}

.hero-content p {
  color: white;
  font-size: 1.5rem;
}



.map-section {
  /* margin-top: 60px; */
  width: 100%;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 20px;
  /* box-shadow: 0 8px 24px rgba(234, 231, 231, 0.717); */
}


/* Footer Section */

.footer {
  background: #273246;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-width: 160px;
  max-width: 280px;
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}


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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color:orangered;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-col:first-child {
  padding-right: 30px;
}

.footer-col p {
  word-wrap: break-word;

  line-height: 1.6;
  font-size: 14px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  
  padding: 8px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}

/* Newsletter */
.newsletter-col {
  max-width: 280px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px 15px;
  background: #e74c3c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-top: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1165px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* General Responsive Adjustments */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .contact-wrapper {
        padding: 30px 5%;
    }

    .map-section {
        margin-top: 40px;
    }

    .footer-container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .contact-image,
    .contact-form-container {
        min-width: 100%;
    }

     .map-section {
        margin-top: 30px;
     }

    .footer-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-wrapper {
        padding: 30px 15px;
        gap: 20px;
    }

    .contact-form-container h2 {
        font-size: 1.8rem;
    }

     .form-group input,
     .form-group textarea {
        padding: 0.8rem 1rem 0.8rem 2.5rem;
        font-size: 0.9rem;
     }

     .form-group i {
        left: 0.8rem;
     }

     button {
        padding: 0.8rem;
        font-size: 0.9rem;
     }

     .map-section {
        margin-top: 20px;
     }

     .map-section iframe {
        height: 300px;
     }

    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-col {
        flex: 1 1 100%;
        margin: 15px 0;
    }

    .footer-socials a {
        margin: 8px 5px 0;
    }

    .newsletter-form {
        justify-content: center;
        max-width: 300px;
        margin: 10px auto;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 40px 0;
        /* margin-top: 100px; */
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        padding: 30px 10px;
        gap: 15px;
    }

     .contact-form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
     }

     .contact-form-container p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
     }

     .form-group input,
     .form-group textarea {
        padding: 0.7rem 0.8rem 0.7rem 2.2rem;
        font-size: 0.85rem;
     }

      .form-group i {
        left: 0.6rem;
        font-size: 0.9rem;
     }

     button {
        padding: 0.7rem;
        font-size: 0.85rem;
     }

     .map-section iframe {
        height: 250px;
     }

    .footer-container {
        padding: 0 15px;
    }

     .footer-col h4 {
        font-size: 16px;
     }

     .newsletter-form input[type="email"],
     .newsletter-form button {
        padding: 8px;
        font-size: 12px;
     }
}

/* Hover effects for touch devices */
@media (hover: none) {
    button:hover,
    .contact-btn:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
}


/*contact us button footer*/
.btn {
    padding: 10px 20px;
    background-color: rgb(231, 76, 60);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.btn:hover {
    background-color: rgb(241, 93, 77);
}

@media (min-width: 1370px) {
  .contact-hero{
    height:60vh;
  }

}
/* contact */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}



.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background-color: #f8f9fa;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.info-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.business-hours {
    list-style: none;
    margin-top: 1.5rem;
}

.business-hours li {
    margin-bottom: 0.5rem;
    display: flex;
}

.business-hours li span {
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group label span {
    color: var(--gray-color);
    font-weight: normal;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(72, 149, 239, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.form-response {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.social-section {
    text-align: center;
    margin: 3rem 0;
}

.social-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--gray-color);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}


.info-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}
@media(max-width:480px){
.hero-content{
  margin-top: 50px;
}
}
@media (max-width: 768px) {
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* Improve form spacing */
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    /* Adjust padding for mobile */
    .contact-info,
    .contact-form-section,
    .faq-section,
    .additional-info {
        padding: 1.5rem;
    }
    
    /* Make social icons smaller */
    .social-icons a {
        font-size: 1.2rem;
    }
    
    /* Stack business hours text */
    .business-hours li {
        flex-direction: column;
    }
    
    .business-hours li span {
        margin-bottom: 0.2rem;
        min-width: auto;
    }
}

/* Very small screens (e.g., iPhone SE) */
@media (max-width: 375px) {
    .contact-container {
        padding: 1rem 0.5rem;
    }
    
    .submit-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Make form inputs more compact */
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }
}