* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  color: #4a90e2;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: lowercase;
}

.nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #4a90e2;
}

.cta-btn {
  background: #4a90e2 !important;
  color: white !important;
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.cta-btn:hover {
  background: #357abd !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(74, 145, 226, 0.242), rgba(74, 145, 226, 0.318)),
    url("vasimg2.jpg") center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content h1 {
  font-size: 4rem;
  color: white;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
}

.about-content {
  padding: 5rem 0;
  background: #f8f9fa;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.core-values {
  padding: 5rem 0;
  background: white;
}

.core-values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.core-values > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
}

.values-container {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  border-radius: 20px;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.value-card {
  text-align: center;
  color: white;
  flex: 1;
  min-width: 150px;
}

.value-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
}

.vision-mission {
  padding: 5rem 0;
  background: #f8f9fa;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vm-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vm-icon {
  margin-bottom: 1.5rem;
}

.vm-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.vm-card p {
  color: #666;
  line-height: 1.7;
}

.revenue-strategy {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2c5f7c, #4a90e2);
  color: white;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.strategy-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.strategy-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.strategy-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.professional-services {
  padding: 5rem 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.services-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.services-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

.services-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.growth-section {
  padding: 5rem 0;
  background: white;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.growth-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.growth-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

.growth-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 60px);
  max-width: 1000px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 0 300 0;
}

.navbar {
  background: rgba(112, 112, 112, 0.397);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.navbar:hover::before {
  left: 100%;
}

.navbar:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  z-index: 2;
  position: relative;
}

.brand-text img {
  height: 30px;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  z-index: 2;
  position: relative;
}

@media (min-width: 993px) {
  .navbar-nav {
    display: flex !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    flex-direction: row !important;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2000;
  flex-shrink: 0;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
  justify-content: center;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.cta-button {
  background: linear-gradient(345deg, #0084ff, #816bff);
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-left: 5px;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

@media (max-width: 992px) {
  .navbar-container {
    top: 20px;
    width: calc(100% - 30px);
  }

  .navbar {
    padding: 12px 20px;
    position: relative;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation on mobile */
  .navbar-nav {
    display: none;
  }

  .brand-text {
    font-size: 1.2rem;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #c7d4ff 0%, #1d65ff 50%, #3268fd 100%);
  z-index: 1600;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  padding: 40px 30px;
  list-style: none;
}

.mobile-menu-item {
  margin-bottom: 8px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mobile-cta {
  margin: 30px 30px 40px;
}

.mobile-cta-button {
  display: block;
  width: 100%;
  background: linear-gradient(345deg, #01478a, #6d5ad6);

  color: white;
  text-decoration: none;
  padding: 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}


@media (max-width: 768px) {
  .navbar-container {
    width: calc(100% - 30px);
  }
  .text h3 {
    font-size: 3.4em;
  }
  .text h6 {
    font-size: 1em;
  }
  .btn {
    width: 130px;
    height: 46px;
    font-size: 0.9em;
  }
  .moi {
    gap: 100px;
  }
  .moitext {
    width: 78%;
  }
  .moiimage {
    width: 380px;
    height: 430px;
  }
  .flexoverlay {
    width: 60%;
  }
  .flexoverlay h5 {
    font-size: 5.2em;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    width: calc(100% - 20px);
    top: 15px;
  }

  .navbar {
    padding: 10px 15px;
  }

  .navbar-brand {
    gap: 8px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .brand-text {
    font-size: 1.1rem;
  }
  .text h3 {
    font-size: 2.4em;
  }
  .text h6 {
    font-size: 0.9em;
  }
  .btn {
    width: 130px;
    height: 46px;
    font-size: 0.9em;
  }
  .moi {
    gap: 90px;
  }
  .moitext {
    width: 90%;
  }
  .moitext p {
    font-size: 0.9em;
  }
  .moiimage {
    width: 350px;
    height: 400px;
  }
  .flexoverlay {
    padding: 0 0 0 30px;
    width: 100%;
  }
  .flexoverlay h5 {
    font-size: 4.4em;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .content-grid,
  .vm-grid,
  .strategy-grid,
  .services-grid,
  .growth-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-container {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .core-values h2,
  .strategy-content h2,
  .services-content h2,
  .growth-content h2 {
    font-size: 1.8rem;
  }

  .vm-card,
  .values-container {
    padding: 1.5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

@media (max-width: 768px){
  .footer-content{
  display: block;
}
}
