/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', 'Inter',;
}
html,body{
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope','Inter',sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


/* Navbar Styles */
 
.navbar {
  z-index: 1000;
  background-color: #032127;
  height: 90px;
  width: 100%;
  padding: 20px 40px;
  overflow: visible;
  opacity: 1;
  display: flex;
  align-items: center;
  position: fixed;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  gap: 50px;
}

.nav-menu a {
  position: relative;
  font-size: 14px;
  text-decoration: none;
  color: #B8E5FF;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -0.5px;
  background-color: #B8E5FF;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #B8E5FF; /* maintain same color */
}

.nav-buttons {
  display: flex;
  gap: 15px;
  
}
.logo {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.logo img {
  height: 80px;     /* Adjust as needed */
  width: auto;
  object-fit: contain;
}


/*DROPDOWN*/

/* Container for dropdown */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Dropdown toggle link */
.dropdown-toggle::after {
  content: ' ▼'; /* Small arrow */
  font-size: 10px;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #032127;
  min-width: 350px;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  z-index: 999;
  flex-wrap: wrap;
}

/* Each dropdown item */
.dropdown-menu a {
  flex: 0 0 50%;
  padding: 10px 20px;
  color: #B8E5FF;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

/* Hover effects */
.dropdown-menu a:hover {
  background-color: #01414e;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Handle dropdown in scrolled mode */
.navbar.scrolled .dropdown-menu {
  background-color: #ffffff;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.15);
}

.navbar.scrolled .dropdown-menu a {
  color: #000000;
}

.navbar.scrolled .dropdown-menu a:hover {
  background-color: #f0f0f0;
}


.btn-outline {
  padding: 13px 20px;
  background-color: transparent;
  border: 0.25px solid #B8E5FF;
  color: #B8E5FF;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #B8E5FF;
  color: #002920;
}

.btn-filled {
  padding: 14px 20px;
  background-color: #B8E5FF;
  color: #002920;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Scroll behavior navbar */
.navbar.scrolled {
  background-color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-menu a,
.navbar.scrolled .btn-outline,
.navbar.scrolled .btn-filled {
  color: #000000 !important;
  border-color: #000000;
}

/* Optional: adjust hover behavior on scroll */
.navbar.scrolled .nav-menu a::after {
  background-color: #000000;
}

.navbar.scrolled .btn-outline:hover {
  background-color: #000000;
  color: white;
}

.navbar.scrolled .btn-filled {
  background-color: #000000;
  color: white !important;
}
/* CTA Section Styles */
.cta-section {
  background-color: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.cta-inner-container {
  width: 100%;
  max-width: 1200px;
}

.cta-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px; /* reduced height */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.cta-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text content */
.cta-text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 20px;
  z-index: 2;
}

.cta-text-content h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Manrope', 'san-serif';
  line-height: 1.2;
}

.cta-text-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}

/* Footer Section */
.footer-section {
  background-color: #ffffff;
  padding: 60px 20px 30px 20px;
  margin-top: 60px; /* Add space above the footer */
  font-family: 'Manrope', sans-serif;
  color: #222;
  font-size: 14px; /* Reduced from 15px/16px to 14px */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left side */
.footer-left {
  flex: 1.2;
  min-width: 200px;
}

.footer-logo {
  font-size: 20px; /* Slightly reduced */
  font-weight: 700;
  margin-bottom: 10px;
}

/* Right side */
.footer-right {
  display: flex;
  gap: 20px;
  flex: 2;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 120px;
}

.footer-column h4 {
  font-size: 14px; /* Reduced from 16px */
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 13.5px; /* Slight reduction */
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #007bff;
}

.footer-column p {
  font-size: 13.5px; /* Contact text */
  line-height: 1.5;
  color: #333;
}

/* Divider and Bottom */
.footer-divider {
  margin: 40px 0 10px;
  border: none;
  height: 1px;
  background-color: #e0e0e0;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #666;
}
.footer-logo-img {
  max-width: 160px; /* adjust as needed */
  height: auto;
  margin-bottom: 10px;
}


