/* CSS Variables - Design System */
:root {
  --primary-color: #FF6B2C;
  --secondary-color: #0B1F3A;
  --accent-color: #2D8CFF;
  --background-color: #F7F9FC;
  --text-color: #1C1C1C;
  --text-light: #666666;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

a.active {
  color: var(--primary-color);
  font-weight: 600;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: relative;
  top: 0;
  width: 100vw;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.navbar-brand h1 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 0;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-menu a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  /* Hidden on desktop */
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

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

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 44, 0.4);
}

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

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 31, 58, 0.3);
}

/* Services Header */
.services-header {
  background: linear-gradient(135deg, var(--secondary-color), #1a2e4a);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.services-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.services-header-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--background-color) 0%, var(--white) 50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

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

.service-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.1), rgba(45, 140, 255, 0.1));
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.2), rgba(45, 140, 255, 0.2));
}

.service-card h3 {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.service-card p {
  margin-bottom: 2rem;
  flex-grow: 1;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-features li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.8rem;
  font-size: 1rem;
}

.service-features li:hover {
  color: var(--secondary-color);
  padding-left: 0.5rem;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-duration {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(255, 107, 44, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-duration {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 44, 0.4);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #e55a2b);
  color: var(--white);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--white);
  font-weight: 700;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-secondary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--secondary-color), #0a1a2e);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

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

.footer-column ul li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-column ul li:hover {
  transform: translateX(5px);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-column ul li a:hover {
  color: var(--white);
  transform: translateX(3px);
}

/* Mobile-specific footer link improvements */
@media (max-width: 768px) {
  .footer-column ul li a {
    padding: 0.4rem 0;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .footer-column ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }
}

@media (max-width: 480px) {
  .footer-column ul li a {
    padding: 0.5rem 0.8rem;
    margin: 0.2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .footer-column ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
  }
}

.whatsapp-link {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-link:hover {
  color: #25D366;
  transform: translateX(5px);
}

.whatsapp-link::before {
  content: '💬';
  font-size: 1.1rem;
}

/* Mobile-specific address text optimization */
@media (max-width: 768px) {
  .footer-column:nth-child(3) ul li:last-child {
    font-size: 0.85rem;
    line-height: 1.3;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .footer-column:nth-child(3) ul li:last-child {
    font-size: 0.8rem;
    line-height: 1.2;
    padding: 0.4rem;
    margin-top: 0.5rem;
  }

  .footer-column:nth-child(3) ul li:not(:last-child) {
    padding: 0.3rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    margin: 0.2rem 0;
  }
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: var(--white);
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Services CTA Section */
.services-cta {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--background-color), var(--white));
}

.services-cta-content h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.services-cta-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.services-cta-content .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* Quick Overview Section */
.quick-overview {
  padding: 6rem 0;
  background: var(--background-color);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.overview-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-hover);
}

.overview-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.overview-image {
  margin-bottom: 1.5rem;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

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

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

.overview-card:hover .overview-image {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.overview-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.overview-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Success Metrics Section */
.success-metrics {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0B1F3A, #1a2e4a) !important;
  color: var(--white);
  position: relative;
}

section.success-metrics {
  background: linear-gradient(135deg, #0B1F3A, #1a2e4a) !important;
}

.success-metrics h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--white);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.success-metrics h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.metric-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 0 20px rgba(255, 107, 44, 0.5);
  position: relative;
}

.metric-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.2), transparent);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.metric-card h3 {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

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

  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

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

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

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

  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    width: 100vw;
    left: 0;
    /* overflow:hidden and backdrop-filter removed on mobile — they create a
       containing block that traps position:fixed children (the sidebar menu) */
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar .container {
    padding: 0 1rem;
  }

  .navbar-brand h1 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -105%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 6rem 1.5rem 2rem;
    gap: 0.8rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
    z-index: 99999;
    overflow-y: auto;
    display: flex;
    visibility: hidden;
  }

  .navbar-menu.active {
    right: 0;
    visibility: visible;
  }

  .navbar-menu.active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 58, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: -1;
  }

  .navbar-menu a {
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--secondary-color);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    text-align: left;
    font-weight: 500;
    display: block;
    width: 100%;
  }

  .navbar-menu a:hover {
    background: rgba(255, 107, 44, 0.05);
    color: var(--primary-color);
    padding-left: 1.5rem;
  }

  .navbar-menu a.active {
    background: rgba(255, 107, 44, 0.08);
    color: var(--primary-color);
    border-color: rgba(255, 107, 44, 0.1);
    font-weight: 600;
  }

  .navbar-menu .btn {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: flex !important;
    z-index: 100000;
    padding: 0.6rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    flex-direction: column;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--secondary-color);
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4.5px, 5.5px);
    background: var(--primary-color);
  }

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

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4.5px, -5.5px);
    background: var(--primary-color);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .success-metrics {
    padding: 6rem 0;
  }

  .success-metrics h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .metric-card {
    padding: 2rem 1.5rem;
  }

  .metric-number {
    font-size: 2.8rem;
  }

  .metric-card h3 {
    font-size: 1rem;
  }

  .services-header {
    padding: 4rem 0;
  }

  .services-header-content h1 {
    font-size: 2.2rem;
  }

  .services-header-content p {
    font-size: 1.1rem;
  }

  .services-section {
    padding: 4rem 0;
  }

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

  .service-card {
    padding: 2rem;
  }

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

  .service-card h3 {
    font-size: 1.3rem;
  }

  .services-cta {
    padding: 4rem 0;
  }

  .services-cta-content h2 {
    font-size: 2rem;
  }

  .services-cta-content p {
    font-size: 1rem;
  }

  .cta-section {
    padding: 6rem 0;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
  }

  .footer-column:nth-child(3),
  .footer-column:nth-child(4) {
    grid-column: span 2;
  }

  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  .footer-column ul {
    text-align: left;
  }

  .footer-column ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .footer-column:nth-child(3) ul li,
  .footer-column:nth-child(4) ul li {
    text-align: center;
  }

  .footer-column:nth-child(4) {
    text-align: center;
  }

  .map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }

  .map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
  }

  .map-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  .map-link::after {
    content: '📍 View on Google Maps';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(11, 31, 58, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
  }

  .map-link:hover::after {
    opacity: 1;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.9rem;
  }

  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 0.3rem;
  }

  .quick-overview {
    padding: 4rem 0;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .overview-card {
    padding: 1.5rem;
  }

  .overview-image {
    height: 150px;
  }

  /* Testimonials Mobile Responsive */
  .testimonials {
    padding: 4rem 0;
  }

  .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .testimonial-slider {
    margin-top: 2rem;
    padding: 0;
  }

  .testimonial-slider .swiper-container {
    padding: 0 1rem;
    overflow: hidden;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    margin: 0;
    border-radius: 0.8rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--text-light);
  }

  .testimonial-card cite {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-style: normal;
  }

  .swiper-pagination {
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
    margin-top: 2rem;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
  }
}

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

  .navbar {
    padding: 0.6rem 0;
    background: rgba(255, 255, 255, 0.98);
    width: 100vw;
    left: 0;
    overflow: hidden;
  }

  .navbar .container {
    padding: 0 0.75rem;
  }

  .navbar-brand h1 {
    font-size: 1.1rem;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 280px;
    height: 100vh;
    padding: 5rem 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    visibility: hidden;
  }

  .navbar-menu.active {
    right: 0;
    visibility: visible;
  }

  .navbar-menu a {
    font-size: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .navbar-menu a:hover {
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 44, 0.3);
  }

  .navbar-menu .btn {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary-color), #1a2e4a);
  }

  .mobile-menu-toggle {
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 2px 0;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
    background: var(--primary-color);
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
    background: var(--primary-color);
  }

  /* Hero Section Mobile */
  .hero {
    padding: 6rem 0 4rem;
    margin-top: 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .hero-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .services-header-content h1 {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

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

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-features li {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }

  .service-duration {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .success-metrics {
    padding: 4rem 0;
  }

  .success-metrics h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .metric-card {
    padding: 1.8rem 1.2rem;
  }

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

  .metric-card h3 {
    font-size: 0.95rem;
  }

  .services-cta-content h2 {
    font-size: 1.8rem;
  }

  .services-cta-content p {
    font-size: 0.95rem;
  }

  .overview-card {
    padding: 1.2rem;
  }

  .overview-image {
    height: 120px;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 1.5rem;
  }

  .footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .footer-column ul {
    text-align: center;
  }

  .footer-column ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .footer-column ul li a {
    padding: 0.3rem 0;
    display: inline-block;
  }

  .map-container {
    margin-top: 0.8rem;
  }

  .map-container iframe {
    height: 120px;
    border-radius: 6px;
  }

  .footer-bottom {
    padding-top: 1.2rem;
    font-size: 0.85rem;
  }

  .social-links {
    justify-content: center;
    margin-top: 0.8rem;
    flex-wrap: wrap;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    margin: 0.2rem;
  }

  .whatsapp-link {
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background: rgba(37, 211, 102, 0.1);
    transition: all 0.3s ease;
  }

  .whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
  }

  /* Testimonials Mobile Responsive for 480px */
  .testimonials {
    padding: 3rem 0;
  }

  .testimonials h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-slider {
    margin-top: 1.5rem;
    padding: 0;
  }

  .testimonial-slider .swiper-container {
    padding: 0 0.75rem;
    overflow: hidden;
  }

  .testimonial-card {
    padding: 1.8rem 1.2rem;
    margin: 0;
    border-radius: 0.6rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  .testimonial-card cite {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: normal;
  }

  .swiper-pagination {
    bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0 1rem;
    position: relative;
    margin-top: 1.5rem;
  }

  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.3);
  }
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 44, 0.3);
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 44, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Dark background button variants */
.btn-secondary-dark {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-dark:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 31, 58, 0.3);
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--secondary-color), #1a2e4a);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-dots)"/></svg>');
  opacity: 0.3;
}

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: 0.1;
  animation: float-shape 6s ease-in-out infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float-shape {

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

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.services-overview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.08), rgba(255, 107, 44, 0.04));
}

