/* ================================
   Root Variables
================================ */
:root {
  --bg-gradient: linear-gradient(135deg, #0a74da, #2ea8ff, #6dd5ed);
  --btn-green: #00c853;
  --btn-green-hover: #009c44;
  --text-dark: #1a1a1a;
  --nav-bg: rgba(15, 74, 88, 0.9);
  --nav-bg-solid: rgb(15, 74, 88);
}

/* ================================
   Reset & Body
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: var(--bg-gradient);
  min-height: 100vh;
  line-height: 1.6;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: var(--nav-bg);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--nav-bg-solid);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  overflow: hidden; /* ensures image stays inside rounded box */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image proportionate */
}


.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .title {
  font-size: 18px;
  font-weight: 700;
}

.logo-text .subtitle {
  font-size: 13px;
  color: #a7c4de;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.dropbtn {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #e6e6e6;
  transition: color 0.3s ease;
  padding: 6px 0;
}

.nav-links a:hover,
.dropbtn:hover {
  color: #64a2d5;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 200px;
  background: #0f4a58;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: fadeIn 0.2s ease;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #d8d8d8;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #64a2d5;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Request Button */
.start span {
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(to right, #64a2d5, #3b45d7);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ================================
   MOBILE STYLES
================================ */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 250px;
    background: var(--nav-bg-solid);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 1rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-content a {
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-content {
    display: none; /* disable hover effect on mobile */
  }

  .dropdown.open .dropdown-content {
    display: block;
  }
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary: #0051ff;
  --accent: #00e1ff;
  --bg-dark: #0a0f1a;
  --text-light: #f8f9fc;
}

/* Hero */
.contact-hero-modern {
  height: 75vh;
  background: linear-gradient(to bottom right, #0a0f1a, #001233);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 50px;
  width: 90%;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.hero-glass h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-glass p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  background: var(--primary);
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: var(--accent);
  color: #000;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 80px 10%;
  background: var(--bg-dark);
  color: #fff;
}

.info-card-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  backdrop-filter: blur(6px);
}

.info-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,225,255,0.2);
}

.info-card-modern i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Modern Form */
.form-modern-section {
  background: linear-gradient(to right, #001233, #0a0f1a);
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  color: #fff;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 50px;
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  animation: fadeInUp 1.2s ease;
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--accent);
}

.form-group-modern {
  position: relative;
  margin-bottom: 30px;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1rem;
  resize: none;
}

.form-group-modern label {
  position: absolute;
  left: 0;
  top: 14px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  transition: 0.3s;
}

.form-group-modern input:focus + label,
.form-group-modern textarea:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern textarea:not(:placeholder-shown) + label {
  top: -12px;
  font-size: 0.85rem;
  color: var(--accent);
}

.modern-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.modern-btn:hover {
  background: var(--primary);
  color: #fff;
}

.form-msg {
  text-align: center;
  margin-top: 15px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-glass h1 {
    font-size: 2rem;
  }
  .form-wrapper {
    padding: 35px;
  }
}


.footer {
  background-color: #242436;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.8;
}

/* Footer container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 15px;
}

.footer-section.about { flex: 1.5; }

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.footer-section p {
  color: #fffafa;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.footer-section .powered-by {
  font-size: 13px;
  margin-top: 20px;
}

.footer-section .powered-by a {
  color: #FFD700;
  text-decoration: none;
}

.footer-section .powered-by a:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgb(201, 201, 201);
  text-transform: capitalize;
  cursor: pointer;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cfcccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-section.contact-info p i {
  margin-right: 10px;
  color: #90EE90;
  font-size: 16px;
  margin-top: 3px;
}

.footer-section.contact-info a {
  color: #bbb;
  text-decoration: none;
}

.footer-section.contact-info a:hover {
  text-decoration: underline;
}

.follow-us {
  margin-top: 30px;
  margin-bottom: 15px !important;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  background-color: #90EE90;
  color: #242436;
}

.social-links i { font-size: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #bbb;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-bottom p { margin: 5px 0; }

.footer-legal a {
  color: #bbb;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: #fff; }

.footer-last p{
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #bbb;
  font-size: 13px;
  text-transform: capitalize;
}