body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f7fa;
  margin: 0;
}




/* Topbar base styling */
.topbar {
  background-color: rgb(59, 153, 156);
  color: #fff;
  padding: 5px 25px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  gap: 20px;
}

/* Navigation base */
nav {
  background: rgb(248, 248, 255);
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 25px;
  flex-wrap: wrap;
}

.logo {
  height: 110px;
  margin-right: 4rem;
}

nav ul {
  display: flex;
  gap: 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  align-items: center;
}

nav li a {
  color: rgb(0, 151, 143);
  text-decoration: none;
  font-weight: 900;
  margin: 0;
}

nav li a:hover {
  text-decoration: underline;
  color: #8ae5f3;
}

/* Hamburger toggle hidden on desktop */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: rgb(0, 151, 143);
  font-size: 2.5rem;
  cursor: pointer;
  margin-left: auto;
}

/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.928);
  overflow: hidden;
  padding: 10px 2px;
  z-index: 1;
  top: 100%;
  left: -10%;
  width: 15vw;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  transition: background 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown > a::after {
  content: " ▼";
  font-size: 12px;
}

.dropdown:hover > a::after {
  content: " ▲";
}

.right-btn {
  margin-left: 30px;
}

.login-btn, .apply-btn {
  background: rgb(59, 153, 156);
  color: #fff;
  border: none;
  margin-left: 20px;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 15px;
  cursor: pointer;
}
.login-btn:hover, .apply-btn:hover {
  background: rgb(83, 238, 238);
}

/* Responsive styles */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    font-size: 10px;
    padding: 10px 15px;
    gap: 8px;
  }
  
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo {
    height: 124px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .navbar-toggle {
    display: block;
    margin-top: -102px;
    margin-right: 30px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding-left: 0;
    margin: 0;
  }

  nav ul.open {
    display: flex;
  }

  nav li a {
    font-weight: 700;
    font-size: 1.1rem;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 0;
  }

  /* Disable hover dropdown on touch devices */
  .dropdown:hover .dropdown-content {
    display: none;
  }

  .right-btn {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
  }

  .login-btn, .apply-btn {
    margin-left: -33px;
    width: 50%;
    padding: 12px;
    font-size: 1rem;
    margin-bottom: 10px;
  }
}




/* Banner Styles */


.contact-banner {
  position: relative;
  background-image: url(contacttttt.png);
  background-repeat: no-repeat;
  background-size: cover;          /* Cover entire area */
  background-position: center center; /* Center the image */
  width: 100vw;                    /* Full viewport width */
  height: 100vh;                   /* Full viewport height */
  padding: 0;                     /* Remove padding for full screen */
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;                  /* Flex for vertical centering */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;                   /* Text color visible on background */
  text-shadow: 0 2px 6px rgba(0,0,0,0.7); /* Text shadow for contrast */
}

/* Banner inner H1 styling */
.contact-banner-inner h1 {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.04em;
}

/* Highlight */
.contact-highlight {
  color: #338bee;
}

/* Breadcrumb */
.contact-breadcrumb {
  color: #d0d8ea;
  margin-top: 24px;
  font-size: 1.3rem;
}

/* Responsive adjustments for smaller devices */
@media (max-width: 768px) {
  .contact-banner {
    height: 26vh;               /* Slightly less height on mobile for better fit */
    padding: 15px 20px;         /* Some padding but minimal */
    color: white;
  }

  .contact-banner-inner h1 {
    font-size: 2.3rem;
  }

  .contact-breadcrumb {
    font-size: 1rem;
    margin-top: 10px;
  }
}


