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

:root {
  --primary: #1a73e8;
  --secondary: #34a853;
  --accent: #ea4335;
  --dark: #202124;
  --light: #f8f9fa;
  --gray: #5f6368;
  --light-gray: #dadce0;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

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

/* ===== MODERN NAVBAR ===== */
/* Navbar Base */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 92px;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(26, 115, 232, 0.1);
}

.navbar.scrolled {
  padding: 1px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 1px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  max-width: 1400px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
  position: relative;
  overflow: hidden;
}

.desktop-logo {
  height: 84px;
  width: 92px;
  object-fit: contain;
  filter: none;
  /* remove blurriness */
}

@keyframes logo-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark);
  line-height: 1;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#staty {
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 115, 232, 0.1),
      rgba(79, 195, 247, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link i {
  font-size: 1.1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-link:hover i {
  color: #4fc3f7;
  transform: scale(1.1);
}


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

/* Call to Action Button */
.nav-cta {
  margin-left: 20px;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  color: white;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(26, 115, 232, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

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

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 115, 232, 0.4);
}

.cta-btn i {
  font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-bottom: 1px solid rgba(26, 115, 232, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-logo img {
  height: 40px;
}

.mobile-logo span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

.mobile-menu-content {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1.1rem;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}


/* Scroll Progress Bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(26, 115, 232, 0.1);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  width: 0%;
  transition: width 0.1s ease;
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
  /* backdrop-filter: blur(5px); */
  /* filter: blur(5px); */
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .nav-links {
    gap: 0;
  }

  .nav-link {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .navbar .container {
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    width: 280px;
  }

  .logo-name {
    font-size: 1.6rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100%;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
  }

  .logo-name {
    font-size: 1.4rem;
  }
}

/*Navbar ends here/*

/* /* Footer */
/* Footer */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Brand - Fixed logo positioning */
.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  /* height: 50px */
}

.footer-logo img {
  height: 60px;
  width: 120;
  margin-bottom: 10px;
  object-fit: contain;
}

.footer-logo h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: white;
  margin: 0;
  font-weight: 700;
}

.footer-tagline {
  font-size: 1.1rem;
  color: #4fc3f7;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: center;
}

/* Footer Contact */
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fc3f7;
  font-size: 1rem;
}

.contact-details h5 {
  font-size: 1rem;
  color: white;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}

.contact-details p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Social Media */
.social-media {
  margin-bottom: 30px;
}

.social-media h5 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 15px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.linkedin {
  background: #0077b5;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #405de6, #833ab4, #e1306c);
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.github {
  background: #181717;
}

.social-icon.dribbble {
  background: #ea4c89;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logo {
    align-items: center;
    text-align: center;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
  }
}

/*=====================================================================================*/
/* Enhanced Hero Section */
.hero {
  padding: 200px 0 80px;
  background: linear-gradient(135deg, #0f1b3d 0%, #1a3a6c 50%, #2a5aa0 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  color: white;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.highlight {
  color: #4fc3f7;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg,
      transparent,
      rgba(79, 195, 247, 0.4),
      transparent);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.8;
}

/* Animated Bubbles */
.bubbles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2),
    0 0 40px rgba(79, 195, 247, 0.3);
  animation: float 15s infinite ease-in-out;
  backdrop-filter: blur(2px);
}

/* Different bubble sizes and positions */
.bubble-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  background: radial-gradient(circle at 30% 30%,
      rgba(79, 195, 247, 0.3),
      transparent);
}

.bubble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 20s;
  background: radial-gradient(circle at 40% 40%,
      rgba(26, 115, 232, 0.2),
      transparent);
}

.bubble-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
  animation-duration: 12s;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.15),
      transparent);
}

.bubble-4 {
  width: 90px;
  height: 90px;
  bottom: 15%;
  right: 20%;
  animation-delay: 6s;
  background: radial-gradient(circle at 60% 60%,
      rgba(79, 195, 247, 0.25),
      transparent);
}

.bubble-5 {
  width: 70px;
  height: 70px;
  top: 40%;
  left: 25%;
  animation-delay: 8s;
  animation-duration: 18s;
}

.bubble-6 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 15%;
  animation-delay: 10s;
  background: radial-gradient(circle at 35% 35%,
      rgba(26, 115, 232, 0.15),
      transparent);
}

.bubble-7 {
  width: 50px;
  height: 50px;
  bottom: 40%;
  left: 8%;
  animation-delay: 12s;
  animation-duration: 14s;
}

.bubble-8 {
  width: 85px;
  height: 85px;
  top: 15%;
  right: 25%;
  animation-delay: 14s;
  animation-duration: 22s;
}

