* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem; 
  cursor: pointer;
}

.logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}
.logo-icon img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
}

.logo-text p {
  font-size: 0.75rem;
  color: #666;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #5b26c5;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #5b26c5;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.contact-btn {
  background: #111;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #374151;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
   background: linear-gradient(135deg, #111, #374151);;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.loading {
  opacity: 0;
  transform: translateY(30px);
}
.hero-text{
  padding-top: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}
/* background: linear-gradient(135deg, #eed704, #ffea41, #ffd700); */
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #dadada;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #eed704;
}

.hero-title .line-3 {
  color: white;
}

.hero-description {
  font-size: 1.125rem;
  color: #eaeaea;
  margin-bottom: 2rem;
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #dadada;
  font-weight: 500;
}

.feature-item i {
  color: #eed704;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #111;
  color: white;
  border: 2px solid #111;
}

.btn-primary:hover {
  background: #374151;
  border-color: #374151;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #dadada;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.element-1 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  top: -20px;
  right: -20px;
}

.element-2 {
  width: 150px;
  height: 150px;
  background: rgba(234, 88, 12, 0.3);
  bottom: -20px;
  left: -20px;
}

.wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.wave-separator svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: #f9fafb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #f59e0b;
  font-size: 1.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(0, 0, 225, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111, #374151);
  color: white;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-input {
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background-color: transparent;
  transition: border-color 0.3s ease;
  color: white;
}

.form-input:focus {
  outline: none;
  border: 3px solid #eed704;
}

.form-submit {
  background: #eed704;
  color: #111;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #f0ec06;
  transform: translateY(-2px);
}

.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d1d5db;
  background-color: transparent;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
  font-family: inherit;
  color: white;
}

.form-textarea:focus {
  outline: none;
  border: 3px solid #eed704;
}

/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo p {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #eed704;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9ca3af;
}

.contact-item i {
  color: #eed704;
  width: 20px;
}
.contact-item a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

.insta-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}

/* make a insta-btn with instagram linear gradients */
.insta-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
  transition: all 0.3s ease;
}

.chatbot-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(233, 236, 41, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn{
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-img, .about-image img{
    display: none;
  }
  .about-section{
    padding: 2rem 0;
  }
  .hero {
    padding: 2rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .chatbot-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(30px);
}

.service-btn{
  margin-top: 1.5rem;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

/* Why Choose Us STyling */
.why-us {
  padding: 5rem 0;
  background: #f9fafb;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.why-card i {
  font-size: 2rem;
  color: #eed704;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.why-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* About Us Page Styling */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(160deg, #111, #374151);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content .section-badge {
  background: #fef3c7;
  color: #92400e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.about-content .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #eee;
  margin-bottom: 1rem;
}

.about-content .section-description {
  font-size: 1.125rem;
  color: #e4e4e4;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.typewriter-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #eed704;
  margin-bottom: 1.5rem;
  min-height: 30px;
  font-family: "Inter", monospace;
}
/* Hamburgur menu bar */
/* Hide contact button on tablets and mobile */
@media (max-width: 1024px) {
  .contact-btn {
    display: none;
  }
}

/* Mobile Menu Styles */
.mobile-nav-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 100%;
  z-index: 999;
  width: 100%;
  left: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.active {
  display: flex;
}

.mobile-nav-menu .nav-link {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  color: #111;
  /* background-color: #000; */
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  
}

.mobile-nav-menu .nav-link:last-child {
  border-bottom: none;
}
