/* Base Styles */
:root {
  --primary-color: #010d8f;
  --secondary-color: #010d8f;
  --whatsapp-color: #25D366;
  --text-color: #0015fd;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --header-shrink-height: 50px;
  --header-normal-height: 60px;
  --top-header-height: 30px;
  --top-header-shrink-height: 25px;
  --shadow: 0 0 10px rgba(12, 0, 107, 0.674);
  --shadow-hover: 0 8px 8px rgba(0, 7, 103, 0.56);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  padding-top: calc(var(--top-header-height) + var(--header-normal-height));
}

/* Top Header Styles */
.top-header {
  background-color: var(--primary-color);
  color: var(--white);
  height: var(--top-header-height);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  transition: var(--transition);
  font-size: 13px;
}

.top-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-left, .top-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-header-left a, .top-header-right a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.top-header-left a:hover, .top-header-right a:hover {
  opacity: 0.8;
}

/* Top Header Animations */
.ringing {
  animation: ring 1.5s infinite;
}

@keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-15deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.zooming {
  animation: zoom 2s infinite;
}

@keyframes zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.top-call-icon,
.top-whatsapp-icon,
.top-facebook-icon,
.top-instagram-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.top-header-right .ringing {
  animation: none;}

.top-call-icon {
  background-color: #0015ff;
  animation: pulse 2s infinite;
}

.top-whatsapp-icon {
  background-color: var(--whatsapp-color);
  animation: pulse 2s infinite;
}

.top-facebook-icon {
  background-color: #0015ff;
  animation: pulse 2s infinite;
}

.top-instagram-icon {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  animation: pulse 2s infinite;
}

.top-location i {
  /* No animation for location icon */
  animation: none !important;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Main Header Styles */
.main-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: var(--top-header-height);
  width: 100%;
  z-index: 1000;
  height: var(--header-normal-height);
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

/* Navigation with Animated Underline */
.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin: 0 15px;
  position: relative;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 5px 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.nav-link span {
  position: relative;
  display: inline-block;
  transition: var(--transition);
}

.nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover span {
  transform: translateY(-3px);
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
  z-index: 1002;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.1);
  z-index: 999;
  justify-content: center;
}

.mobile-footer-icon {
  flex: 1;
  max-width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.mobile-footer-icon:hover {
  transform: translateY(-5px);
}

.mobile-footer-icon::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255,255,255,0.3);
}

.mobile-footer-icon:last-child::after {
  display: none;
}

.call-box {
  background-color: var(--primary-color);
}

.whatsapp-box {
  background-color: var(--whatsapp-color);
}

.mail-box {
  background-color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: calc(100vh - var(--header-normal-height) - var(--top-header-height));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  width: 100%;
  overflow: hidden;
}


.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* hero Section */

/* Search Section */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding-bottom: 40px;
}