.bubble-9 {
  width: 65px;
  height: 65px;
  bottom: 20%;
  left: 30%;
  animation-delay: 3s;
  animation-duration: 16s;
}

.bubble-10 {
  width: 110px;
  height: 110px;
  top: 70%;
  right: 5%;
  animation-delay: 7s;
  animation-duration: 25s;
}

/* Bubble pulse animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2),
      0 0 40px rgba(79, 195, 247, 0.3);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25),
      0 0 50px rgba(79, 195, 247, 0.4);
  }

  50% {
    transform: translateY(-40px) rotate(0deg);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2),
      0 0 40px rgba(79, 195, 247, 0.3);
  }

  75% {
    transform: translateY(-20px) rotate(-5deg);
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25),
      0 0 50px rgba(79, 195, 247, 0.4);
  }
}

/* Floating Device */
.hero-image {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-device {
  position: relative;
  z-index: 3;
  animation: float-device 8s ease-in-out infinite;
}

.device-screen {
  width: 300px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.device-screen::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.screen-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px 20px;
  height: 100%;
}

.app-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,
      rgba(79, 195, 247, 0.2),
      rgba(26, 115, 232, 0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto;
  transition: all 0.3s;
  animation: pulse-icon 2s infinite alternate;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.app-icon:nth-child(3) {
  animation-delay: 1s;
}

.app-icon:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes float-device {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(1deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }

  75% {
    transform: translateY(-20px) rotate(-1deg);
  }
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  100% {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(79, 195, 247, 0.4);
  }
}

/* Particle Effects */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particle-float 10s infinite linear;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Glow Effect */
.glow-effect {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(79, 195, 247, 0.1) 0%,
      transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: glow-pulse 4s infinite alternate;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: #0d62d9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

/* Responsive Adjustments for Hero */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding: 120px 0 80px;
  }

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

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    margin: 0 auto 30px;
  }

  .hero-image {
    height: 400px;
    margin-top: 40px;
  }

  .device-screen {
    width: 250px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-image {
    height: 350px;
  }

  .device-screen {
    width: 200px;
    height: 400px;
  }

  .app-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/*================================================================================================*/
/* ===== ENHANCED ABOUT SECTION ===== */
/* About Section Base */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(26, 115, 232, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
}

.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(79, 195, 247, 0.03) 0%,
      transparent 70%);
  border-radius: 50%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
}

.about .section-title {
  font-size: 3rem;
  background: linear-gradient(90deg, var(--dark), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  border-radius: 2px;
}

.about .section-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.6;
}

/* Main About Content */
.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg,
      rgba(26, 115, 232, 0.1),
      rgba(79, 195, 247, 0.1));
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  color: var(--primary);
  font-weight: 600;
}

.tagline i {
  color: #4fc3f7;
  font-size: 1.2rem;
}

.about-text h3 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.mission-card,
.vision-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 115, 232, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), #4fc3f7);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(26, 115, 232, 0.1),
      rgba(79, 195, 247, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 24px;
}

.mission-card h4,
.vision-card h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.mission-card p,
.vision-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

/* About Image */
.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  height: 100%;
}

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

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 30px 30px;
  color: white;
  transform: translateY(100px);
  transition: transform 0.5s ease;
}

