:root {
    --primary: #0b3c5d;
    --primary-light: rgba(11, 60, 93, 0.1);
    --primary-dark: #082b42;
    --accent: #e8aa33;
    --text-dark: #333;
    --text-light: #6c757d;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f9f9f9;
    overflow-x: hidden;
  }
  
  /* Common styles */
  .section-header {margin-bottom: 60px; text-align: center;}
  .section-subtitle {color: var(--primary); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; display: block;}
  .section-title {color: var(--text-dark); font-size: 36px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 20px;}
  .section-title:after {content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--accent);}
  
  /* Buttons */
  .btn-primary, .contact-btn {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(232, 170, 51, 0.3);
  }
  .btn-primary:hover, .contact-btn:hover {
   
    transform: translateY(-2px);

  }
  
  .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
  }
  .btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
  }
  .certificates-showcase {
    position: relative;
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .certificates-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .certificates-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
  }
  
  .certificates-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Reduced height for the image container */
    max-height: 300px;
  }
  
  .certificates-image img {
    width: 100%;
    /* Control the height of the image */
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .certificates-showcase:hover .certificates-image img {
    transform: scale(1.05);
  }
  
  .certificates-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0) 100%);
    color: white;
    padding: 30px 20px;
    transition: all 0.4s ease;
  }
  
  .certificates-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .certificates-content h3 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.5rem;
  }
  
  .certificates-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    opacity: 0.9;
  }
  
  .certificates-content .btn {
    padding: 10px 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .certificates-content .btn:hover {
    transform: translateY(-2px);
  }
  
  .mobile-visible-button {
    display: none;
  }
  
  .tap-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .certificates-image img {
      height: 250px; /* Smaller height on medium screens */
    }
  
    .certificates-content h3 {
      font-size: 1.3rem;
    }
    
    .certificates-content p {
      font-size: 0.9rem;
    }
    
    .mobile-visible-button {
      display: inline-block;
    }
    
    .tap-indicator {
      display: flex;
    }
  }
  
  @media (max-width: 576px) {
    .certificates-image img {
      height: 200px; /* Even smaller height on small screens */
    }
  
    .certificates-overlay {
      padding: 20px 15px;
    }
    
    .certificates-content h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }
    
    .certificates-content p {
      font-size: 0.85rem;
      margin-bottom: 15px;
    }
  }
   /* Custom Hamburger Menu Styles */
.custom-toggler {
  border: none;
  padding: 10px;
  background-color: transparent;
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.custom-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Animation for hamburger when opened */
.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu improved styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: white;
    padding: 15px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .nav-item {
    margin-bottom: 8px;
    transform: translateY(-10px);
    opacity: 0;
    animation: fadeInDown 0.3s forwards;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: 10px;
    transition: var(--transition);
  }

  .nav-link:hover, .nav-link.active {
    background-color: rgba(11, 60, 93, 0.1);
    color: var(--primary);
  }

  .contact-btn {
    margin-top: 15px;
  }

  /* Animation for menu items */
  @keyframes fadeInDown {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  

  /* Animation delay for each menu item */
  .nav-item:nth-child(1) { animation-delay: 0.1s; }
  .nav-item:nth-child(2) { animation-delay: 0.15s; }
  .nav-item:nth-child(3) { animation-delay: 0.2s; }
  .nav-item:nth-child(4) { animation-delay: 0.25s; }
  .nav-item:nth-child(5) { animation-delay: 0.3s; }
  .nav-item:nth-child(6) { animation-delay: 0.35s; }
  .nav-item:nth-child(7) { animation-delay: 0.4s; }
  .nav-item:nth-child(8) { animation-delay: 0.45s; }
  .nav-item:nth-child(9) { animation-delay: 0.5s; }
  .nav-item:nth-child(10) { animation-delay: 0.55s; }
}
  
  /* Navbar */
  /* Navbar styles from contact page */
/* CSS */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  height: 100 px; /* Initial larger height */
  padding: 10px 0;
}