.service-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.08), rgba(45, 140, 255, 0.04));
}

.service-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.04));
}

.service-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.04));
}

.service-card:nth-child(5) {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
}

.service-card:nth-child(6) {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.08), rgba(251, 146, 60, 0.04));
}

.service-icon {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* IT Training Programs */
.it-training {
  background: linear-gradient(135deg, var(--background-color), rgba(255, 255, 255, 0.8));
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.program-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-hover);
}

/* IT Training Program Cards */
.it-training .program-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.05), rgba(255, 107, 44, 0.02));
}

.it-training .program-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.05), rgba(45, 140, 255, 0.02));
}

.it-training .program-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.05), rgba(11, 31, 58, 0.02));
}

.it-training .program-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.02));
}

.it-training .program-card:nth-child(5) {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(168, 85, 247, 0.02));
}

.it-training .program-card:nth-child(6) {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(236, 72, 153, 0.02));
}

/* Non-IT Program Cards */
.non-it-programs .program-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.02));
}

.non-it-programs .program-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(168, 85, 247, 0.02));
}

.non-it-programs .program-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.05), rgba(251, 146, 60, 0.02));
}

.non-it-programs .program-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
}

.non-it-programs .program-card:nth-child(5) {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(6, 182, 212, 0.02));
}

.non-it-programs .program-card:nth-child(6) {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(236, 72, 153, 0.02));
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.badge {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.program-modules ul {
  margin: 1rem 0;
}

.program-modules li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.program-modules li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.program-duration {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-weight: 500;
  color: var(--secondary-color);
}

/* Non-IT Programs */
.non-it-programs {
  background: var(--white);
}

.non-it-programs .programs-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.program-image {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.program-content {
  text-align: center;
}

/* Placement Support System */
.placement-support {
  background: linear-gradient(135deg, var(--background-color), rgba(255, 255, 255, 0.8));
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: translateY(-50%);
}

.timeline-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  width: 200px;
  position: relative;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-hover);
}