.image-container:hover .image-overlay {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Milestones Timeline */
.milestones {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

.milestones-title {
  text-align: center;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.milestones-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), #4fc3f7);
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 120px;
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content {
  width: calc(50% - 80px);
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  position: relative;
  border: 1px solid rgba(26, 115, 232, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
}

.timeline-content h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Achievement Stats */
.achievements {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

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

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 115, 232, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,
      rgba(26, 115, 232, 0.1),
      rgba(79, 195, 247, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 28px;
}

.stat-content {
  margin-bottom: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.stat-progress {
  height: 6px;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  border-radius: 3px;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Core Values */
.core-values {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.values-title {
  text-align: center;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.values-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
}

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

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 115, 232, 0.1);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      rgba(26, 115, 232, 0.1),
      rgba(79, 195, 247, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary);
  font-size: 32px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.value-card h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.value-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .timeline-item {
    flex-direction: row !important;
    justify-content: flex-start;
    padding-left: 60px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }

  .timeline-content {
    width: 100%;
    margin-left: 40px;
  }

  .timeline-content::before {
    left: -30px !important;
  }

  .about .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about .section-title {
    font-size: 2rem;
  }

  .about .section-subtitle {
    font-size: 1rem;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .achievement-stats {
    grid-template-columns: 1fr;
  }

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

/*==========================================================================================*/
/* ===== ENHANCED SERVICES SECTION ===== */
/* Services Section Base */
.services {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(79, 195, 247, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(26, 115, 232, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
}

.services .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.services .section-badge {
  background: linear-gradient(90deg, #4fc3f7, var(--primary));
}

.services .section-title {
  font-size: 3rem;
  background: linear-gradient(90deg, var(--dark), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.services .section-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.6;
}

/* Services Tabs */
.services-tabs {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: white;
  border: 2px solid rgba(26, 115, 232, 0.1);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.1);
}

.tab-btn.active {
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
}

.tab-btn i {
  font-size: 1.1rem;
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
}

.service-card {
  perspective: 1000px;
  height: 100%;
}

.service-card-inner {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 115, 232, 0.1);
}

.service-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.service-card-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(79, 195, 247, 0.05) 0%,
      transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-card-inner::after {
  opacity: 1;
}

.service-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 115, 232, 0.1),
      rgba(79, 195, 247, 0.1));
  border-radius: 20px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.service-card:hover .icon-bg {
  transform: rotate(135deg);
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
}

.service-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: var(--primary);
  z-index: 2;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

/* Service Features */
.service-features {
  list-style: none;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
}

.service-features i {
  color: #4fc3f7;
  font-size: 0.9rem;
}

/* Service CTA */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  transition: width 0.3s ease;
}

.service-cta:hover::after {
  width: 100%;
}

.service-cta:hover {
  gap: 15px;
}

.service-cta i {
  transition: transform 0.3s ease;
}

.service-cta:hover i {
  transform: translateX(5px);
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.tag {
  background: rgba(26, 115, 232, 0.08);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card:hover .tag {
  background: rgba(26, 115, 232, 0.15);
  transform: translateY(-2px);
}

/* Service Highlights */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.highlight-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 115, 232, 0.1);
}

.highlight-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg,
      rgba(26, 115, 232, 0.1),
      rgba(79, 195, 247, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
}

.highlight-content h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.highlight-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Card Hover Effects */
.service-card:hover .service-card-inner {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Card Reveal Animation */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}












/* ---------- SECTION ---------- */
.projects-section {
  padding: 20px 0 40px;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}

.section-title span {
  color: #1a73e8;
}

.section-subtitle {
  text-align: center;
  margin-top: 10px;
  color: #9ca3af;
}

/* ---------- SLIDER ---------- */
.slider-wrapper {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll 35s linear infinite;
  padding-bottom: 18px;
  padding-top: 10px;
}

.slider-track:hover {
  animation-play-state: paused;
}

/* ---------- CARD ---------- */
.project-card {
  position: relative;
  min-width: 200px;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0px 13px 0px rgba(0, 0, 0, 0.4);
}

@media (min-width: 640px) {
  .project-card {
    min-width: 250px;
    height: 320px;
  }
}

@media (min-width: 768px) {
  .project-card {
    min-width: 250px;
    height: 360px;
  }
}

@media (min-width: 1024px) {
  .project-card {
    min-width: 250px;
  }
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- OVERLAY ---------- */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.project-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #1a73e8;
  font-size: 1.1rem;
  margin-bottom: 10px;
  transform: translateY(16px);
  transition: 0.7s;
}

.overlay p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 16px;
  transform: translateY(24px);
  transition: 0.7s 0.1s;
}

.overlay button {
  padding: 8px 20px;
  border-radius: 999px;
  background: #1a73e8;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transform: translateY(32px);
  transition: 0.7s 0.2s;
}

.project-card:hover h3,
.project-card:hover p,
.project-card:hover button {
  transform: translateY(0);
}

/* ---------- ANIMATION ---------- */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .services .section-title {
    font-size: 2.5rem;
  }

  .tabs-header {
    gap: 8px;
  }

  .tab-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .services .section-title {
    font-size: 2rem;
  }

  .services .section-subtitle {
    font-size: 1rem;
  }

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

  .tabs-header {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  .tab-btn {
    flex-shrink: 0;
  }

  .service-card-inner {
    padding: 30px 25px;
  }

  .service-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-card-inner {
    padding: 25px 20px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon i {
    font-size: 28px;
  }
}

/*========================================================================================*/
/* ===== ENHANCED CONTACT SECTION ===== */

/* Contact Section Base */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%,
      rgba(79, 195, 247, 0.03) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(26, 115, 232, 0.03) 0%,
      transparent 50%);
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact .section-badge {
  background: linear-gradient(90deg, #4fc3f7, var(--primary));
}

.contact .section-title {
  font-size: 3rem;
  background: linear-gradient(90deg, var(--dark), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.contact .section-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.6;
}

/* Contact Content Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 80px;
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Intro Card */
.contact-intro {
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(26, 115, 232, 0.2);
}

.contact-intro .intro-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.contact-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.contact-intro p {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.response-time i {
  color: #4fc3f7;
}

.response-time strong {
  color: white;
  font-weight: 600;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 115, 232, 0.1);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.info-icon {
  margin-bottom: 20px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(26, 115, 232, 0.1),
      rgba(79, 195, 247, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  transition: all 0.3s ease;
}

.info-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.info-content h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.info-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.info-link:hover {
  gap: 12px;
}

.info-link i {
  font-size: 0.8rem;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #34a853;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #34a853;
  border-radius: 50%;
  position: relative;
}

.status-dot.online::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: rgba(52, 168, 83, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(26, 115, 232, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
}

.form-header {
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.form-header p {
  color: var(--gray);
  line-height: 1.6;
}

.contact-form {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(26, 115, 232, 0.1);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.char-counter {
  text-align: right;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 5px;
}

.char-count {
  font-weight: 600;
  color: var(--primary);
}

/* Contact Intro Card */
.contact-intro {
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(26, 115, 232, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-intro .intro-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.contact-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.contact-intro p {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.response-time i {
  color: #4fc3f7;
}

.response-time strong {
  color: white;
  font-weight: 600;
}

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

  .social-links {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 992px) {
  .contact .section-title {
    font-size: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .social-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }

  .contact .section-title {
    font-size: 2rem;
  }

  .contact .section-subtitle {
    font-size: 1rem;
  }

  .contact-form-container {
    padding: 30px 25px;
  }

  .contact-intro {
    padding: 30px 25px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .form-actions {
    flex-direction: column;
  }

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

  .map-overlay {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 25px 20px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .budget-options {
    flex-direction: column;
  }

  .budget-option {
    width: 100%;
  }
}

/*============================================================================================*/
/* ===== ENHANCED FOOTER SECTION ===== */
/* Footer Base */
.footer {
  background: linear-gradient(135deg, #0f1b3d 0%, #1a3a6c 100%);
  color: white;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%,
      rgba(79, 195, 247, 0.05) 0%,
      transparent 50%);
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

/* Footer Main Content */
.footer-main {
  margin-bottom: 60px;
}

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

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-logo h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.footer-tagline {
  font-size: 1.2rem;
  color: #4fc3f7;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Footer Links */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7, var(--primary));
  border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-services a:hover {
  color: #4fc3f7;
  transform: translateX(5px);
}

.footer-links i,
.footer-services i {
  font-size: 0.8rem;
  color: #4fc3f7;
}

/* Contact Info */
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fc3f7;
  font-size: 1rem;
}

.contact-details h5 {
  font-size: 1rem;
  color: white;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 3px;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.social-media h5 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 15px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icon:hover::before {
  transform: scale(1);
}

.social-icon i {
  position: relative;
  z-index: 2;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.linkedin {
  background: #0077b5;
}

.social-icon.instagram {
  background: linear-gradient(45deg,
      #405de6,
      #5851db,
      #833ab4,
      #c13584,
      #e1306c,
      #fd1d1d);
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.github {
  background: #181717;
}

.social-icon.dribbble {
  background: #ea4c89;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Copyright */
.copyright {
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-links-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: #4fc3f7;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

.back-to-top {
  text-align: center;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(79, 195, 247, 0.1);
  color: #4fc3f7;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(79, 195, 247, 0.2);
}

.back-to-top-btn:hover {
  background: rgba(79, 195, 247, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer {
    padding: 60px 0 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-links-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-logo h3 {
    font-size: 1.8rem;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/*============================================================================*/
/* ===== ENHANCED ANIMATED BREADCRUMB ===== */
.breadcrumb-wrapper {
  width: 100%;
  padding: 80px 0;
  margin-top: 85px;
  background: linear-gradient(135deg,
      rgba(15, 27, 61, 0.95) 0%,
      rgba(26, 58, 108, 0.9) 50%,
      rgba(42, 90, 160, 0.85) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(79, 195, 247, 0.2);
  box-shadow: 0 10px 30px rgba(15, 27, 61, 0.3);
}

/* Animated background gradients */
.breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle at 20% 80%,
      rgba(79, 195, 247, 0.15) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(26, 115, 232, 0.15) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%);
  animation: gradientPulse 20s infinite alternate;
  z-index: 1;
}

@keyframes gradientPulse {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: rotate(180deg) scale(1.1);
    opacity: 1;
  }
}

/* Floating orb animations */
.breadcrumb-orbits {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.1), transparent 70%);
  border: 2px solid rgba(79, 195, 247, 0.2);
  box-shadow: 0 0 30px rgba(79, 195, 247, 0.1);
}

.orbit-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation: orbitFloat 15s infinite ease-in-out;
}

.orbit-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation: orbitFloat 20s infinite ease-in-out reverse;
  animation-delay: 2s;
}

.orbit-3 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 20%;
  animation: orbitFloat 12s infinite ease-in-out;
  animation-delay: 4s;
}

@keyframes orbitFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.1);
  }

  25% {
    transform: translateY(-20px) rotate(90deg);
    box-shadow: 0 0 40px rgba(79, 195, 247, 0.2);
  }

  50% {
    transform: translateY(10px) rotate(180deg);
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.1);
  }

  75% {
    transform: translateY(-15px) rotate(270deg);
    box-shadow: 0 0 40px rgba(79, 195, 247, 0.2);
  }
}

/* Animated bubbles */
.breadcrumb-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(2px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1),
    0 0 30px rgba(79, 195, 247, 0.15);
  animation: bubbleFloat 25s infinite linear;
}

.b1 {
  width: 40px;
  height: 40px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.b2 {
  width: 25px;
  height: 25px;
  top: 40%;
  right: 10%;
  animation-delay: 3s;
}

.b3 {
  width: 35px;
  height: 35px;
  bottom: 20%;
  left: 15%;
  animation-delay: 6s;
}

.b4 {
  width: 30px;
  height: 30px;
  top: 70%;
  left: 8%;
  animation-delay: 9s;
}

.b5 {
  width: 45px;
  height: 45px;
  bottom: 40%;
  right: 5%;
  animation-delay: 12s;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(100px) translateX(0) scale(0.8);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-100px) translateX(50px) scale(1);
    opacity: 0;
  }
}

/* Breadcrumb Content */
.breadcrumb-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.breadcrumb a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.breadcrumb a:hover {
  color: white;
  background: rgba(79, 195, 247, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(79, 195, 247, 0.3),
    0 0 0 1px rgba(79, 195, 247, 0.2);
}

.breadcrumb a:hover::before {
  left: 100%;
}

.breadcrumb a i {
  font-size: 0.9rem;
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  font-weight: 300;
  animation: pulseSeparator 2s infinite;
}

@keyframes pulseSeparator {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

.breadcrumb .current {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg,
      rgba(79, 195, 247, 0.3),
      rgba(26, 115, 232, 0.3));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.breadcrumb .current i {
  color: #4fc3f7;
}

/* Page Title */
.breadcrumb-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin: 20px 0 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(79, 195, 247, 0.3);
  animation: titleFadeIn 1s ease-out;
  font-family: "Montserrat", sans-serif;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add this at the end of your breadcrumb CSS */
.breadcrumb-orbits,
.breadcrumb-bubbles {
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .breadcrumb-wrapper {
    padding: 60px 0;
    margin-top: 70px;
  }

  .breadcrumb-title {
    font-size: 2.5rem;
  }

  .orbit-1,
  .orbit-2,
  .orbit-3 {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .breadcrumb-wrapper {
    padding: 50px 0;
    margin-top: 65px;
  }

  .breadcrumb-title {
    font-size: 2rem;
  }

  .breadcrumb-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .breadcrumb {
    gap: 8px;
  }

  .breadcrumb a,
  .breadcrumb .current {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .breadcrumb .separator {
    font-size: 1.2rem;
  }

  .orbit,
  .bubble {
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .breadcrumb-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    flex-direction: column;
    gap: 5px;
  }

  .breadcrumb .separator {
    transform: rotate(90deg);
  }
}








.error-message {
  color: #e63946;
  font-size: 13px;
  margin-top: 6px;
}

.api-message {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}

.api-message.success {
  color: #2a9d8f;
}

.api-message.error {
  color: #e63946;
}


.btn-loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===============================
   PORTFOLIO STATS – CLEAN VERSION
================================ */

.portfolio-stats {
  padding: 90px 20px;
  /* background: linear-gradient(180deg, #fde1da, #ffeae4); */
  background: #fff;
}

.stats-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  border-radius: 22px;
  padding: 45px 35px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Card */
.stat-card {
  text-align: center;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.stat-icon {
  /* display: inline-block; */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.stat-card h3 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #4fc3f7;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablets */
@media (max-width: 1024px) {
  .stats-wrapper {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 35px 25px;
  }

  .stat-card h3 {
    font-size: 1.9rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .stat-card {
    padding: 15px 0;
  }
}