/* ================= GLOBAL STYLES ================= */
/* Import required fonts with display swap for better performance */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0e3cc1;    /* Primary blue */
    --primary-dark: #092788; /* Darker shade of primary */
    --primary-light: #2a51d3; /* Lighter shade of primary */
    --secondary: #1593fc;  /* Secondary blue */
    --secondary-dark: #0c7ad3; /* Darker shade of secondary */
    --secondary-light: #40a9fd; /* Lighter shade of secondary */
    --accent: #ffcc00;     /* Accent yellow */
    --accent-dark: #e6b800; /* Darker shade of accent */
    
    /* Enhanced gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    --gradient-hero: linear-gradient(120deg, rgba(14, 60, 193, 0.9), rgba(21, 147, 252, 0.85));
    --gradient-cta: linear-gradient(90deg, var(--primary), var(--secondary));
    --gradient-stats: linear-gradient(to right, var(--primary), var(--secondary));
    --gradient-card-hover: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    --light: #f8f9fa;
    --dark: #0a1429;       /* Dark navy */
    --gray: #6c757d;
    --success: #5cb85c;
    
    /* RGB values for enhanced services section */
    --primary-dark-rgb: 9, 39, 136; /* RGB values of #092788 */
    --secondary-rgb: 21, 147, 252; /* RGB values of #1593fc */
    
    /* Add new transition variables for consistent animations */
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-small: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.07), 0 5px 10px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 15px 30px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Add subtle animations for smoother effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes shake {
  0%, 100% {transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-5px);}
  20%, 40%, 60%, 80% {transform: translateX(5px);}
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 50% 50% / 50% 60% 40% 50%;
  }
  100% {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth; /* For smoother scrolling */
}
  
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
  
h1 {
    font-size: 3.5rem;
}
  
h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    transition: var(--transition-medium);
}
  
h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-cta);
    transition: width 0.5s ease;
}

h2.section-highlight:after {
    width: 120px;
    box-shadow: 0 0 10px rgba(21, 147, 252, 0.5);
}
  
h3 {
    font-size: 1.75rem;
}
  
p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
  
a {
    text-decoration: none;
    transition: all 0.3s ease;
}
  
.container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--secondary), var(--primary));
    width: 0;
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-progress.visible {
    opacity: 1;
}
  
/* ================= HEADER STYLES ================= */
/* Topbar */
.topbar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    min-height: 40px; /* updated from height */
    transition: var(--transition-fast);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
  
.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
  
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}
  
.topbar-right span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}
  
.topbar-right span i {
    color: var(--secondary);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}
  
.social-icons a {
    color: white;
    transition: color 0.3s;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.social-icons a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.social-icons a:hover:before {
    transform: translateX(0);
}
  
.social-icons a:hover {
    color: var(--accent);
}
  
/* Contact Info in Topbar */
.topbar .contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
  
.topbar .contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}
  
.topbar .contact-info span i {
    color: var(--secondary);
    margin-right: 6px;
}
  
/* Navbar */
.navbar {
    background: white;
    position: fixed;
    top: 40px; /* Height of topbar */
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 70px;
}
  
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 20px;
}
  
.logo img {
    max-height: 50px;
    transition: var(--transition-fast);
}
  
/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
}
  
.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}
  
.nav-links li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-secondary);
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
  
.nav-links li a:hover {
    color: var(--secondary);
}
  
.nav-links li a:hover:after {
    width: 100%;
}

/* Mobile nav animation */
.nav-links.active li {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.5s forwards;
}
  
/* Dropdown Indicator */
.nav-links li a i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
}
  
/* Right Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
  
.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}
  
.phone-number i {
    color: var(--secondary);
    font-size: 1.2rem;
}
  
.menu-button {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    outline: none;
    box-shadow: 0 4px 10px rgba(14, 60, 193, 0.3);
    background-size: 200% auto;
    background-position: left center;
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 51%, var(--primary-light) 100%);
    position: relative;
}
  
.menu-button:hover {
    background-position: right center;
    box-shadow: 0 6px 15px rgba(21, 147, 252, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.menu-button:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    transition: var(--transition-medium);
}

.menu-button:hover:after {
    border-color: rgba(21, 147, 252, 0.3);
}

.menu-button i {
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-button:hover i {
    transform: rotate(90deg);
}
  
/* ================= HERO SECTION ================= */
.hero {
    height: 90vh;
    position: relative;
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 20, 41, 0.75), rgba(10, 20, 41, 0.75)), 
                url('../img/hero.jpg') no-repeat center center/cover;
    margin-top: 120px; /* 40px topbar + 80px navbar */
    background-attachment: fixed; /* Parallax effect */
    transition: background-position 0.5s ease;
}
  
