/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8fafc;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navbar */
.header {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 80px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.logo-text {
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.logo-text img {
  width: 250px;
  height: 50px;
  object-fit: contain;
}

.logo-main {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #00c9a7, #0066cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 11px;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: -2px;
}

.logo-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    90deg,
    rgba(0, 201, 167, 0.1),
    rgba(0, 102, 204, 0.1)
  ); */
  border-radius: 8px;
  z-index: 1;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo:hover .logo-gradient {
  opacity: 1;
  transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 15px;
}

.nav-link {
  display: flex;
  align-items: center;
  color: #444;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.nav-link:hover,
.nav-link.active {
  color: #00c9a7;
  background-color: rgba(0, 201, 167, 0.05);
}

.dropdown-toggle {
  position: relative;
  cursor: pointer;
}

.dropdown-icon {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-item {
  padding: 0;
}

.dropdown-item a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-item a i {
  margin-right: 12px;
  color: #00c9a7;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.dropdown-item a:hover {
  background-color: rgba(0, 201, 167, 0.08);
  color: #0066cc;
  padding-left: 25px;
}

.dropdown-item a:hover i {
  color: #0066cc;
}

.view-more {
  border-top: 1px solid #eee;
  margin-top: 5px;
  padding-top: 12px !important;
  color: #0066cc !important;
  font-weight: 600;
}

.view-more i {
  color: #0066cc !important;
}

/* CTA Button */
.cta-container {
  margin-left: 20px;
}

.cta-button {
  background: linear-gradient(90deg, #00c9a7, #0066cc);
  color: white;
  border: none;
  padding: 12px 23px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 201, 167, 0.3);
}

.cta-button i {
  margin-right: 8px;
  font-size: 16px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.4);
  background: linear-gradient(90deg, #00d6b3, #0077e6);
}

/* Mobile Menu Toggle - UPDATED */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 3px 0;
  background-color: #00c9a7;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
.main-content {
  padding: 60px 20px;
  text-align: center;
}

.main-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00c9a7, #0066cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-content > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content-section {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  animation: fadeIn 0.8s ease;
}

.content-section h2 {
  color: #0066cc;
  margin-bottom: 15px;
  font-size: 28px;
}

.content-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
}

.modal-header {
  background: linear-gradient(90deg, #00c9a7, #0066cc);
  color: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 22px;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.2);
}

.modal-body {
  padding: 30px;
}

.modal-body p {
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #00c9a7;
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.2);
  outline: none;
}

.submit-btn {
  background: linear-gradient(90deg, #00c9a7, #0066cc);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #00d6b3, #0077e6);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 201, 167, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1100px) {
  .navbar {
    padding: 0 30px;
  }

  .nav-item {
    margin: 0 10px;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 15px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* MOBILE RESPONSIVE - UPDATED */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transition: all 0.5s ease;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    padding: 15px 30px;
    /* justify-content: space-between; */
    border-radius: 0;
    border-left: 4px solid transparent;
    width: 100%;
  }

  .nav-link.active {
    border-left-color: #00c9a7;
    background-color: rgba(0, 201, 167, 0.05);
  }

  /* Mobile dropdown menu */
  .dropdown-menu {
    position: static;
    width: calc(100% - 20px);
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.5s ease;
    background-color: rgba(0, 0, 0, 0.02);
    border-left: 3px solid #00c9a7;
    margin-left: 20px;
    margin-top: 5px;
  }

  .dropdown.active .dropdown-menu {
    max-height: 800px;
    padding: 10px 0;
  }

  .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }

  .dropdown-item a {
    padding: 12px 40px;
  }

  .cta-container {
    margin-left: 0;
    width: 100%;
    padding: 20px 30px;
    margin-top: 10px;
    border-top: 1px solid #eee;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .navbar {
    flex-wrap: wrap;
    height: auto;
    min-height: 80px;
    padding: 15px 20px;
  }

  .logo-container {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 0;
  }
  
  .logo-text img {
    width: 200px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 15px;
  }
  
  .nav-menu {
    top: 70px;
  }
  
  .logo-text img {
    width: 180px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 10px 15px;
    min-height: 70px;
  }

  .nav-menu {
    top: 70px;
  }

  .nav-link {
    padding: 12px 20px;
    font-size: 15px;
  }

  .dropdown-item a {
    padding: 10px 30px;
  }

  .logo-text img {
    width: 150px;
    height: 30px;
  }

  .main-content h1 {
    font-size: 32px;
  }

  .main-content > p {
    font-size: 16px;
  }

  .content-section {
    padding: 25px;
  }

  .modal-content {
    width: 95%;
  }
}