.search-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-bar {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.search-field {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-field i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.search-field input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.search-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-button:hover {
  background-color: #00085c;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: var(--transition);
  padding-top: calc(var(--top-header-shrink-height) + var(--header-shrink-height));
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
  padding: 20px;
}

.mobile-menu-list li {
  margin-bottom: 15px;
}

.mobile-menu-list a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-list a:hover {
  color: var(--primary-color);
}

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-list li {
      margin: 0 10px;
  }
}

@media (max-width: 768px) {
  body {
      padding-top: calc(var(--top-header-shrink-height) + var(--header-shrink-height));
  }
  
  .top-header {
      height: var(--top-header-shrink-height);
      font-size: 11px;
  }
  
  .top-header-left {
      width: 100%;
      justify-content: center;
  }
  
  .top-header-right, 
  .top-location, 
  .top-mail-icon {
      display: none;
  }
  
  .top-phone-text {
      display: inline-block;
  }
  
  .main-header {
      top: var(--top-header-shrink-height);
      height: var(--header-shrink-height);
  }
  
  .logo {
      height: 30px;
  }
  
  .main-nav {
      display: none;
  }
  
  .mobile-menu-toggle {
      display: block;
  }
  
  .mobile-sticky-footer {
      display: flex;
  }
  
  .hero {
      height: calc(100vh - var(--header-shrink-height) - var(--top-header-shrink-height));
  }
  
  .search-section {
      margin-top: -40px;
  }
  
  .search-bar {
      flex-direction: column;
  }
  
  .search-field {
      width: 100%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
      font-size: 1.8rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
  
  .search-button {
      width: 100%;
      justify-content: center;
  }
}

/* Scroll Effects */
.header-shrink {
  height: var(--header-shrink-height);
}

.header-shrink .logo {
  height: 30px;
}

.hero-shrink {
  height: calc(100vh - var(--header-shrink-height) - var(--top-header-shrink-height));
}

/* 526px or more small screen */
@media (max-width: 526px) {
  .top-header {
    height: 30px;
    padding: 0 10px;
  }
  
  .top-header-left {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  
  /* only for call icon and number */
  .top-contact-item:not(:first-child),
  .header-divider,
  .top-header-right {
    display: none !important;
  }
  
  /* call icon style */
  .top-contact-item:first-child {
    margin: 0 auto;
    display: flex !important;
    align-items: center;
    gap: 5px;
  }
  
  /* number in one line */
  .contact-text {
    white-space: nowrap !important;
    font-size: 12px;
    display: inline-block !important;
  }
  
  /* continue animation */
  .ringing {
    animation: ring 1.5s infinite !important;
  }
  
  /* adjust main header position */
  .main-header {
    top: 30px;
  }
  
  /* adjust hieght of hero section */
  .hero {
    height: calc(50vh - 30px - var(--header-shrink-height));
  }
}


/* Featured Projects */
.featured-projects {
  background-color: #0011ff06 !important;
  padding: 30px 0;
  background-color: var(--white);
}

.featured-projects .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-projects-header {
  text-align: center;
  width: 100%;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top-text {
  color: var(--primary-color);
}

.projects-text {
  color: #333333
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.project-card {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
  border-bottom: 3px solid var(--primary-color);
  display: block;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-image-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-image {
  transform: scale(1.1);
}

.project-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  z-index: 1;
  background-color: #0000005e; /* Light gray */
  display: inline; /* For inline elements like <span> */
  padding: 100% 0; /* Space around text */
}


.view-more {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.project-card:hover .view-more {
  opacity: 1;
  top: 85%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .project-card {
    height: 200px;
  }
  
  .project-name {
    font-size: 20px;
  }
}

/* ===== About Us Section ===== */
.about-us-section {
  padding: 1rem 1rem;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Design */
.about-card {
  max-width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  border-top: 4px solid #010d8f;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.section-title {
  font-size: 2.2rem;
  color: #010d8f;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-us-section .section-title:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, #4361ee, #f72585);
  bottom: -8px;
  left: 25%;
  display: block; /* Make sure it's visible */
}

.content-wrapper {
  padding: 0 1rem;
}

.about-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Button Design */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 2rem;
  background: #010d8f;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #010d8f;
}

.learn-more-btn:hover {
  background: transparent;
  color: #010d8f;
  transform: translateY(-3px);
}

.learn-more-btn svg {
  transition: transform 0.3s ease;
}

.learn-more-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-card {
    padding: 1.8rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
}


/* why choose us */
.compact-about {
  padding: 0 0;
  
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #0011ff06;
}

.compact-about .container {
  max-width: 1200px;
  margin: 0 10px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compact-about-header {
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}

.compact-about-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #010d8f;
}

.compact-about-header span {
  color: #333333;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(67, 97, 238, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.divider {
  width: 200px;
  height: 3px;
  background: linear-gradient(to right, #4361ee, #f72585);
  margin: 0 auto;
  border-radius: 2px;
}

/* Mission & Vision Row */
.mv-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  width: 100%;
}

.mv-card {
  flex: 1;
  max-width: 100%;
  background: #ffffff;
  padding: .5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mv-card.mission {
  border-top: 4px solid #4361ee;
}

.mv-card.vision {
  border-top: 4px solid #f72585;
}

.mv-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4361ee;
  font-size: 1.5rem;
}

.mv-card.vision .mv-icon {
  background-color: rgba(247, 37, 133, 0.1);
  color: #f72585;
}

.mv-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #212529;
}

.mv-card p {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Stats Row */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}

.stat-card {
  flex: 1;
  min-width: 140px;
  max-width: 250px;
  background: #ffffff;
  padding: .5rem 0rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #4361ee;
  margin-bottom: 0.5rem;
  font-feature-settings: "tnum";
}

.service-hours::after {
  content: "/7";
  font-size: 1.5rem;
  color: #6c757d;
}

.stat-label {
  color: #6c757d;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.stat-label i {
  color: #4361ee;
  font-size: 0.9rem;
}

/* Values Section */
.values-section {
  margin-bottom: 2.5rem;
  width: 100%;
}

.values-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #212529;
  position: relative;
  padding-bottom: 1rem;
}

.values-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #4361ee, #f72585);
  border-radius: 3px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.value-card {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  background: #ffffff;
  padding: .5rem 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4361ee;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.value-card:hover .value-icon {
  background-color: #4361ee;
  color: #ffffff;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #212529;
}

.value-card p {
  color: #6c757d;
  font-size: 0.8rem;
}

/* Animated CTA */
.cta-container {
  position: relative;
  display: inline-block;
  margin: 20px 0;
}

.cta-button {
  position: relative;
  background: #010d8f;
  color: #ffffff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.contact-options {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: row;
  gap: 12px;
  z-index: 1000;
  padding: 10px 15px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease forwards;
  opacity: 0;
}

.contact-options.show {
  display: flex;
  opacity: 1;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateX(-50%) translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
  }
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.call { background-color: #25D366; }
.whatsapp { background-color: #128C7E; }
.email { background-color: #EA4335; }

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .mv-card {
      min-width: 240px;
  }
  
  .stat-card {
      min-width: 120px;
  }
  
  .value-card {
      min-width: 140px;
  }
}

@media (max-width: 768px) {
  .compact-about {
      padding: 2rem 0;
  }

  .compact-about .container {
      padding: 0rem 0;
  }
  
  .compact-about-header h1 {
      font-size: 1.8rem;
  }
  
  .mv-row {
      gap: 1rem;
  }
  
  .stats-row {
      gap: 1rem;
  }
  
  .stat-card {
      min-width: calc(50% - 1rem);
      max-width: none;
  }
  
  .value-card {
      min-width: calc(50% - 1rem);
      max-width: none;
  }
  
  .contact-options {
      padding: 8px 12px;
      gap: 8px;
  }
  
  .contact-icon {
      width: 36px;
      height: 36px;
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .compact-about-header h1 {
      font-size: 1.6rem;
  }
  
  .mv-card {
      min-width: 100%;
  }
  
  .stat-card {
      min-width: calc(50% - 0.6rem);
      padding: 1rem 0.5rem;
  }
  
  .stat-number {
      font-size: 1.6rem;
  }
  
  .value-card {
      min-width: calc(50% - 0.6rem);
      padding: 1rem 0.5rem;
  }
  
  .values-title {
      font-size: 1.4rem;
  }
  
  .cta-button {
      padding: 0.8rem 1.8rem;
      font-size: 0.9rem;
  }
  
  .contact-options {
      bottom: calc(100% + 10px);
  }
}
/* why choose us */




/* Our Trusted Partners Section */
.trusted-partners {
  padding: 15px 0;
  background-color: #ffffff;
}

.partners-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.trusted-partners .top-text {
  color: #010d8f;
}

.trusted-partners .partners-text {
  color: #333;
}

.trusted-partners .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
}

.partners-slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.partner-slide {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  padding: 15px;
}

.partner-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.partner-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-slide:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .partner-slide {
    width: 160px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .trusted-partners {
    padding: 40px 0;
  }
  
  .partner-slide {
    width: 140px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .partner-slide {
    width: 120px;
    height: 70px;
  }
}


/* Footer Styles */
.footers {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  line-height: 1.6;
}

/* Footer Top Section */
.footer-top-container {
  background: #00101e;
  padding: 20px 20px 0;
}

.footer-top {
  background: #ffffff;
  color: #000000;
  border-radius: 50px;
  padding: 15px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-contact-item {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateY(-3px);
}

.footer-contact-item .icon {
  font-size: 1.5rem;
  color: #1e00ff;
  transition: all 0.3s ease;
  min-width: 30px;
  text-align: center;
}

.footer-contact-item:hover .icon {
  transform: scale(1.2);
}

.footer-contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.footer-contact-item p a {
  color: inherit;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-contact-item:hover p a {
  color: #1e00ff;
}

/* Main Footer */
.footer-main {
  background: #000a13;
  padding: 30px 0 0;
}

.footer-main .footer-container {
  padding: 0 15px;
}

.footer-col {
  flex: 1 1 300px;
  padding: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-col p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #1e00ff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  display: inline-block;
  padding: 5px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col ul li a:hover {
  color: #1e00ff;
  padding-left: 5px;
}

/* Contact Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  font-family: inherit;
}

.enquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}

.enquiry-form button {
  background: #1e00ff;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 4px;
  font-weight: 600;
}

.enquiry-form button:hover {
  background: #190098;
  transform: translateY(-2px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

.social-icon.fb {
  background: #0037ff;
}

.social-icon.yt {
  background: #ff0000;
}

.social-icon.ig {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.li {
  background: #0037ff;
}

/* Footer Bottom */
.footer-bottom {
  background: var(--primary-color);
  padding: 15px;
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-contact-item {
      flex: 1 1 250px;
  }
  
  .footer-col {
      flex: 1 1 250px;
  }
}

@media (max-width: 768px) {
  .footer-top-container {
      padding: 15px 15px 0;
      height: auto;
  }
  
  .footer-top {
      border-radius: 25px;
  }
  
  .footer-contact-item {
      flex: 1 1 100%;
      padding: 12px;
  }
  
  .footer-col {
      flex: 1 1 100%;
  }
  
  .social-icons {
      justify-content: flex-start;
  }

  .footer-bottom {
    padding: 12px;
    margin-bottom: 50px;
}
  
  .footer-col h3 {
      font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .footer-top {
      border-radius: 20px;
  }

  
  .footer-contact-item .icon {
      margin-bottom: 8px;
  }
  
  .enquiry-form input,
  .enquiry-form textarea {
      padding: 10px;
  }
  
  .footer-bottom {
      padding: 12px;
      margin-bottom: 50px;
  }
}