.hero-content {
    max-width: 800px;
    margin: 0 auto 0 0;
    padding: 20px;
    animation: fadeInUp 1.2s ease;
}

.hero-content h3 {
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--secondary-light);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.hero-content h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 100%;
    background: var(--accent);
    transform: translateY(-50%);
    border-radius: 2px;
}
  
.hero-content h1 {
    margin: 20px 0;
    line-height: 1.2;
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
}

/* Typing cursor effect for hero headline */
.hero-content h1.typed-complete:after {
    content: '|';
    display: inline-block;
    animation: blink 1s infinite;
    opacity: 1;
    margin-left: 5px;
}
  
.hero-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 0 30px 0;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
  
/* Call to Action Buttons */
.cta-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
  
.cta {
    display: inline-block;
    background: var(--gradient-cta);
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0 4px 15px rgba(21, 147, 252, 0.3);
    background-size: 200% auto;
    background-position: left center;
    text-align: center;
    margin: 0px;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent 100%);
    background-size: 250% 100%;
    background-position: 100% 0;
    transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.cta:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(21, 147, 252, 0.4);
    color: white;
}

.cta:hover:before {
    background-position: 0 0;
}
  
.cta.secondary {
    background: transparent;
    border: 2px solid white;
    box-shadow: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
  
.cta.secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-image: linear-gradient(to right, var(--accent) 0%, var(--secondary) 100%);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
    opacity: 0;
}

.cta.secondary:hover:before {
    width: 100%;
    opacity: 1;
}
  
.cta.secondary:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(21, 147, 252, 0.3);
}
  
/* ================= ABOUT SECTION - NEXT LEVEL ENHANCED ================= */
/* Main Section Styling */
.about-enhanced {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

/* Animated background elements */
.animated-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite alternate;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  bottom: -50px;
  right: -50px;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

.bg-shape {
  position: absolute;
  opacity: 0.03;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 20%;
  left: 5%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 15s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: 10%;
  right: 5%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 12s ease-in-out infinite alternate;
}

/* Enhanced Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  padding: 5px 15px;
  background: rgba(21, 147, 252, 0.1);
  border-radius: 30px;
}

.section-heading h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 0;
}

.section-heading h2:after {
  display: none;
}

.heading-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 140px;
}

.heading-separator span {
  flex: 1;
  height: 3px;
  background: var(--gradient-cta);
  border-radius: 3px;
}

.heading-separator i {
  font-size: 18px;
  color: var(--accent);
  margin: 0 15px;
}

/* Main Content Layout */
.about-content-wrapper {
  display: flex;
  gap: 50px;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.about-media {
  flex: 1;
  position: relative;
}

.about-text {
  flex: 1;
}

/* Enhanced Gallery */
.about-gallery {
  position: relative;
  margin-bottom: 30px;
}

.gallery-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.gallery-main:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-main:hover .main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 20, 41, 0.1), rgba(10, 20, 41, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-main:hover .image-overlay {
  opacity: 1;
}

.play-video-btn {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 20px rgba(14, 60, 193, 0.3);
}

.play-video-btn:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: ripple 2s linear infinite;
}

.gallery-main:hover .play-video-btn {
  transform: scale(1);
}

.gallery-thumbs {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.thumb {
  flex: 1;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-small);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.thumb:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 41, 0.4);
  transition: all 0.3s ease;
}

.thumb.active {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.thumb.active:before {
  background: rgba(21, 147, 252, 0.2);
  border: 2px solid var(--secondary);
}

.thumb:hover:before {
  background: rgba(21, 147, 252, 0.3);
}

/* About Stats */
.about-stats {
  display: flex;
  gap: 20px;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow-small);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-secondary);
  z-index: -1;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-item:hover:before {
  width: 100%;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(21, 147, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 24px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: white;
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-content {
  transition: color 0.3s ease;
}

.stat-item:hover .stat-content {
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
  color: white;
}

.stat-text {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Text Content Styling */
.about-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-tagline i {
  font-size: 24px;
  color: var(--accent);
}

.about-tagline span {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--primary);
}

.highlight-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Accordion Styling */
.about-accordion {
  margin: 30px 0;
}

.accordion-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-small);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-item.active {
  box-shadow: var(--shadow-medium);
  border-color: rgba(21, 147, 252, 0.2);
}

.accordion-header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
  background: var(--gradient-secondary);
  color: white;
}

