* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #0093dd;
  --secondary-color: #08567d;
  --accent-color: #5bc8ff;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(90deg, #0193dd 0%, #00b4d8 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
  --success-color: #10b981;

  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  overflow-x: hidden;
  background: #ffffff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.logo {
  width: 30%;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #0796dd;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.cta-nav {
  background: var(--gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.mobile-toggle {
  display: none;
  color: #4a5568;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -200%;
  transform: translateX(-50%);
  background: white;
  min-width: 320px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 1rem 0;
  width: 180vh;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item:hover {
  background: #f7fafc;
  border-left-color: #0796dd;
  color: #2d3748;
}

.dropdown-item i {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.dropdown-item div h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.dropdown-item div p {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
}

.dropdown-item:hover div h4 {
  color: #0796dd;
}

.only-mobile {
  display: none;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
  .nav-container {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
  .column1 {
    width: 0;
  }

  .only-mobile {
    display: block;
  }
  .only-desktop {
    display: none;
  }

  .enterprise {
    display: block !important;
    width: 100%;
  }
  .column1 {
    width: 50vh;
  }
  .dropdown:hover .dropdown-menu {
    transform: 0;
  }
  .cta-nav {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: #f7fafc;
    margin-top: 0.5rem;
    border-radius: 10px;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
  }

  .dropdown-item i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: #f7fafc;
  }

  .nav-menu a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    margin: 0.5rem 0 0 0;
    border-radius: 10px;
    display: none;
    min-width: auto;
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
  }

  .dropdown-header {
    padding: 0.75rem 1rem 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .dropdown-header h3 {
    color: white;
    font-size: 1rem;
  }

  .dropdown-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
    border-left: none;
    border-radius: 0;
  }

  .dropdown-item:hover {
    background: #e2e8f0;
    transform: none;
  }

  .dropdown-item::before {
    display: none;
  }

  .dropdown-item i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .dropdown-item:hover i {
    transform: none;
    box-shadow: none;
  }

  .dropdown-item div h4 {
    font-size: 0.95rem;
  }

  .dropdown-item div p {
    font-size: 0.8rem;
  }

  .cta-nav {
    display: none;
  }
}

.dropdown-menu.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px;
}

.dropdown-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}
.column1 {
  width: 80vh;
}

.enterprise {
  display: flex;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  padding: 10px 5px;
  border-radius: 6px;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

.dropdown-item i {
  font-size: 22px;
  margin-top: 4px;
}

.dropdown-item h4 {
  margin: 0;
  font-size: 15px;
}

.dropdown-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Mobile CTA Button */
@media (max-width: 768px) {
  .mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: #718096;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline {
  background: transparent;
  color: #0796dd;
  border: 2px solid #0796dd;
}

.btn-outline:hover {
  background: #0796dd;
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
}

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

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  right: -15%;
  animation-delay: 1.5s;
}

.floating-card i {
  font-size: 2rem;
  color: #0796dd;
  margin-bottom: 0.5rem;
}

.floating-card h4 {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 0.25rem;
}

.floating-card p {
  font-size: 0.8rem;
  color: #718096;
}

/* Services Section */
.services {
  background: white;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #0796dd;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.service-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #0796dd;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.features-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.features-content p {
  font-size: 1.2rem;
  color: #718096;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #2d3748;
}

.features-list i {
  width: 24px;
  height: 24px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 0.8rem;
  color: white;
}

.features-visual {
  position: relative;
}

.features-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
  padding: 4rem 2rem;
  background: white;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #718096;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background: var(--gradient);
  color: white;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background: white;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.2rem;
  color: #718096;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-details i {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
}

