:root {
  /* Dark theme color palette */
  --primary-color: #3b82f6;
  --secondary-color: #2563eb;
  --accent-color: #60a5fa;
  --dark-bg: #0f172a;
  --dark-secondary: #1e293b;
  --dark-tertiary: #334155;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: #475569;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --hover-overlay: rgba(59, 130, 246, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* Dark theme body background and text color */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text-light);
  background-color: var(--dark-bg);
  line-height: 1.6;
}

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

/* Navigation */
.navbar {
  /* Added glassmorphism effect with backdrop blur and transparency */
  position: sticky;
  top: 0;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}

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

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
 font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, #00a6ff, #3677f3, #8053ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu .nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu .nav-link:hover {
  color: var(--accent-color);
}

.nav-menu .nav-link.active {
  color: var(--primary-color);
}

.nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  /* Changed from 600px to 100vh for full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Removed gradient background, will be replaced by Vanta animation */
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  font-family: 'Gilroy', sans-serif;

  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #00a6ff, #3677f3, #8053ff);

  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

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

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

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Section Styling */
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 50px;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: var(--dark-secondary);
}

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

.service-card {
  padding: 40px 30px;
  background: var(--dark-tertiary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(37, 99, 235, 0.05)
  );
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  /* background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  
  color: var(--white); */
  background: linear-gradient(90deg, #00a6ff, #3677f3, #8053ff);

  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05)); */
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.about-content {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.value-card {
  background: var(--dark-secondary);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.value-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.value-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Portfolio Carousel */
.portfolio-section {
  padding: 80px 0;
  background: var(--dark-secondary);
}

.portfolio-carousel {
  position: relative;
  margin-top: 50px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(133, 109, 109, 0.3);  
}
 
.portfolio-item {
  display: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  animation: slideInUp 0.6s ease-out;
}

.portfolio-item.active {
  display: flex;
  gap: 40px;
}

.portfolio-image {
  width: 50%;
  height: 350px;
  background: var(--dark-tertiary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;               
  box-sizing: border-box;
  overflow: hidden;
}

.portfolio-image img {
  max-width: 90%;             
  max-height: 90%;             
  width: auto;                 
  height: auto;                
  object-fit: contain;         
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-category {
  color: var(--accent-color);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-item h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.portfolio-item p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.portfolio-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio-tags span {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: -60px;
}

.carousel-btn-next {
  right: -60px;
}

.carousel-indicators {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}




.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

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

.team-member {
  background: var(--dark-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2);
  border-color: var(--primary-color);
}

.member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--dark-tertiary);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 30px;
}

.member-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.member-title {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.member-bio {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 80px 0;
    background: linear-gradient(90deg, #8053ff, #3677f3, #00a6ff);

  /* background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  ); */
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--dark-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-item {
  margin-bottom: 40px;
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.contact-item p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  color: var(--accent-color);
}

.social-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--border-color);
}

.social-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-block;
  padding: 10px 20px;
  background: var(--dark-tertiary);
  border-radius: 6px;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Contact Form */
.contact-form-wrapper h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-form {
  background: var(--dark-tertiary);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--dark-bg);
  color: var(--text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
  resize: vertical;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 12px;
  cursor: pointer;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  display: none;
  font-weight: 600;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}

/* Footer */
.footer {
  background: var(--dark-secondary);
  color: var(--text-light);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.footer-section p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--dark-tertiary);
  border-radius: 50%;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  border: 1px solid var(--border-color);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 99;
}

.scroll-top-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}
/* Scroll to top button */
/* Whatsapp button */
.whatsapp-btn {
  position: fixed;
  bottom: 87px; 
  right: 30px;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.15);
}


/* Adjust for mobile screens */
@media (max-width: 480px) {
  .whatsapp-btn {
    bottom: 95px; 
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

/* Whatsapp button */
/* follow us */

.social-links {
  display: flex;
  gap: 15px;
}

.social-3d {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 
      0 4px 6px rgba(0,0,0,0.2),         /* normal shadow */
      0 6px 15px rgba(0,0,0,0.15);       /* deep shadow */
  
  transition: transform 0.25s ease, 
              box-shadow 0.25s ease;
}

/* 3D Hover Animation */
.social-3d:hover {
  transform: translateY(-8px);
  box-shadow:
      0 10px 15px rgba(0,0,0,0.25),
      0 15px 25px rgba(0,0,0,0.15);
}

/* Platform Colors */
.linkedin {
  background: #0A66C2;
  color: #fff;
}

.facebook {
  background: #1877F2;
  color: #fff;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
/* follow us */
/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--dark-secondary);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    max-height: 500px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu .nav-link {
    display: block;
    padding: 15px 20px;
  }

  .nav-menu .nav-link.active::after {
    display: none;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

  .section-title {
    font-size: 32px;
  }

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

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

  .portfolio-item.active {
    flex-direction: column;
  }

  .portfolio-image {
    width: 100%;
    height: 250px;
  }

  .portfolio-content {
    width: 100%;
  }

  .carousel-btn-prev,
  .carousel-btn-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
    height: 60px;
  }

  .nav-menu {
    top: 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 24px;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    padding: 25px 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .portfolio-content {
    padding: 25px;
  }

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

  .contact-form {
    padding: 25px;
  }

  .scroll-top-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}