.navbar-brand img {
  height: 80px; /* Initial larger logo */
  transition: all 0.3s ease;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding-top: 15px; /* Adjust padding for taller navbar */
  padding-bottom: 15px;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover:after, .nav-link.active:after {
  width: 70%;
}

.nav-link:hover {
  color: var(--primary);
}

.contact-btn {
  background-color: var(--primary);
  color: white !important;
  border-radius: 30px;
  padding: 10px 20px !important;
  box-shadow: 0 4px 10px rgba(11, 60, 93, 0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover, .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(232, 170, 51, 0.4);
}

/* Scroll effect */
.navbar.scrolled {
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  height: 70px; /* Smaller height when scrolled */
  padding: 5px 0;
}

.navbar.scrolled .navbar-brand img {
  height: 60px; /* Smaller logo when scrolled */
}

.navbar.scrolled .nav-link {
  padding-top: 10px; /* Adjust padding for shorter navbar */
  padding-bottom: 10px;
}

/* Mobile navbar styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100px; /* Match initial navbar height */
    left: 0;
    right: 0;
    z-index: 1000;
    margin-right: 10px;
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled .navbar-collapse {
    top: 70px; /* Match scrolled navbar height */
  }
  
  .navbar-nav {
    margin-top: 10px;
  }
  
  .nav-item {
    margin-bottom: 10px;
  }
  
  .nav-link {
    padding: 10px 15px;
    display: block;
    border-radius: 8px;
  }
  
  .nav-link:hover, .nav-link.active {
    background-color: rgba(11, 60, 93, 0.08);
  }
  
  .nav-link:after {
    display: none;
  }
  
  .contact-btn {
    display: inline-block;
    margin-top: 10px;
  }
}

.watermark-container {
  display: flex;
  align-items: center;
  position: relative;
}

/* Create an outer glow container */
.watermark-badge {
  position: relative;
  background: linear-gradient(135deg, rgba(5, 74, 118, 0.08) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(5, 74, 118, 0.08) 100%);
  border-left: 4px solid rgba(232, 232, 232, 0.9);
  padding: 10px 20px 10px 22px;
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(4px);
  box-shadow: 
    0 10px 25px rgba(5, 74, 118, 0.15),
    0 5px 10px rgba(5, 74, 118, 0.08),
    0 0 0 1px rgba(5, 74, 118, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Floating effect animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

/* Shine effect animation */
@keyframes shine {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* Pulse glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15), 0 5px 10px rgba(5, 74, 118, 0.08), 0 0 0 1px rgba(5, 74, 118, 0.05), 0 0 5px rgba(5, 74, 118, 0.0), inset 0 1px 1px rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 15px 30px rgba(5, 74, 118, 0.25), 0 8px 15px rgba(5, 74, 118, 0.15), 0 0 0 1px rgba(5, 74, 118, 0.1), 0 0 20px rgba(5, 74, 118, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.6); }
  100% { box-shadow: 0 10px 25px rgba(5, 74, 118, 0.15), 0 5px 10px rgba(5, 74, 118, 0.08), 0 0 0 1px rgba(5, 74, 118, 0.05), 0 0 5px rgba(5, 74, 118, 0.0), inset 0 1px 1px rgba(255, 255, 255, 0.4); }
}

/* Shimmer effect */
.watermark-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  pointer-events: none;
  animation: shine 4s infinite linear;
}

/* 3D floating badge effect */
.watermark-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.watermark-years {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  background: linear-gradient(135deg, #ffffff 20%, #235281 50%, #ffffff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-right: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  animation: colorShift 5s infinite alternate;
}

@keyframes colorShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Animated underline */
.watermark-years::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(25, 118, 210, 0.8), rgba(5, 74, 118, 0.4));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0.3);
  transition: transform 0.5s ease;
}

.watermark-badge:hover .watermark-years::after {
  transform: scaleX(1);
}

.watermark-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  transform: translateZ(10px);
}

/* Apply animations based on scroll state */
.navbar:not(.scrolled) .watermark-badge {
  animation: float 4s ease-in-out infinite;
}

.navbar.scrolled .watermark-badge {
  animation: pulseGlow 4s infinite ease-in-out;
  transform: scale(0.95);
}