.accordion-header h4 {
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.accordion-header h4 i {
  font-size: 16px;
  color: var(--secondary);
  transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h4 i {
  color: white;
}

.toggle-icon {
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(21, 147, 252, 0.1);
}

.accordion-item.active .toggle-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 300px;
}

/* Values List */
.values-list {
  padding-left: 20px;
}

.values-list li {
  margin-bottom: 10px;
  position: relative;
}

.values-list li strong {
  color: var(--primary);
}

/* Certification Badges */
.certification-badges {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.badge {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: var(--shadow-small);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.badge img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.badge:hover img {
  transform: scale(1.1);
}

/* Tooltip for badges */
.badge:before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.badge:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--dark) transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.badge:hover:before,
.badge:hover:after {
  opacity: 1;
  visibility: visible;
  bottom: -30px;
}

/* CTA Group */
.about-cta-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.about-cta-group .cta {
  flex: 1;
  display: inline-block;
  padding: 14px 30px;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-cta-group .cta.primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(14, 60, 193, 0.3);
}

.about-cta-group .cta.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.about-cta-group .cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.about-cta-group .cta:hover {
  transform: translateY(-3px);
}

.about-cta-group .cta.primary:hover {
  box-shadow: 0 10px 20px rgba(14, 60, 193, 0.4);
}

.about-cta-group .cta.secondary:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.about-cta-group .cta:hover:before {
  background-position: 0 0;
}

.about-cta-group .cta i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.about-cta-group .cta:hover i {
  transform: translateX(5px);
}

/* Features Grid */
.features-wrapper {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-small);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-cta);
  transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.feature-card:hover:before {
  height: 100%;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--secondary);
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.1) rotate(10deg);
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  margin-bottom: 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.feature-content p {
  color: var(--gray);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content h4,
.feature-card:hover .feature-content p {
  color: white;
}

.feature-hover {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  margin-top: 15px;
}

.feature-card:hover .feature-hover {
  opacity: 1;
  transform: translateY(0);
}

.feature-link {
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-link:hover {
  border-color: white;
}

.feature-link i {
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* ================= ENHANCED SERVICES SECTION ================= */
.services-enhanced {
  padding: 120px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.services-enhanced:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(21, 147, 252, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Section heading styling */
.services-enhanced .section-heading {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.services-enhanced .section-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  padding: 5px 15px;
  background: rgba(21, 147, 252, 0.1);
  border-radius: 30px;
}

.services-enhanced .section-heading h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 0;
}

.services-enhanced .section-heading h2:after {
  display: none;
}

.services-enhanced .heading-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 140px;
  margin-bottom: 20px;
}

.services-enhanced .heading-separator span {
  flex: 1;
  height: 3px;
  background: var(--gradient-cta);
  border-radius: 3px;
}

.services-enhanced .heading-separator i {
  font-size: 18px;
  color: var(--accent);
  margin: 0 15px;
}

.services-enhanced .section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--gray);
}

/* Service grid layout */
.services-enhanced .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Service card styling */
.services-enhanced .service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: var(--transition-medium);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-enhanced .service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
  border-color: rgba(21, 147, 252, 0.1);
}

/* Service image container */
.services-enhanced .service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.services-enhanced .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-enhanced .service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Service number overlay */
.services-enhanced .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}

.services-enhanced .service-card:hover .service-overlay {
  background: linear-gradient(to bottom, rgba(9, 39, 136, 0.3), rgba(21, 147, 252, 0.7));
}

.services-enhanced .service-overlay span {
  font-size: 36px;
  font-weight: 800;
  color: white;
  opacity: 0.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Service content */
.services-enhanced .service-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services-enhanced .service-content h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 15px;
  transition: color 0.3s ease;
}

.services-enhanced .service-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-cta);
  transition: width 0.3s ease;
}

.services-enhanced .service-card:hover .service-content h3 {
  color: var(--primary);
}

.services-enhanced .service-card:hover .service-content h3:after {
  width: 70px;
}

.services-enhanced .service-content p {
  color: var(--gray);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.7;
}