/* Main Section */
.contact-main {
  max-width: 1080px;
  margin: 60px auto;
  display: flex;
  gap: 46px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-card, .contact-detail {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 15px #b3daf425;
  padding: 34px 32px 26px 32px;
  flex: 1;
  min-width: 270px;
}

.contact-title {
  color: #1b2954;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 9px;
}

.contact-sub {
  color: #7182a1;
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

.contact-form label {
  display: block;
  color: #3c4e6d;
  margin: 14px 0 3px 0;
  font-size: 1.08rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px 13px;
  margin-bottom: 7px;
  border: 1px solid #cce0f7;
  border-radius: 6px;
  font-size: 1.08rem;
  resize: none;
  background: #eef6fd;
  box-sizing: border-box;
}

.contact-btn {
  background: #fc8019;
  color: #fff;
  border: none;
  padding: 11px 0;
  width: 100%;
  border-radius: 6px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px #fc801922;
  transition: background 0.2s;
}

.contact-btn:hover {
  background: #338bee;
}

.contact-detail ul {
  list-style-type: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.contact-detail ul li {
  color: #123868;
  font-size: 1.13rem;
  margin-bottom: 16px;
}

.contact-detail ul b {
  font-weight: 700;
  color: #338bee;
}

.contact-map {
  margin-top: 10px;
  width: 100%;
}

/* Responsive adjustments for mobile and tablets */
@media (max-width: 900px) {
  .contact-main {
    flex-direction: column;
    gap: 27px;
    padding: 0 15px; /* Add some horizontal padding */
    margin: 30px auto; /* Reduce vertical margin on smaller screens */
  }

  .contact-card,
  .contact-detail {
    min-width: auto;
    width: 100%;  /* Full width on mobile */
    padding: 20px 15px;
    box-sizing: border-box;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-sub {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .contact-form label {
    font-size: 1rem;
    margin: 10px 0 5px 0;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 10px;
  }

  .contact-btn {
    font-size: 1.1rem;
    padding: 12px 0;
  }

  .contact-detail ul li {
    font-size: 1rem;
  }
}





.faq-section {
  background: #f5fafd;
  padding: 62px 0 62px 0;
}
.faq-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
}
.faq-heading h2 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: #23315e;
}
.faq-highlight {
  color: #338bee;
}
.faq-heading p {
  color: #475b81;
  font-size: 1.18rem;
  margin-bottom: 0;
}
.faq-list {
  max-width: 630px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px #b3daf425;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid #e4eef7;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.18rem;
  padding: 22px 30px;
  font-weight: 600;
  color: #223567;
  cursor: pointer;
  outline: none;
}
.faq-question::after {
 
  
  float: right;
  color: #338bee;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  transform: rotate(-180deg);
}
.faq-answer {
  display: none;
  color: #415675;
  font-size: 1.07rem;
  padding: 0 30px 20px 30px;
  background: #fff;
}
.faq-item.open .faq-answer {
  display: block;
}


.read-more-link {
  color: #338bee;
  font-size: 1.05rem;
  cursor: pointer;
  margin-left: 8px;
  text-decoration: underline;
}


.footer-section {
  background: rgb(59, 153, 156);
  color: #dde7f2;
  margin-top: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 38px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 0 30px 0;
}
.footer-about {
  flex: 1.2;
  min-width: 265px;
  padding-left: 15px;
}
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
  margin-left: 15px;
}
.footer-about-text {
  font-size: 16px;
  margin-bottom: 18px;
  color: #e2eaf6;
  flex :1;
  margin-left: 15px;
  margin-right: 60px;
}
.footer-social {
  display: flex;
  gap: 13px;
  margin-left:15px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-image: url('footerimage.jpeg');
  padding: 6px;
  transition: background 0.15s;
}
.footer-social a img:hover {
  background: #358ef3;
}
.footer-columns {
  display: flex;
  flex: 3;
  gap: 42px;
  min-width: 530px;
  flex-wrap: wrap;
  
}
.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 155px;
  max-width: 210px;
  margin-left: 10px;
  justify-content:start;
  align-items: start;
}

.footer-col-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;

  
  
}
.footer-col a {
  color: #dde7f2;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
  transition: color 0.13s;
}
.footer-col a:hover {
  color: #46aef2;
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;

  background-color:  rgb(91, 164, 161);
  color: #fbfdff;
  font-size: 1rem;
  letter-spacing: 0.015em;
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-main {
    flex-direction: column;
    gap: 22px;
    padding: 40px 10px 26px 10px;
  }
  .footer-columns {
    flex-wrap: wrap;
    gap: 28px;
    min-width: 0;
    max-width: 100vw;
  }
  .footer-about {
    padding-left: 0;
  }
  .footer-logo {
    width: 120px;
  }
}