.contact-details div h4 {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.contact-details div p {
  color: #718096;
  margin: 0;
}

.contact-form {
  background: #f7fafc;
  padding: 2.5rem;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0796dd;
}

/* Footer */

.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section img {
  width: 60%;
}

.footer-section p,
.footer-section a {
  color: #a0aec0;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #0796dd;
}

.footer-section ul {
  list-style: none;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #4a5568;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #0796dd;
  transform: translateY(-2px);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 2rem;
  text-align: center;
  color: #a0aec0;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  padding-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .features-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* services pages */

/* heroservice Section */
.heroservice {
  background: var(--gradient);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.heroservice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.heroservice-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.heroservice h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: slideInUp 1s ease-out;
}

.heroservice-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.2s both;
}

.heroservice-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.4s both;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Overview */
.services-overview {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: white;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: white;
}

.process-timeline {
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin: 0 30px;
  transition: all 0.3s ease;
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.process-number {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
}

.process-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.process-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Technology Stack */
.tech-stack {
  padding: 100px 0;
  background: var(--bg-light);
}

.tech-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tech-tab {
  padding: 12px 25px;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tech-tab.active,
.tech-tab:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tech-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.tech-name {
  font-weight: 600;
  color: var(--text-dark);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 25px 25px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .heroservice h1 {
    font-size: 2rem;
  }

  .heroservice-buttons {
    flex-direction: column;
    align-items: center;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 60px;
  }

  .process-number {
    left: 30px;
  }

  .process-content {
    margin: 0;
    margin-top: 20px;
  }

  .tech-categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .heroservice-buttons {
    gap: 15px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Story Section */
.story-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.story-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-dark);
  line-height: 1.2;
}

.story-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.story-highlight {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.story-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.floating-card.card-1 {
  top: 0;
  left: 0;
  width: 200px;
  background: var(--gradient);
  color: white;
  animation: floatCard1 6s ease-in-out infinite;
}

.floating-card.card-2 {
  top: 150px;
  right: 0;
  width: 180px;
  background: var(--gradient-2);
  color: white;
  animation: floatCard2 8s ease-in-out infinite;
}

.floating-card.card-3 {
  bottom: 0;
  left: 50px;
  width: 220px;
  background: var(--gradient-3);
  color: white;
  animation: floatCard3 7s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatCard2 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

@keyframes floatCard3 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(1deg);
  }
}

.floating-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.floating-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.value-card {
  background: white;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(10deg);
}

.value-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Mission Vision Section */
.mission-vision {
  padding: 120px 0;
  background: white;
}

.mv-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.mv-card {
  background: var(--bg-light);
  padding: 60px 50px;
  border-radius: 30px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient);
  opacity: 0;
  transition: all 0.4s ease;
  transform: rotate(45deg);
}

.mv-card:hover::before {
  opacity: 0.05;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.mv-content {
  position: relative;
  z-index: 2;
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 30px;
}

.mv-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.mv-card p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Stats Section */
.stats-section {
  padding: 120px 0;
  background: var(--gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
  animation: float 20s linear infinite;
}

.stats-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.stats-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.stats-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.stat-circle:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.stat-symbol {
  font-size: 1.2rem;
  opacity: 0.8;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Culture Section */
.culture-section {
  padding: 120px 0;
  background: white;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.culture-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.culture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.culture-card:hover::before {
  left: 100%;
}

.culture-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.culture-emoji {
  font-size: 4rem;
  margin-bottom: 25px;
  display: block;
}

.culture-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.culture-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.achievement-card {
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-top: 50px solid var(--accent-color);
  transition: all 0.4s ease;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.achievement-card:hover::after {
  border-left-width: 80px;
  border-top-width: 80px;
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 25px;
}

.achievement-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.achievement-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-visual {
    height: 400px;
    order: -1;
  }

  .mv-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .floating-card {
    position: relative !important;
    margin-bottom: 20px;
    width: 100% !important;
  }

  .story-visual {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

/* about-hero Section */
.about-hero {
  background: var(--gradient);
  color: white;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(2deg);
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-content h1 {
 
  font-weight: 700;
  margin-bottom: 30px;
  animation: slideInUp 1s ease-out;
}

.about-hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
  animation: slideInUp 1s ease-out 0.2s both;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin-top: 60px;
  animation: slideInUp 1s ease-out 0.4s both;
}

.about-hero-stat {
  text-align: center;
}

.about-hero-stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.about-hero-stat-label {
  font-size: 1rem;
  opacity: 0.8;
}
.floting-text {
  color: var(--bg-light) !important;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .mv-card {
    padding: 40px 30px;
  }


  }