/* Service link */
.services-enhanced .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.3s ease;
}

.services-enhanced .service-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-enhanced .service-link:hover {
  color: var(--primary);
}

.services-enhanced .service-link:hover:after {
  width: 100%;
}

.services-enhanced .service-link i {
  transition: transform 0.3s ease;
}

.services-enhanced .service-link:hover i {
  transform: translateX(5px);
}

/* CTA section */
.services-enhanced .services-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.services-enhanced .services-cta .cta {
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.services-enhanced .services-cta .cta.primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 5px 15px rgba(14, 60, 193, 0.3);
}

.services-enhanced .services-cta .cta.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.services-enhanced .services-cta .cta:hover {
  transform: translateY(-3px);
}

.services-enhanced .services-cta .cta.primary:hover {
  box-shadow: 0 8px 20px rgba(14, 60, 193, 0.4);
}

.services-enhanced .services-cta .cta.secondary:hover {
  background: var(--primary);
  color: white;
}

.services-enhanced .services-cta .cta i {
  transition: transform 0.3s ease;
}

.services-enhanced .services-cta .cta:hover i {
  transform: translateX(5px);
}

/* Responsive styles for services section */
@media (max-width: 1200px) {
  .services-enhanced .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .services-enhanced .section-heading h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .services-enhanced {
    padding: 100px 0;
  }
  
  .services-enhanced .service-image {
    height: 220px;
  }
  
  .services-enhanced .service-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .services-enhanced {
    padding: 80px 0;
  }
  
  .services-enhanced .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .services-enhanced .section-heading h2 {
    font-size: 2.2rem;
  }
  
  .services-enhanced .services-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .services-enhanced .services-cta .cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .services-enhanced .service-grid {
    grid-template-columns: 1fr;
  }
  
  .services-enhanced .section-heading h2 {
    font-size: 1.8rem;
  }
  
  .services-enhanced .service-image {
    height: 200px;
  }
  
  .services-enhanced .service-content h3 {
    font-size: 1.3rem;
  }
}

/* ================= STATS SECTION ================= */
.stats {
    padding: 80px 0;
    background: var(--gradient-stats);
    color: #092788;
    box-shadow: 0 10px 20px rgba(14, 60, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.05)" width="50" height="50" x="0" y="0"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}
  
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
  
.stat-item {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    transition: var(--transition-medium);
    border-radius: 10px;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-item:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-item:hover:after {
    width: 70px;
}
  
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
    position: relative;
}

/* Add shimmer animation to stat numbers */
.stat-number.shimmer {
    background: linear-gradient(90deg, 
      rgba(255, 255, 255, 0) 0%, 
      rgba(255, 255, 255, 0.5) 50%, 
      rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    background-position: -100% 0;
    animation: shimmer 1.5s infinite;
    background-clip: text;
    -webkit-background-clip: text;
}

.stat-number.highlight-pulse {
    animation: pulse 0.8s ease-in-out;
}
  
.stat-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
  
/* ================= BRANDS SECTION ================= */
.brands {
    padding: 80px 0;
    background-color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.brands:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-cta);
    opacity: 0.7;
}

.brands h2 {
    margin-bottom: 15px;
}

.brands p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray);
}

.brands-slider {
    position: relative;
    padding: 20px 0;
    margin: 0 -20px;
    overflow: hidden;
    white-space: nowrap;
}

/* Create a shadow overlay effect on the sides */
.brands-slider:after,
.brands-slider:before {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 1;
}

.brands-slider:before {
    left: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.brands-slider:after {
    right: 0;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.brands-track {
    display: flex;
    animation: slideTrack 30s linear infinite;
    will-change: transform;
}

@keyframes slideTrack {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
}

.brand-item {
    flex: 0 0 auto;
    padding: 20px 40px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    filter: grayscale(100%) opacity(0.7);
}

.brand-item.hover-scale {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.brand-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.brand-item img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

/* Pause animation on hover */
.brands-track:hover {
    animation-play-state: paused;
}

/* ================= CERTIFICATIONS SECTION ================= */
.certifications {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}
  
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
  
.cert-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-small);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}
  
.cert-item:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.1);
}
  
.cert-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.cert-icon i.float-icon {
    animation: float 2s ease-in-out infinite;
}

.cert-item:hover .cert-icon {
    color: white;
}

.cert-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: ripple 1s ease-out;
}
  