.timeline-icon {
  margin-bottom: 1rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 1rem;
  border-radius: 50%;
  color: var(--white);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

/* Interview Support System */
.interview-support {
  background: var(--white);
}

.support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.06), rgba(255, 107, 44, 0.03));
}

.feature-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.06), rgba(45, 140, 255, 0.03));
}

.feature-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.06), rgba(11, 31, 58, 0.03));
}

.feature-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.03));
}

.feature-card:nth-child(5) {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.06), rgba(168, 85, 247, 0.03));
}

/* Testimonials */
.corporate-hiring {
  background: linear-gradient(135deg, var(--secondary-color), #1a2e4a);
  color: var(--white);
}

.corporate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.corporate-text h2 {
  color: var(--white);
  text-align: left;
  margin-bottom: 1.5rem;
}

.corporate-text p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.corporate-text ul {
  margin-bottom: 2rem;
}

.corporate-text li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.corporate-text li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.corporate-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Why Choose Spark IT Services */
.why-choose {
  background: var(--white);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.why-choose-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-choose-text ul {
  list-style: none;
  padding: 0;
}

.why-choose-text li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.why-choose-text li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.why-choose-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px var(--shadow);
}

/* Success Metrics */
.success-metrics {
  background: linear-gradient(135deg, var(--background-color), rgba(255, 255, 255, 0.8));
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.metric-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.metric-card h3 {
  color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonial-slider {
  margin-top: 3rem;
  padding: 0 1rem;
}

/* Swiper Container Styles */
.testimonial-slider .swiper-container {
  padding: 0 1rem;
  overflow: hidden;
  width: 100%;
}

.testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  width: 100%;
}

.testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
}

/* Base Swiper Pagination */
.swiper-pagination {
  position: relative;
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.swiper-pagination-bullet:hover {
  opacity: 1;
  transform: scale(1.1);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  margin: 0 auto;
  height: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-hover);
}

.testimonial-card blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.testimonial-card cite {
  font-weight: 500;
  color: var(--secondary-color);
}

/* Companies Carousel */
.companies-carousel {
  background: linear-gradient(135deg, var(--background-color), rgba(255, 255, 255, 0.8));
  width: 100%;
  padding: 4rem 0;
}

.companies-swiper .swiper-container {
  padding: 0 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.companies-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.companies-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.company-logo {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
}

.company-logo img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.company-logo:hover {
  filter: grayscale(0%);
}

.company-logo:hover img {
  transform: scale(1.1);
}

/* Companies Carousel Pagination */
.companies-carousel .swiper-pagination {
  position: relative;
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.companies-carousel .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.companies-carousel .swiper-pagination-bullet:hover {
  opacity: 1;
  transform: scale(1.1);
}

.companies-carousel .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #FF8F4C);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-bottom: 2rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Map Container */
.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-link {
  display: block;
  text-decoration: none;
}

.map-container iframe {
  border: none;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .corporate-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .corporate-image {
    order: -1;
  }

  .services-grid,
  .programs-grid,
  .support-features,
  .metrics-grid,
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

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

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

  .services-grid,
  .programs-grid,
  .support-features,
  .metrics-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0;
  }

  section {
    padding: 4rem 0;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .timeline-item {
    width: 100%;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Form submit buttons */
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 44, 0.3);
}

/* Close modal button hover */
.close-modal:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Mobile Companies Carousel */
@media (max-width: 768px) {
  .companies-carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 3rem 0;
    overflow-x: hidden;
  }

  .companies-swiper .swiper-container {
    padding: 0 0.75rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .companies-swiper .swiper-wrapper {
    width: 100%;
  }

  .companies-swiper .swiper-slide {
    width: 100%;
    justify-content: center;
  }

  .company-logo {
    padding: 1.5rem;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .company-logo img {
    max-width: 100px;
    max-height: 50px;
  }

  .companies-carousel .swiper-pagination {
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .companies-carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 2rem 0;
    overflow-x: hidden;
  }

  .companies-swiper .swiper-container {
    padding: 0 0.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .companies-swiper .swiper-wrapper {
    width: 100%;
  }

  .companies-swiper .swiper-slide {
    width: 100%;
    justify-content: center;
  }

  .company-logo {
    padding: 1rem;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .company-logo img {
    max-width: 80px;
    max-height: 40px;
  }

  .companies-carousel .swiper-pagination {
    margin-top: 1rem;
    padding: 0 0.75rem;
  }
}