@import url("https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Oleo+Script:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Sora", "Poppins", sans-serif;
  background-color: #DDE6F5;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

.custom-navbar {
  background: white;
  padding: 0.8rem 1rem;
  box-shadow: 2px 2px 13px -1px rgba(0, 0, 0, 0.25);
}
.custom-navbar .logo {
  width: 100px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-navbar .nav-link {
  color: #012840;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s ease;
}
.custom-navbar .nav-link.show {
  color: white;
}
.custom-navbar .nav-link:hover {
  color: #667eea;
}
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #667eea;
  transition: width 0.3s ease;
}
.custom-navbar .nav-link:hover::after {
  width: 100%;
}
.custom-navbar .dropdown-menu {
  background: #012840;
  border: none;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  animation: slideIn 0.4s ease;
}
.custom-navbar .dropdown-menu .dropdown-item {
  color: #fff;
}
.custom-navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #667eea;
}

@keyframes slideIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.custom-btn {
  background: linear-gradient(135deg, #042461, #5AB2FF);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}
.custom-btn:hover {
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

/* Section Spacing */
section {
  padding: clamp(60px, 4vw, 120px) 0;
  background: white;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #012840;
  font-family: "Oleo Script", system-ui;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #012840;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Animated Background Canvas */
#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at center, #0a0f2c 0%, #050816 100%);
}

/* Hero Particles Canvas */
#heroParticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Custom Cursor */
#customCursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #667eea;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* Mouse Follow Effect */
#mouseFollower {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.8) 0%, rgba(99, 102, 241, 0.2) 70%, transparent 100%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out;
  transform: translate(-50%, -50%);
  opacity: 1;
  display: block;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  will-change: transform, background;
  transform: translateZ(0);
}

.navbar.scrolled {
  background: rgba(10, 15, 44, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 60px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
  color: #667eea;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.nav-btn-mobile-item {
  display: none;
}

.nav-btn-mobile {
  display: none;
  padding: 12px 25px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.nav-btn-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  display: block;
}

/* About Hero Section */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DDE6F5;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-particles::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-particles::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 20%;
  right: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.breadcrumb {
  font-size: 1rem;
  color: #a0a9c0;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #667eea;
  text-decoration: none;
}

.separator {
  margin: 0 1rem;
  opacity: 0.5;
}

.hero-title {
  font-size: 55px;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: "Oleo Script", system-ui;
}

.title-line {
  display: block;
  color: #012840;
}

.hero-subtitle {
  font-size: 18px;
  color: #012840;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #a0a9c0;
}

/* About Story Section */
.about-story {
  background-color: white;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text {
  order: 1;
}

.story-description {
  font-size: 1.1rem;
  color: #012840;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.highlight {
  text-align: center;
  padding: 1.5rem;
  background: #012840;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.highlight p {
  color: white;
  font-size: 0.9rem;
}

.story-image {
  order: 2;
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-container img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
  animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.floating-element.element-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

/* Mission & Vision Section */
.mission-vision {
  background-color: white;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mission-card,
.vision-card {
  background: #012840;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: #012840;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  font-family: "Oleo Script", system-ui;
}

.card-description {
  color: white;
  line-height: 1.7;
  font-size: 1.1rem;
  text-align: left;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #667eea;
}

.value-description {
  color: #a0a9c0;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background-color: white;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Oleo Script", system-ui;
  color: #012840;
}

.cta-description {
  font-size: 1.2rem;
  color: #012840;
  margin-bottom: 2rem;
  max-width: 778px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #042461, #5AB2FF);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #042461;
  border: 2px solid #042461;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #042461, #5AB2FF);
  color: white;
  transform: translateY(-2px);
}

/* Footer */
/* Footer */
.footer {
  background-color: white;
  padding: 80px 0 0;
  border-top: 1px solid rgba(102, 126, 234, 0.2);
  position: relative;
  overflow: hidden;
  background-image: url("./images/Bg-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  background-position: bottom center;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.footer-section {
  position: relative;
  padding: 0 10px;
}

.footer-logo img {
  height: 68px;
  margin-bottom: 8px;
  width: 145px;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-logo img a {
  font-family: "Oleo Script", system-ui;
}

.footer-description {
  font-family: "Poppins", sans-serif;
  color: #012840;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: #012840;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Social Media Platform Colors */
.social-link.facebook::before {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.linkedin::before {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-link.youtube::before {
  background: linear-gradient(135deg, #ff0000, #ff6b6b);
}

.social-link.twitter::before {
  background: linear-gradient(135deg, #1da1f2, #1976d2);
}

.social-link.instagram::before {
  background: linear-gradient(135deg, #e4405f, #f77737, #fccc63);
}

.social-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-link.facebook:hover {
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.social-link.linkedin:hover {
  box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4);
}

.social-link.youtube:hover {
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.social-link.twitter:hover {
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.social-link.instagram:hover {
  box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.social-link svg {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.social-link:hover svg {
  color: #ffffff;
}

.footer-title {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #012840;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #042461, #5AB2FF);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: "Poppins", sans-serif;
  color: #012840;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #6366f1;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #6366f1;
  padding-left: 15px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact p {
  font-family: "Poppins", sans-serif;
  color: #012840;
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(99, 102, 241, 0.15);
  background: #012840;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: white;
  margin: 0;
  opacity: 0.8;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer {
    padding: 80px 0 0;
  }
  .footer-section {
    text-align: center;
  }
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-links {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  /* ...existing navbar styles... */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }
  .footer {
    padding: 60px 0 0;
  }
  .footer-section {
    margin-bottom: 30px;
  }
  .footer-description {
    max-width: 300px;
    margin: 0 auto 30px auto;
  }
  .footer-section h3 {
    margin-bottom: 20px;
  }
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .social-links {
    justify-content: center;
    margin-bottom: 20px;
  }
  .footer-links a:hover {
    padding-left: 0;
    transform: translateX(0);
  }
  .footer-links a::before {
    display: none;
  }
  .footer-bottom {
    padding: 30px 20px;
    margin: 0 -20px;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 15, 44, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-actions {
    display: none;
  }
  .nav-btn-mobile-item {
    display: block;
    margin-top: 2rem;
  }
  .hamburger {
    display: flex;
  }
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-text {
    order: 2;
  }
  .story-image {
    order: 1;
  }
  .story-highlights {
    grid-template-columns: 1fr;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 2rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
    padding: 0 5px;
    text-align: left;
    margin-top: 30px;
  }
  .hero-subtitle {
    line-height: 1.5;
    text-align: left;
  }
  .floating-elements {
    display: none !important;
  }
  .container {
    padding: 0 1rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .mission-card,
  .vision-card {
    padding: 2rem;
  }
  .value-card {
    padding: 1.5rem;
  }
  .footer {
    padding: 50px 0 0;
  }
  .footer-content {
    padding: 0 15px;
    gap: 35px;
  }
  .footer-description {
    font-size: 0.95rem;
    max-width: 280px;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-align: left;
  }
  .social-links {
    gap: 15px;
  }
  .social-link {
    width: 42px;
    height: 42px;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
  .footer-links {
    text-align: left;
    list-style: disc;
  }
  .footer-contact p {
    font-size: 0.9rem;
    text-align: left;
  }
  .footer-bottom {
    padding: 25px 15px;
  }
  .footer-bottom p {
    font-size: 0.85rem;
  }
  .cards-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  .process-col {
    padding: 0px 10px !important;
  }
  .expertise-tags {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  .tag {
    width: 100% !important;
  }
}
/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-title {
  margin-bottom: 1rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Services Overview Section */
.services-overview {
  background: white;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-description {
  font-size: 1.1rem;
  color: #012840;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.overview-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #a0a9c0;
  line-height: 1.6;
}

.cards-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: #012840;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.feature-card .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem auto;
  background: linear-gradient(135deg, #042461, #5AB2FF);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  font-family: "Oleo Script", system-ui;
}

.feature-card p {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  text-align: left;
}

.process-section {
  padding: 30px 0;
  background: white;
}

.process-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Oleo Script", system-ui;
  color: #012840;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  padding: 20px;
  background: #012840;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #042461, #5AB2FF);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.5rem;
  font-family: "Oleo Script", system-ui;
}

.step-content p {
  margin: 0;
  color: white;
  font-size: 15px;
}

.process-col {
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.process-col:hover {
  background: 0 8px 25px rgba(99, 102, 241, 0.5);
  border-radius: 12px;
  transform: translateY(-5px);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #012840;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #042461, #5AB2FF);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: white;
  line-height: 1.6;
}

.tf-expertise-section::after {
  position: absolute;
  content: "";
  background-image: url("./images/Animated-bg-1.png");
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.tf-expertise-section {
  padding: 80px 0;
  background: #DDE6F5;
  position: relative;
  z-index: 1;
}
.tf-expertise-section .section-title {
  font-size: 55px;
  font-weight: 800;
  color: #012840;
}
.tf-expertise-section .expertise-heading {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #012840;
  font-family: "Oleo Script", system-ui;
}
.tf-expertise-section .expertise-tags {
  gap: 15px;
}
.tf-expertise-section .expertise-tags .tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  background: #012840;
  color: white;
  border: 1px solid #667eea;
  box-shadow: 0px 4px 21px 1px rgba(48, 123, 196, 0.1);
  transition: 0.3s ease-in-out;
  width: 30%;
}
.tf-expertise-section .expertise-tags .tag:hover {
  background: linear-gradient(135deg, #042461, #5AB2FF);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f8f9fa;
}

.industries {
  background: #f4f9ff;
}
.industries .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #012840;
}
.industries .section-subtitle {
  color: #012840;
  max-width: 600px;
  margin: 0 auto;
}
.industries .slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.industries .slider .slider-track {
  display: flex;
  width: 4000px;
  animation: scroll 40s linear infinite;
}
.industries .slider .slide {
  width: 200px;
  height: 140px;
  margin: 0 20px;
  background: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.industries .slider .slide i {
  font-size: 35px;
  color: #012840;
  margin-bottom: 18px;
}
.industries .slider .slide p {
  font-weight: 500;
  color: #042461;
  margin: 0;
  font-family: "Oleo Script", system-ui;
  letter-spacing: 1px;
}
.industries .slider .slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #5AB2FF;
  transition: width 0.5s ease-in-out;
}
.industries .slider .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 2px;
  background: #5AB2FF;
  transition: height 0.5s ease-in-out;
}
.industries .slider .slide:hover::after {
  width: 100%;
}
.industries .slider .slide:hover::before {
  height: 100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Dark overlay */
/* White color for icons */
/* Active tab background color */
/* Border radius for tabs */
/* Dark overlay */
/* White color for icons */
/* Active tab background color */
/* Border radius for tabs */
/* Border radius for the right-side content */
.technology-stack-section {
  position: relative;
  background-color: #DDE6F5;
  background-image: url("./images/staff-Banner.webp"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  /* Left Tabs */
  /* Right Side Tab Content */
  /* Responsive Adjustments */
}
.technology-stack-section h2 {
  font-size: 50px;
  font-weight: 800;
  color: white;
  text-align: center;
  font-family: "Oleo Script", system-ui;
}
.technology-stack-section p {
  font-size: 18px;
  color: white;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.technology-stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.technology-stack-section .container {
  position: relative;
  z-index: 2;
}
.technology-stack-section .nav-tabs {
  border: none;
  background: #012840;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  z-index: 3;
  border-radius: 10px;
  margin-bottom: 20px;
}
.technology-stack-section .nav-tabs .tabs-btn {
  background-color: red !important;
}
.technology-stack-section .nav-tabs .nav-link {
  color: white;
  border: none;
  padding: 15px;
  background-color: #042461;
  font-family: "Oleo Script", system-ui;
  border-radius: 10px; /* Adding rounded corners */
}
.technology-stack-section .nav-tabs .nav-link:hover {
  background-color: #5AB2FF;
}
.technology-stack-section .nav-tabs .nav-link.active {
  background-color: #3a6a91;
  border-radius: 10px;
}
.technology-stack-section .tab-content {
  color: white;
  padding: 20px;
  z-index: 3;
  margin-top: 20px;
  position: relative;
}
.technology-stack-section .tab-content h4 {
  color: #5AB2FF;
  font-family: "Oleo Script", system-ui;
  margin-bottom: 20px;
}
.technology-stack-section .tab-content .list-unstyled {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.technology-stack-section .tab-content .list-unstyled li {
  margin: 10px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.technology-stack-section .tab-content .list-unstyled li i {
  margin-right: 10px;
  color: #ffffff; /* Set icon color to white for better visibility */
  font-size: 1.3rem; /* Increase icon size for better visibility */
}
@media (max-width: 768px) {
  .technology-stack-section .col-md-3 {
    margin-bottom: 20px;
  }
  .technology-stack-section .tab-content {
    padding: 15px;
  }
}/*# sourceMappingURL=About.css.map */