/* ================= TESTIMONIALS SECTION ================= */
.testimonials {
    padding: 100px 0;
    text-align: center;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(21, 147, 252, 0.03) 0%, transparent 70%),
                radial-gradient(circle at bottom left, rgba(14, 60, 193, 0.03) 0%, transparent 70%);
    pointer-events: none;
}
  
.testimonial-slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
  
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0 20px;
    visibility: hidden;
}
  
.testimonial-slide.active {
    opacity: 1;
    position: relative;
    visibility: visible;
}

.testimonial-slide.fade-in {
    animation: fadeInUp 0.5s forwards;
}

.testimonial-slide.fade-out {
    animation: fadeOut 0.3s forwards;
}
  
.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-small);
    position: relative;
    border-top: 4px solid transparent;
    border-image: var(--gradient-cta);
    border-image-slice: 1;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}
  
.testimonial-card:before {
    content: '\201C';
    font-size: 6rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: #f0f0f0;
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom right, rgba(21, 147, 252, 0.03) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}
  
.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
  
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid transparent;
    background: 
        linear-gradient(white, white) padding-box,
        var(--gradient-secondary) border-box;
    transition: var(--transition-fast);
}

.testimonial-card:hover .author-img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(21, 147, 252, 0.2);
}
  
.author-info h4 {
    margin-bottom: 5px;
}
  
.author-info p {
    color: var(--gray);
    margin: 0;
}
  
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
  
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.dot:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot:hover:before {
    opacity: 0.5;
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 0 2px var(--secondary);
}

.dot.active:before {
    opacity: 1;
}
  
/* ================= UPDATED CONTACT SECTION ================= */
.contact {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
  }
  
  .contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(21, 147, 252, 0.03) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
  }
  
  /* Contact Info Side */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-small);
    border-top: 4px solid transparent;
    border-image: var(--gradient-secondary);
    border-image-slice: 1;
    transition: var(--transition-medium);
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    transition: var(--transition-medium);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .contact-item:last-child {
    border-bottom: none;
  }
  
  .contact-item:hover {
    transform: translateX(5px);
  }
  
  .contact-icon {
    font-size: 1.3rem;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(21, 147, 252, 0.1) 0%, rgba(14, 60, 193, 0.1) 100%);
    color: var(--secondary);
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition-fast);
    box-shadow: 0 3px 10px rgba(21, 147, 252, 0.1);
  }
  
  .contact-item:hover .contact-icon {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 5px 15px rgba(21, 147, 252, 0.2);
  }
  
  .contact-icon.pulse-effect {
    animation: pulse 1s ease-in-out;
  }
  
  .contact-item h4 {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 1.2rem;
  }
  
  .contact-item p {
    margin-bottom: 5px;
    color: var(--gray);
  }
  
  /* Social Icons in Contact */
  .contact-social {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: var(--shadow-small);
    text-align: center;
    transition: var(--transition-medium);
  }
  
  .contact-social:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
  }
  
  .contact-social h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
  }
  
  .contact-social h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
  }
  
  .contact-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }
  
  .contact-social .social-icons a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .contact-social .social-icons a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 50%;
    z-index: -1;
  }
  
  .contact-social .social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-social .social-icons a:hover:before {
    transform: scale(1);
  }
  
  /* Form Side */
  .contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
  }
  
  .contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-secondary);
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .contact-form:hover:before {
    height: 100%;
  }
  
  .contact-form:hover, .contact-form.focus-state {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
  }
  
  .form-header {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .form-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .form-header p {
    color: var(--gray);
  }
  
  .form-group {
    margin-bottom: 20px;
    position: relative;
  }
  
  .form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: #f8f9fa;
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(21, 147, 252, 0.2);
    background-color: white;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .submit-btn {
    background: var(--gradient-cta);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-small);
    background-size: 200% auto;
    background-position: left center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    margin-top: 10px;
  }
  
  .submit-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent 100%);
    background-size: 250% 100%;
    background-position: 100% 0;
    transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
  }
  
  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background-position: right center;
  }
  
  .submit-btn:hover:before {
    background-position: 0 0;
  }
  
  .submit-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .submit-btn:hover i {
    transform: translateX(5px);
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    
    .contact-form {
      padding: 30px;
    }
    
    .contact-card {
      padding: 25px;
    }
  }
  
  @media (max-width: 576px) {
    .form-row {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .contact-item {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
    
    .contact-icon {
      margin-right: 0;
      margin-bottom: 15px;
    }
  }
/* ================= FOOTER ================= */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle fill="rgba(255,255,255,0.03)" cx="10" cy="10" r="2"/></svg>');
    background-size: 20px 20px;
    pointer-events: none;
}
  
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
  
.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}
  
