:root {
  --primary: #146eaa;
  --primary-dark: #0d47a1;
  --secondary: #00897b;
  --bg-light: #f8fbff;
  --bg-white: #ffffff;
  --text-main: #1a202c;
  --text-muted: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --accent: #f43f5e;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
}

body {
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
      padding: 0 10px;
  height: 80px;
  background: var(--bg-white);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  /* padding: 0 20px; */
  justify-content: space-between;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
  gap: 1.5rem;
}

.nav-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.logo img {
  height: 67px;
  width: auto;
}

.desktop-menu,
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 14px;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.75rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.mobile-only,
.nav-wrapper {
  display: none;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 2rem;
  height: 0.2rem;
  background: var(--primary);
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
  transform-origin: 1px;
}

/* Mobile Navigation Media Query */
@media (max-width: 992px) {
  .nav-center,
  .nav-right .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-wrapper {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 300px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    gap: 2rem;
  }

  .nav-wrapper.active {
    display: flex;
    right: 0;
  }

  .nav-wrapper .mobile-only {
    display: none; /* Hidden by default */
  }

  .nav-wrapper.active .mobile-only {
    display: block;
    text-align: center;
    width: 100%;
  }

  .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .nav {
    height: 70px;
  }
  .logo img {
    height: 50px;
    width: auto;
  }
}

main {
  padding-top: 85px;
  min-height: 100vh;
}

/* Footer Styles */
footer {
  padding: 5rem 5% 2rem;
  background: var(--bg-white);
  color: var(--primary);
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 4rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--text-main);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--primary);
  font-size: 0.75rem;
  transition: var(--transition);
  text-transform: uppercase;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-section p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeIn 0.8s ease forwards;
}

/* Hero Section */
.hero {
  padding: 6rem 5% 4rem;
  background: var(--bg-white);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 1.5rem 0;
  color: var(--text-main);
}

.sub-heading {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background: var(--primary);
  color: #d4e7f4;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(21, 101, 192, 0.2);
}

.btn-secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--primary);
}

.hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
  border: 0.1px solid var(--primary);
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.floating-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive Hero */
@media (max-width: 1100px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 4rem 5%;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-text {
    order: 2;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-img {
    max-height: 400px;
  }

  .hero-btns {
    justify-content: center;
  }

  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
  }
}
