@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #fe9635;
  --secondary-color: #017990;
  --heading-font: "Poppins", sans-serif;
  --default-font: "Roboto", sans-serif;
  --heading-color: #000000;
  --default-text-color: #303030;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1400px;
  /* height: 100%; */
  /* border: 2px solid red; */
}

p {
  color: var(--default-text-color);
}

body {
  font-family: var(--default-font);
}

section {
  padding: 60px 0;
  /* border:2px solid red; */
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4 {
  color: var(--heading-color);
}

button {
  border: none;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  font-weight: 500;
}

img {
  width: 100%;
}

/* UTILITY CLASSES START */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #e0852e;
  transform: translateY(-1.5px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #016a7d;
  transform: translateY(-1.5px);
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* UTILITY CLASSES END */

/* Topbar Styles */
/* Add this to your CSS file */
/*.topbar {*/
/*  background-color: var(--secondary-color);*/
/*  color: white;*/
/*  padding: 12px 0;*/
/*  font-size: 14px;*/
/*  font-family: var(--default-font);*/
/*}*/

/*.topbar-wrapper {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*}*/

/*.topbar-contact {*/
/*  display: flex;*/
/*  gap: 20px;*/
/*}*/

/*.contact-item {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*}*/

/*.contact-item i {*/
/*  color: var(--primary-color);*/
/*  font-size: 16px;*/
/*}*/

/*.contact-item a,*/
/*.contact-item span {*/
/*  color: white;*/
/*  text-decoration: none;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.contact-item a:hover {*/
/*  color: var(--primary-color);*/
/*}*/

/*.topbar-social {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 15px;*/
/*}*/

/*.topbar-social a i {*/
/*  font-size: 16px;*/
/*}*/

/*.follow-text {*/
/*  color: rgba(255, 255, 255, 0.8);*/
/*}*/

/*.social-icon {*/
/*  color: white;*/
/*  width: 28px;*/
/*  height: 28px;*/
/*  border-radius: 50%;*/
/*  background-color: rgba(255, 255, 255, 0.1);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.social-icon:hover {*/
/*  background-color: var(--primary-color);*/
/*  transform: translateY(-2px);*/
/*}*/

/*.social-icon i {*/
/*  font-size: 12px;*/
/*}*/

/* Responsive adjustments */
/*@media (max-width: 768px) {*/
/*  .topbar-wrapper {*/
/*    flex-direction: column;*/
/*    gap: 10px;*/
/*    align-content: space-between;*/
/*  }*/

/*  .topbar-contact {*/
/*    flex-wrap: wrap;*/
/*    justify-content: space-between;*/
/*    align-content: space-between;*/
/*  }*/
/*}*/



.topbar {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 0;
  font-size: 14px;
  font-family: var(--default-font);
}

.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.contact-item a,
.contact-item span {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon {
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.social-icon i {
  font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .topbar {
    padding: 8px 0;
  }
  
  .topbar-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .topbar-contact {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .contact-item {
    gap: 6px;
    flex-wrap: nowrap;
  }
  
  .contact-item a {
    font-size: 13px;
  }
  
  .topbar-social {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}


/* Navbar Styles */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  text-decoration: none;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  align-items: center;
  /* gap: 25px; */
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: var(--heading-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
  margin-left: 48px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--heading-color);
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.mobile-nav {
  display: none;
}

/* Mobile Menu Styles */
.mobile-links {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-links li {
  margin: 10px 0;
}

.mobile-links a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 10px;
  transition: all 0.3s ease;
}

.mobile-links a:hover,
.mobile-links a.active {
  color: var(--primary-color);
  background: rgba(254, 150, 53, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-links.active {
    display: flex;
  }
}

/* Footer Styles */
.footer-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 0;
  font-family: var(--default-font);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  padding: 0 15px;
}

.footer-heading {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-about {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-links i {
  font-size: 0.7rem;
  color: var(--primary-color);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 15px;
  color: #b3b3b3;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 3px;
}

.footer-contact a {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #b3b3b3;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    gap: 15px;
  }
}

.sub-banner {
  height: 300px;
  /* Changed from fixed height */
  /* min-height: 180px;
  max-height: 300px; */
  /* Minimum height for mobile */
  padding: 60px 0;
  /* Vertical padding */
  background: linear-gradient(RGB(1, 121, 144, 0.8), RGB(1, 121, 144, 0.8)),
    url(../img/banner-img.jpg) no-repeat center -150px / cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.sub-banner h2 {
  font-size: 52px;
  /* Default size */
  color: white;
  /* Added for better contrast */
  margin: 0 auto;
  /* Center alignment */
  padding: 0 20px;
  /* Side padding */
  line-height: 1.2;
  /* Better text spacing */
  font-family: var(--heading-font);
  /* Using your font variable */
  letter-spacing: 2px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .sub-banner h2 {
    font-size: 36px;
    /* Slightly smaller for tablets */
  }
}

@media (max-width: 768px) {
  .sub-banner {
    min-height: 150px;
    padding: 40px 0;
  }

  .sub-banner h2 {
    font-size: 28px;
    /* Appropriate for mobile */
  }
}

@media (max-width: 480px) {
  .sub-banner {
    min-height: 120px;
    padding: 30px 0;
  }

  .sub-banner h2 {
    font-size: 24px;
    padding: 0 15px;
    /* Tighter side padding */
  }
}

form select {
  text-transform: capitalize;
}