.footer-col h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-cta);
    transition: width 0.3s ease;
}

.footer-col:hover h3:after {
    width: 80px;
}
  
.footer-links {
    list-style: none;
}
  
.footer-links li {
    margin-bottom: 15px;
}
  
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.footer-links a i {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
  
.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
    color: var(--secondary-light);
}
  
.footer-col p {
    color: #adb5bd;
    margin-bottom: 20px;
}
  
.footer-newsletter p {
    margin-bottom: 20px;
}
  
.newsletter-form {
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
  
.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}
  
.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
  
.newsletter-button {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    background-size: 200% auto;
    background-position: left center;
    min-height: 48px;
}
  
.newsletter-button:hover {
    background-position: right center;
}

.newsletter-button i {
    transition: transform 0.3s ease;
}

.newsletter-button:hover i {
    transform: translateX(3px);
}
  
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #adb5bd;
    position: relative;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-secondary);
}
.developer-credit {
    font-weight: 600;
    color: #38CDEC;
    transition: all 0.3s ease;
}
/* ================= BACK TO TOP BUTTON ================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(21, 147, 252, 0.3);
    background-size: 300% 100%;
    background-position: left center;
    background-image: linear-gradient(to right, var(--secondary-dark), var(--secondary), var(--primary), var(--primary-dark));
}
  
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
  
.back-to-top:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 60, 193, 0.3);
}

.back-to-top:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.back-to-top:hover:after {
    border-color: rgba(21, 147, 252, 0.3);
}

.back-to-top.pulse-animation {
    animation: pulse 1s infinite;
}

.back-to-top.hover-pulse:hover {
    animation: pulse 1s infinite;
}

/* Additional Animation Classes */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Add AOS Animation Library Styles */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Video Popup Styles */
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease forwards;
}

.video-popup-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 0;
  padding-bottom: 56.25%;
  animation: scaleIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.video-popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.video-popup-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Ripple Effect Styles */
.ripple-effect {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: ripple-animation 1s ease-out forwards;
  z-index: 0;
}

@keyframes ripple-animation {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}

/* Pulse animation for counter numbers */
.pulse-animation {
  animation: pulse 0.8s ease-in-out;
}

/* Enhanced input field animations */
.input-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.input-wrapper.error .form-control {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.input-wrapper.shake {
  animation: shake 0.5s ease-in-out;
}

/* Success message animation */
.form-success {
  text-align: center;
  animation: fadeInUp 0.5s ease forwards;
}

.success-animation {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  position: relative;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: scaleIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  box-shadow: 0 5px 15px rgba(21, 147, 252, 0.3);
}

.checkmark-circle i {
  color: white;
  font-size: 40px;
  animation: fadeInUp 0.5s 0.3s forwards;
  opacity: 0;
}

.reset-form-btn {
  background: var(--gradient-cta);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: var(--shadow-small);
}

.reset-form-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
  
/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 1200px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links li a {
        font-size: 0.9rem;
    }
}
  
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .about-img .experience {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        height: 70px;
    }
    
    .hero {
        margin-top: 110px; /* 40px topbar + 70px navbar */
        background-attachment: scroll; /* Disable parallax on mobile */
    }
    
    .menu-button {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        display: none;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li a {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .phone-number span {
        display: none;
    }
}
  
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .topbar {
        height: auto;
    }
    
    .navbar {
        top: 40px; /* Adjusted for possible multi-line topbar */
    }
    
    .topbar .contact-info {
        display: none; /* Hide contact info on small screens */
    }
    
    .social-icons {
        margin: 0 auto; /* Center social icons */
    }
    
    .hero {
        height: 80vh;
    }
    
    .cta-container {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .brand-item {
        padding: 15px 25px;
    }
    
    .brand-item img {
        max-width: 120px;
        max-height: 50px;
    }
    
    .brands-slider:before,
    .brands-slider:after {
        width: 60px;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
  
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h3 {
        font-size: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .topbar .container {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .brand-item {
        padding: 10px 20px;
    }
    
    .brand-item img {
        max-width: 100px;
        max-height: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}