:root {
  --primary-color: #4361ee;
  --secondary-color: #3a0ca3;
  --accent-color: #4895ef;
  --dark-color: #14213d;
  --light-color: #f8f9fa;
  --text-color: #2b2d42;
  --text-light: #6c757d;
  --gradient-primary: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  --gradient-accent: linear-gradient(135deg, #4895ef 0%, #4cc9f0 100%);
}

/* Add this at the top of your CSS file */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 90%;
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}




body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-color);
  line-height: 1.7;

  overflow-x: hidden;
  background-color: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  /* padding: 20px 0; */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.navbar-brand span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  margin: 0 12px;
  position: relative;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  bottom: -5px;
  left: 0;
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.btn {
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 28px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
  background: var(--gradient-primary);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
  border-color: transparent;
}

/* .hero-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background-color: #f8f9fa;
}

.hero-section:before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(67, 97, 238, 0.08) 0%,
    rgba(67, 97, 238, 0) 70%
  );
  z-index: 1;
}

.hero-section:after {
  content: "";
  position: absolute;
  bottom: -400px;
  left: -400px;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(72, 149, 239, 0.08) 0%,
    rgba(72, 149, 239, 0) 70%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 15px solid white;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
} */
 

/* Hero Section with Clear Spline Background */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 180px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white; /* Set default text color to white */
}

/* Update your existing spline-background styles */
/* .spline-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
} */

/* Spline Background Styling */


/* Spline Background Styling */
.spline-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.spline-background iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto; /* Ensures mouse interactions work */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Text and element styling */
.hero-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-title span {
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 35px;
}

/* Button styling */
.btn-primary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.25);
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}

/* Dark overlay for better readability */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-btns .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto !important;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 5px;
  background: var(--gradient-primary);
  bottom: -15px;
  left: 0;
  border-radius: 5px;
}

.section-title.center:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 700px;
  font-size: 1.1rem;
}

.about-section,
.services-section,
.tech-stack-section,
.industries-section,
.team-section,
.contact-section {
  padding: 100px 0;
  position: relative;
}

.mission-section {
  background: var(--gradient-primary);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.mission-section:before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

.mission-quote {
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.mission-quote:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -30px;
  font-size: 5rem;
  opacity: 0.3;
  line-height: 1;
}

.stats-section {
  background-color: white;
  padding: 80px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
}

.service-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  background: white;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-stack-item {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.tech-stack-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(67, 97, 238, 0.1);
}

.tech-stack-icon {
  font-size: 1.8rem;
  margin-right: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.industry-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  background: white;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: white;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid rgba(67, 97, 238, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-img {
  border-color: rgba(67, 97, 238, 0.3);
  transform: scale(1.05);
}

.team-name {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.team-role {
  font-weight: 600;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-icon {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 15px;
}

.form-control {
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.15);
}

footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gradient-primary);
}

.footer-logo {
  font-weight: 800;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links h5 {
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-size: 1.2rem;
}

.footer-links h5:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  margin-right: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 50px;
  color: #adb5bd;
}

/* Floating elements animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-2 {
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-3 {
  animation: float 7s ease-in-out infinite;
  animation-delay: 2s;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 100px 0 80px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-image {
    margin-top: 50px;
    transform: none !important;
  }

  .hero-image:hover {
    transform: none !important;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-section,
  .services-section,
  .tech-stack-section,
  .industries-section,
  .team-section,
  .contact-section {
    padding: 80px 0;
  }

  .mission-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

.projects-section {
  /* padding: 100px 0; */
  position: relative;
}

.project-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.project-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.project-card .card-body {
  padding: 25px;
}

.project-card .card-footer {
  padding: 0 25px 25px;
}

.badge {
  padding: 6px 10px;
  font-weight: 500;
  border-radius: 8px;
  font-size: 0.8rem;
}

 /* Notification Popup */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(400px);
    transition: transform 0.4s ease;
}

.notification-popup.show {
    transform: translateX(0);
}

.notification-success {
    background-color: white;
    border-left: 5px solid var(--success-color);
}

.notification-error {
    background-color: white;
    border-left: 5px solid var(--danger-color);
}

.notification-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.notification-body {
    padding: 15px 20px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.success-icon {
    background-color: rgba(76, 201, 240, 0.2);
    color: var(--success-color);
}

.error-icon {
    background-color: rgba(247, 37, 133, 0.2);
    color: var(--danger-color);
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0;
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #6c757d;
    margin-left: auto;
    cursor: pointer;
}