/* Interactive hover effects */
.watermark-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(5, 74, 118, 0.2),
    0 10px 15px rgba(5, 74, 118, 0.1),
    0 0 0 1px rgba(5, 74, 118, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* Scrolling effect - add a class with JavaScript */
.watermark-minimized {
  transform: scale(0.85);
}

/* Clip path animation for modern effect */
@keyframes clipPath {
  0% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  25% { clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%); }
  50% { clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); }
  75% { clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

.watermark-badge {
  animation: clipPath 8s infinite ease-in-out;
}

/* Updated mobile styles */
@media (max-width: 768px) {
  .excellence-watermark {
    margin-left: 15px;
  }
  
  .watermark-badge {
    padding: 8px 15px 8px 18px;
  }
  
  .watermark-years {
    font-size: 22px;
  }
  
  .watermark-text {
    font-size: 11px;
  }
}
.view-all-btn {
  position: relative;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}

.view-all-btn:hover::before {
  left: 0;
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}


/* This will ensure the button matches your existing design */
.view-all-btn.btn-primary {
  background-color: var(--primary-color, #164276); /* Uses your primary color variable if available */
  border-color: var(--primary-color, #164276);
  box-shadow: 0 4px 15px rgba(22, 66, 118, 0.2);
}

.view-all-btn.btn-primary:hover {
  background-color: var(--primary-hover, #0d2e57); /* Uses your hover color variable if available */
  border-color: var(--primary-hover, #0d2e57);
  box-shadow: 0 6px 20px rgba(22, 66, 118, 0.3);
}

/* For very small screens */
@media (max-width: 576px) {
  .excellence-watermark {
    display: none;
  }
  
  .navbar-collapse.show + .excellence-watermark {
    display: none;
  }
}
  
  /* Hero Section */
  /* Hero Section - Fixed Centering */
/* Hero Section with custom background image */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: var(--primary-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Certificates Section Styles */
.certificates-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
  }
  
  .certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="10" height="10"/></svg>');
    opacity: 0.03;
    z-index: 0;
  }
  
  .section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .certificates-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  /* Certificates Grid */
  .certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  @media (max-width: 1199px) {
    .certificates-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .certificates-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Certificate Cards */
  .certificate-card {
    height: 280px;
    perspective: 1500px;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .certificate-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .certificate-card:hover .certificate-inner {
    transform: rotateY(180deg);
  }
  
  .certificate-front, .certificate-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 12px;
  }
  
  .certificate-front {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    color: #333;
  }
  
  .certificate-back {
    background: linear-gradient(145deg, #1e73be, #0c5da5);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .certificate-icon {
    font-size: 48px;
    color: #1e73be;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .certificate-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e73be;
  }
  
  .certificate-description {
    font-size: 16px;
    color: #666;
  }
  
  .certificate-back p {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .certificate-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .certificate-link:hover {
    background-color: white;
    color: #1e73be;
    transform: translateY(-3px);
  }
  
  /* Certificates Showcase */
  .certificates-showcase {
    margin-top: 20px;
  }
  
  .certificates-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .certificates-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 1s ease;
    display: block;
  }
  
  .certificates-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 115, 190, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
  }
  
  .certificates-image:hover .certificates-overlay {
    opacity: 1;
  }
  
  .certificates-image:hover img {
    transform: scale(1.05);
  }
  
  .certificates-content {
    text-align: center;
    color: white;
    padding: 30px;
    max-width: 650px;
  }
  
  .certificates-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .certificates-content p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .certificates-content .btn-primary {
    background-color: white;
    color: #1e73be;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .certificates-content .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Animation */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .certificate-card:nth-child(odd) {
    animation: float 4s ease-in-out infinite;
  }
  
  .certificate-card:nth-child(even) {
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
  }
  
  .hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background2.png') center/cover no-repeat;
    transform: scale(1.05);
    animation: slowZoom 10s ease-in-out infinite alternate;
    z-index: 1;
  }
  
  /* Professional construction-themed animations for mobile/tablet */
  @media (max-width: 1024px) {
    .hero-bg {
      background: none;
      animation: none;
    }
    
    /* Base background with professional gradient */
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0a2e4a, #0b3c5d);
      z-index: 1;
    }
    
    /* Blueprint grid overlay */
    .blueprint-grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 20px 20px;
      z-index: 1;
    }
    
    /* Construction elements */
    .construction-element {
      position: absolute;
      z-index: 1;
      opacity: 0.15;
    }
    
    /* Animated blueprint lines */
    .blueprint-line {
      position: absolute;
      height: 2px;
      background: rgba(83, 163, 211, 0.3);
      z-index: 1;
      transform-origin: left center;
    }
    
    .blueprint-line:nth-child(1) {
      width: 80%;
      top: 25%;
      left: -80%;
      animation: drawLine 8s linear infinite;
    }
    
    .blueprint-line:nth-child(2) {
      width: 60%;
      top: 45%;
      left: -60%;
      animation: drawLine 8s linear infinite 2s;
    }
    
    .blueprint-line:nth-child(3) {
      width: 70%;
      top: 65%;
      left: -70%;
      animation: drawLine 8s linear infinite 4s;
    }
    
    .blueprint-line:nth-child(4) {
      width: 50%;
      top: 85%;
      left: -50%;
      animation: drawLine 8s linear infinite 6s;
    }
    
    /* Animated blueprint circles */
    .blueprint-circle {
      position: absolute;
      border: 2px solid rgba(83, 163, 211, 0.2);
      border-radius: 50%;
      opacity: 0;
      z-index: 1;
    }
    
    .blueprint-circle:nth-child(1) {
      width: 100px;
      height: 100px;
      top: 20%;
      right: 10%;
      animation: fadeInOut 10s ease-in-out infinite;
    }
    
    .blueprint-circle:nth-child(2) {
      width: 150px;
      height: 150px;
      bottom: 15%;
      left: 15%;
      animation: fadeInOut 10s ease-in-out infinite 3s;
    }
    
    /* Animated measurement lines */
    .measurement {
      position: absolute;
      height: 40px;
      width: 2px;
      background: rgba(83, 163, 211, 0.2);
      z-index: 1;
    }
    
    .measurement:nth-child(1) {
      top: 30%;
      left: 20%;
      animation: extendVertical 7s ease-in-out infinite;
    }
    
    .measurement:nth-child(2) {
      top: 50%;
      right: 30%;
      animation: extendVertical 7s ease-in-out infinite 2s;
    }
    
    .measurement:nth-child(3) {
      bottom: 25%;
      left: 40%;
      animation: extendVertical 7s ease-in-out infinite 4s;
    }
    
    /* Animated structural beams */
    .beam {
      position: absolute;
      background: rgba(83, 163, 211, 0.15);
      z-index: 1;
      transform-origin: center;
    }
    
    .beam-horizontal {
      height: 8px;
      width: 0;
    }
    
    .beam-vertical {
      width: 8px;
      height: 0;
    }
    
    .beam:nth-child(1) {
      top: 15%;
      left: 10%;
      animation: extendBeamHorizontal 12s ease-in-out infinite;
    }
    
    .beam:nth-child(2) {
      top: 15%;
      left: 10%;
      animation: extendBeamVertical 12s ease-in-out infinite 0.5s;
    }
    
    .beam:nth-child(3) {
      top: 15%;
      right: 10%;
      animation: extendBeamVertical 12s ease-in-out infinite 4s;
    }
    
    .beam:nth-child(4) {
      bottom: 15%;
      left: 10%;
      animation: extendBeamHorizontal 12s ease-in-out infinite 8s;
    }
    
    /* Subtle pulse for accent elements */
    .accent-pulse {
      position: absolute;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: radial-gradient(rgba(83, 163, 211, 0.1), transparent 70%);
      z-index: 1;
    }
    
    .accent-pulse:nth-child(1) {
      top: 20%;
      right: 20%;
      animation: pulse 8s ease-in-out infinite;
    }
    
    .accent-pulse:nth-child(2) {
      bottom: 25%;
      left: 25%;
      animation: pulse 8s ease-in-out infinite 4s;
    }
  }
  
  /* Animation keyframes */
  @keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
  }
  
  @keyframes drawLine {
    0% { transform: translateX(0) scaleX(0); opacity: 0; }
    5% { opacity: 1; }
    50% { transform: translateX(100%) scaleX(1); opacity: 1; }
    52% { opacity: 0; }
    100% { transform: translateX(100%) scaleX(1); opacity: 0; }
  }
  
  @keyframes fadeInOut {
    0% { transform: scale(0.8); opacity: 0; }
    20% { transform: scale(1); opacity: 1; }
    80% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
  }
  
  @keyframes extendVertical {
    0% { height: 0; opacity: 0; }
    20% { height: 40px; opacity: 1; }
    80% { height: 40px; opacity: 1; }
    100% { height: 0; opacity: 0; }
  }
  
  @keyframes extendBeamHorizontal {
    0% { width: 0; opacity: 0; }
    10% { opacity: 1; }
    30% { width: 80%; opacity: 1; }
    70% { width: 80%; opacity: 1; }
    90% { opacity: 0; }
    100% { width: 0; opacity: 0; }
  }
  
  @keyframes extendBeamVertical {
    0% { height: 0; opacity: 0; }
    10% { opacity: 1; }
    30% { height: 70%; opacity: 1; }
    70% { height: 70%; opacity: 1; }
    90% { opacity: 0; }
    100% { height: 0; opacity: 0; }
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.7; }
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 65, 83, 0.7), rgba(25, 28, 30, 0.5), rgba(0, 0, 0, 0.4));
    z-index: 2;
  }
  
  /* Rest of the hero styles remain unchanged */
  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
  
.hero-subtitle {
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding: 0 15px;
}
  
.hero-subtitle::before, .hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}
  
.hero-subtitle::before {
    left: -35px;
}
  
.hero-subtitle::after {
    right: -35px;
}
  
.hero-title {
    color: white;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
  
.hero-title .highlight {
    position: relative;
    display: inline-block;
}
  
.hero-title .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: var(--accent);
    bottom: 5px;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}
  
.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 400;
}
  
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 120px; /* Increased padding to move content down */
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 17px;
    }
}
  
@media (max-width: 480px) {
    .hero-content {
        padding-top: 150px; /* Even more padding for smaller screens like iPhone */
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        display: block; /* Ensure subtitle is displayed */
        margin-bottom: 15px;
        margin-top: 30px; /* Added top margin for more space */
    }
    
    .hero-subtitle::before, .hero-subtitle::after {
        width: 20px;
    }
    
    .hero-subtitle::before {
        left: -25px;
    }
    
    .hero-subtitle::after {
        right: -25px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 40px;
    }
    
    .hero-description {
      font-size: 17px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 32px;
    }
    
    .hero-subtitle {
      font-size: 16px;
    }
    
    .hero-description {
      font-size: 16px;
    }
  }
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .btn {
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .btn-primary {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
  }
  
  .btn-primary::before {
    background-color: white;
  }
  
  .btn-primary:hover {
    color: var(--accent);
  }
  
  .btn-primary:hover::before {
    width: 100%;
  }
  
  .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-outline::before {
    background-color: white;
  }
  
  .btn-outline:hover {
    color: var(--primary);
  }
  
  .btn-outline:hover::before {
    width: 100%;
  }
  
  .btn i {
    transition: transform 0.3s ease;
  }
  
  .btn:hover i {
    transform: translateX(5px);
  }
  
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
  }
  
  .stat-item {
    text-align: center;
    color: white;
  }
  
  .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
  }
  
  .scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
  }
  
  .mouse-icon {
    width: 26px;
    height: 46px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
  }
  
  .wheel {
    width: 6px;
    height: 10px;
    background-color: white;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
  }
  
  @keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
  }
  
  .scroll-text {
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .hero-shape-1, .hero-shape-2 {
    position: absolute;
    z-index: 2;
    opacity: 0.2;
  }
  
  .hero-shape-1 {
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
    background: var(--accent);
    animation: morphShape 15s linear infinite alternate;
  }
  
  .hero-shape-2 {
    bottom: 15%;
    left: 5%;
    width: 250px;
    height: 250px;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    background: var(--accent);
    animation: morphShape 20s linear infinite alternate-reverse;
  }
  
  @keyframes morphShape {
    0% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
    25% { border-radius: 45% 55% 49% 51% / 35% 65% 35% 65%; }
    50% { border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%; }
    75% { border-radius: 50% 50% 33% 67% / 55% 45% 67% 33%; }
    100% { border-radius: 38% 62% 70% 30% / 47% 53% 47% 53%; }
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 48px;
    }
  }
  
  @media (max-width: 992px) {
    .hero-title {
      font-size: 42px;
    }
    
    .hero-description {
      font-size: 17px;
    }
    
    .hero-stats {
      gap: 30px;
    }
    
    .stat-number {
      font-size: 36px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      min-height: 600px;
    }
    
    .hero-title {
      font-size: 36px;
    }
    
    .hero-subtitle {
      font-size: 16px;
    }
    
    .hero-description {
      font-size: 16px;
      margin-bottom: 30px;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 15px;
      width: 100%;
      max-width: 320px;
      margin: 0 auto 40px;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 20px;
    }
    
    .stat-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 20px;
      width: 100%;
      max-width: 200px;
      margin: 0 auto;
    }
    
    .stat-item:last-child {
      border-bottom: none;
    }
    
    .hero-shape-1, .hero-shape-2 {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .hero-section {
      min-height: 550px;
    }
    
    .hero-title {
      font-size: 32px;
    }
    
    .hero-subtitle::before, .hero-subtitle::after {
      width: 20px;
    }
    
    .hero-subtitle::before {
      left: -25px;
    }
    
    .hero-subtitle::after {
      right: -25px;
    }
  }
  /* About Section */
  .about-section {padding: 100px 0; background: white;}
  .about-content {display: flex; align-items: center; flex-wrap: wrap;}
  .about-image, .about-text {flex: 0 0 100%; max-width: 100%; padding: 0 15px;}
  .about-image {margin-bottom: 30px;}
   
  .about-text p {margin-bottom: 25px; color: var(--text-light); font-size: 16px;}
  .about-features {display: flex; flex-wrap: wrap; margin-top: 30px; gap: 30px;}
  .feature-item {
    flex: 0 0 calc(50% - 15px);
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .feature-icon {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition);
  }
  .feature-item:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(11, 60, 93, 0.2);
  }
  .feature-text h4 {font-size: 18px; font-weight: 600; margin-bottom: 8px;}
  .feature-text p {color: var(--text-light); font-size: 14px; margin-bottom: 0;}
  
  /* Services Section */
  .services-section {padding: 100px 0; background: #f8f9fa;}
  .services-grid {margin-top: 50px;}
  .service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .service-card:hover {transform: translateY(-10px); box-shadow: var(--box-shadow-hover);}
  .service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    z-index: 2;
    transition: var(--transition);
  }
  .service-card:hover:before {height: 5px;}
  .service-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
    transition: var(--transition);
  }
  .service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
  }
  .service-content {padding: 0 25px 30px; text-align: center;}
  .service-title {font-size: 20px; font-weight: 600; margin-bottom: 15px; transition: var(--transition);}
  .service-card:hover .service-title {color: var(--primary);}
  .service-description {color: var(--text-light); font-size: 14px; margin-bottom: 20px;}
  .service-link, .project-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
  }
  .service-link i, .project-link i {margin-left: 5px; font-size: 14px; transition: var(--transition);}
  .service-link:hover, .project-link:hover {color: var(--primary-dark);}
  .service-link:hover i, .project-link:hover i {transform: translateX(5px);}
  
  /* Projects Section */
  .featured-projects {padding: 100px 0; background: white;}
  .project-slider {margin-top: 50px; position: relative;}
  .project-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin: 15px;
    transition: var(--transition);
  }
  .project-card:hover {transform: translateY(-5px); box-shadow: var(--box-shadow-hover);}
  .project-image {position: relative; height: 250px; overflow: hidden;}
  .project-image img {width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;}
  .project-card:hover .project-image img {transform: scale(1.05);}
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 60, 93, 0), rgba(11, 60, 93, 0.8));
    opacity: 0;
    transition: var(--transition);
  }
  .project-card:hover .project-overlay {opacity: 1;}
  .project-tags {position: absolute; top: 15px; left: 15px; display: flex; flex-wrap: wrap; gap: 5px;}
  .project-tag {
    background: rgba(11, 60, 93, 0.85);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .project-content {padding: 25px;}
  .project-title {font-size: 18px; font-weight: 600; margin-bottom: 10px; transition: var(--transition);}
  .project-card:hover .project-title {color: var(--primary);}
  .project-description {color: var(--text-light); font-size: 14px; margin-bottom: 15px;}
  
  /* Stats & CTA */
  .stats-section, .cta-section {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
  }
   /* Client Slider Styles */
    .clients-section {
      padding: 80px 0;
      background-color: #f8f9fa;
    }
    
    .clients-slider-container {
      position: relative;
      padding: 0 50px;
      margin-top: 50px;
    }
    
    .clients-slider .slick-track {
      display: flex;
      align-items: center;
    }
    
    .client-slide {
      padding: 15px;
      transition: all 0.3s ease;
    }
    
    .client-logo {
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 20px;
      transition: all 0.3s ease;
    }
    
    .client-logo:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .client-logo img {
      max-height: 80px;
      max-width: 100%;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    
    .client-logo:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }
    
    .slick-prev, .slick-next {
      width: 40px;
      height: 40px;
      background-color: #fff;
      border-radius: 50%;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      z-index: 1;
      transition: all 0.3s ease;
    }
    
    .slick-prev:hover, .slick-next:hover {
      background-color: #1e73be;
    }
    
    .slick-prev:hover:before, .slick-next:hover:before {
      color: #fff;
    }
    
    .slick-prev:before, .slick-next:before {
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: #1e73be;
      opacity: 1;
    }
    
    .slick-prev:before {
      content: '\f053';
    }
    
    .slick-next:before {
      content: '\f054';
    }
    
    .slick-dots {
      bottom: -40px;
    }
    
    .slick-dots li button:before {
      font-size: 12px;
      color: #1e73be;
      opacity: 0.3;
    }
    
    .slick-dots li.slick-active button:before {
      opacity: 1;
    }
  .stats-bg, .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
  }
  .stats-bg {background-image: url('images/safe2.png');}
  .cta-bg {background-image: url('/images/small.png');}
  .stats-container, .cta-content {position: relative; z-index: 1;}
  .cta-content {text-align: center; max-width: 700px; margin: 0 auto;}
  .stats-item {text-align: center; margin-bottom: 30px;}
  .stats-icon {color: var(--accent); font-size: 40px; margin-bottom: 20px;}
  .stats-number {color: white; font-size: 48px; font-weight: 700; margin-bottom: 10px; line-height: 1;}
  .stats-text {color: rgba(255, 255, 255, 0.8); font-size: 16px; text-transform: uppercase; letter-spacing: 1px;}
  .cta-title {color: white; font-size: 36px; font-weight: 700; margin-bottom: 20px;}
  .cta-text {color: rgba(255, 255, 255, 0.9); font-size: 18px; margin-bottom: 30px;}
  .cta-buttons, .hero-buttons {display: flex; justify-content: center; gap: 15px;}
  
  /* Testimonials */
  .testimonials-section {padding: 100px 0; background: #f8f9fa;}
  .testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 15px;
    position: relative;
    transition: var(--transition);
  }
  .testimonial-card:hover {transform: translateY(-5px); box-shadow: var(--box-shadow-hover);}
  .testimonial-quote {color: var(--primary-light); font-size: 60px; position: absolute; top: 20px; right: 30px; opacity: 0.2;}
  .testimonial-text {font-size: 16px; color: var(--text-light); margin-bottom: 25px; position: relative; z-index: 1;}
  .testimonial-author {display: flex; align-items: center;}
  .author-image {width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 15px;}
  .author-image img {width: 100%; height: 100%; object-fit: cover;}
  .author-info h5 {font-size: 16px; font-weight: 600; margin-bottom: 5px;}
  .author-info p {color: var(--text-light); font-size: 14px; margin-bottom: 0;}
  
  /* Footer */
  .footer {background: #101820; padding: 70px 0 0; color: rgba(255, 255, 255, 0.7);}
  .footer-logo {margin-bottom: 20px;}
  .footer-logo img {height: 60px;}
  .footer-about p {font-size: 14px; margin-bottom: 25px;}
  .social-links {display: flex; gap: 15px;}
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
  }
  .social-link:hover {background: var(--primary); transform: translateY(-5px);}
  .footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }
  .footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
  }
  .footer-links, .contact-info {list-style: none; padding: 0; margin: 0;}
  .footer-links li {margin-bottom: 12px;}
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
  }
  .footer-links a i {margin-right: 8px; font-size: 12px;}
  .footer-links a:hover {color: white; padding-left: 5px;}
  .contact-info li {margin-bottom: 15px; font-size: 14px; display: flex; align-items: flex-start;}
  .contact-info i {color: var(--accent); margin-right: 10px; margin-top: 5px;}
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
  }
  
  /* Animations */
  @keyframes fadeInUp {to {opacity: 1; transform: translateY(0);}}
  @keyframes fadeIn {to {opacity: 1;}}
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
  }
  
