* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    color: #1a237e;
    background-color: #f8f9fa;
}

/* Hero Styles */
.hero-carousel, .hero-carousel-mid-height {
  min-height: 95vh;
}

.hero-carousel .carousel-item, .hero-carousel-mid-height .carousel-item {
  height: 95vh; /* match min-height */
}

.hero-img, .hero-img-mid-height {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95vh;
  object-fit: cover;
  filter: brightness(0.8);
}

.carousel-caption {
  bottom: 20%;
}

.carousel-indicators .active {
  background-color: yellow;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    background: transparent !important;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(26, 35, 126, 0.1);
}

.navbar-brand {
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .navbar-brand {
    color: #1a237e;
    text-shadow: none;
}

.logo {
    width: 180px;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .logo {
    filter: none;
}

.brand-text {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.navbar-nav {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
    background: none !important;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.8),
        1px -1px 2px rgba(0, 0, 0, 0.8),
        -1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.navbar.scrolled .nav-link {
    color: #1a237e;
    text-shadow: none;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffd600 !important;
    text-shadow:
        2px 2px 3px rgba(0, 0, 0, 0.6),
        -2px -2px 3px rgba(0, 0, 0, 0.6),
        2px -2px 3px rgba(0, 0, 0, 0.6),
        -2px 2px 3px rgba(0, 0, 0, 0.6);
    transform: translateY(-1px);
}

.navbar.scrolled .nav-link:hover {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    color: #ffd600 !important;
    text-shadow: 
        2px 2px 3px rgba(0, 0, 0, 0.6),
        -2px -2px 3px rgba(0, 0, 0, 0.6),
        2px -2px 3px rgba(0, 0, 0, 0.6),
        -2px 2px 3px rgba(0, 0, 0, 0.6);
}

.navbar.scrolled .nav-link.active {
    text-shadow: 0 2px 4px rgba(255, 214, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background-color: #ffd600;
    transition: all 0.3s ease;
    transform: scaleX(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar.scrolled .nav-link::after {
    box-shadow: none;
}

.navbar-toggler {
    border: none;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.navbar.scrolled .navbar-toggler {
    filter: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .bar {
    background-color: #1a237e;
    box-shadow: none;
}

/* 3D Effect for Navbar Items */
.nav-link {
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(0,0,0,0.1) 100%);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar.scrolled .nav-link::before {
    display: none;
}

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

/* Mobile menu styles for transparent navbar */
@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        border-radius: 10px;
        margin-top: 10px;
        padding: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        text-align: center;
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
        border-radius: 5px;
        text-shadow: 
            1px 1px 2px rgba(0, 0, 0, 0.8),
            -1px -1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}


/* Hero Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd600 0%, #ffab00 100%);
    color: #1a237e;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #ffd600;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: #1a237e;
    color: #ffd600;
    box-shadow: 0 10px 25px rgba(255, 214, 0, 0.5);
    border-color: #ffd600;
}

.category-wrapper {
  position: relative;
}

.category-container {
  scroll-behavior: smooth;
}

.category-item {
  flex: 0 0 auto;
  text-align: center;
  width: 140px;
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-img {
  width: 140px;
  height: 140px;
  background: #1f2937;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-item:hover img {
  transform: scale(1.05);
}

.category-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  margin-top: 10px;
}

.scroll-btn {
  background: #1f2937;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: #374151;
}

.scroll-btn i {
  font-size: 0.9rem;
}

.left-btn {
  margin-right: 10px;
}

.right-btn {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .category-item {
    width: 100px;
  }
  .category-img {
    width: 100px;
    height: 100px;
  }
}

/* Services Section - Icons Half In/Half Out */
#services {
  background: #ffffff;
  padding: 80px 0;
}

#services h2 {
  text-align: center;
  color: #1e3c72;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.services-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 60px 30px 30px 30px;
  text-align: center;
  height: 100%;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 40px;
}

.service-card:hover {
  border-color: #1e3c72;
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
  transform: translateY(-5px);
}

.service-icon-wrapper {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
}

.service-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  font-size: 2rem;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.service-title {
  color: #1e3c72;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-top: 10px;
}

.service-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #services {
    padding: 60px 0;
  }
  
  #services h2 {
    font-size: 2rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .service-card {
    padding: 50px 20px 25px 20px;
    margin-top: 35px;
  }

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

  .service-icon {
    font-size: 1.8rem;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  #services h2 {
    font-size: 1.8rem;
  }
  
  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    top: -30px;
  }
  
  .service-icon {
    font-size: 1.6rem;
  }
  
  .service-title {
    font-size: 1.1rem;
  }
}
/* About Us Section */
#about {
  background: #f8f9fa;
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.about-title {
  color: #1e3c72;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.highlight-text {
  color: #333;
  font-weight: 600;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.stars {
  color: #ffd600;
  font-size: 1.2rem;
}

.review-text {
  color: #666;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-image img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  #about {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 1.8rem;
  }
  
  .reviews {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Testimonials Section - Google Style */
#testimonials {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#testimonials h2 {
  text-align: center;
  color: #1e3c72;
  font-weight: 700;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.testimonials-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 0;
  animation: slideInfinite 40s linear infinite;
  padding: 20px 0;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  min-width: 350px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-info h4 {
  color: #202124;
  font-weight: 600;
  margin: 0;
  font-size: 0.8rem;
}

.author-info p {
  color: #5f6368;
  margin: 0;
  font-size: 0.75rem;
}

.google-stars {
  color: #FBBC04;
  font-size: 0.8rem;
}

.testimonial-text {
  color: #3c4043;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

.testimonial-date {
  color: #5f6368;
  font-size: 0.8rem;
  margin-top: 15px;
  text-align: right;
}

/* Infinite sliding animation */
@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-350px * 7 - 30px * 7));
  }
}

/* Duplicate testimonials for seamless loop */
.testimonials-track::after {
  content: '';
  display: flex;
  gap: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  
  #testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .testimonials-container {
    height: 350px;
  }
  
  .testimonial-card {
    min-width: 300px;
    padding: 25px;
  }
  
  @keyframes slideInfinite {
    100% {
      transform: translateX(calc(-300px * 7 - 30px * 7));
    }
  }
}

@media (max-width: 576px) {
  .testimonials-container {
    height: 320px;
  }
  
  .testimonial-card {
    min-width: 280px;
    padding: 20px;
  }
  
  .testimonial-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .google-stars {
    align-self: flex-start;
  }
  
  @keyframes slideInfinite {
    100% {
      transform: translateX(calc(-280px * 7 - 30px * 7));
    }
  }
}

/* Footer Section */
#footer {
  background: #0a1931;
  color: white;
  padding: 60px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.footer-section h4 {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.3rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.footer-contact i {
  color: #ffd600;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-contact a:hover {
  color: #ffd600;
}

.footer-hours p {
  margin-bottom: 8px;
  font-weight: 300;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: #ffd600;
  color: #0a1931;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 214, 0, 0.3);
}

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

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  #footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-social {
    justify-content: center;
  }
}

a {
    text-decoration: none;
}

/* About Us Section Styles */
.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd600, #1a237e, #ffd600);
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.section-heading {
  color: #1a237e;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd600, #1a237e);
  border-radius: 2px;
}

.about-section .lead {
  color: #666;
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 40px;
}

/* Image Container */
.about-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image-container:hover {
  transform: translateY(-10px);
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.experience-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid #ffd600;
}

.experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a237e;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Items */
.about-content-wrapper {
  padding-left: 30px;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.about-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left-color: #ffd600;
}

.about-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
  transition: transform 0.3s ease;
}

.about-item:hover .about-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-text h3 {
  color: #1a237e;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ffd600;
  border-radius: 2px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: white;
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd600, #1a237e);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #ffd600;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a237e;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: #666;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .about-section {
    padding: 80px 0;
  }
  
  .section-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .about-text h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-image-container {
    margin-bottom: 30px;
  }
  
  .about-main-img {
    height: 400px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .about-item {
    padding: 20px;
  }
  
  .about-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Animation for stats counting */
@keyframes countUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.stat-number.animated {
  animation: countUp 0.6s ease-out;
}

.terms-section {
  background: #ffffff;
  color: #000000;
}

.terms-section h2 {
  font-size: 2.3rem;
}

.terms-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 35px;
}

.terms-section p,
.terms-section ul li {
  font-size: 1rem;
  line-height: 1.75;
}


/* SECTION STYLES */
.gallery-section {
  background: #fff;
}

/* Headings */
.gallery-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #ffd600;
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.9rem;
}

.gallery-title {
  color: #0d1b4c;
  font-weight: 800;
  font-size: 2.5rem;
  margin-top: 15px;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-top: 10px;
}

/* FILTER BUTTONS */
.gallery-filter .filter-btn {
  border: none;
  padding: 10px 20px;
  margin: 0 6px;
  border-radius: 40px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #ffd600, #3542c7);
  transition: 0.3s ease;
}

.gallery-filter .filter-btn.active,
.gallery-filter .filter-btn:hover {
  transform: scale(1.1);
}

/* GALLERY BOXES */
.gallery-box,
.video-box {
  overflow: hidden;
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.gallery-box img,
.video-box video {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Zoom */
.gallery-box:hover img,
.video-box:hover video {
  transform: scale(1.08);
}

.hidden {
  display: none !important;
}

.social-media-images {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-image-link {
  display: block;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
}

.social-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  align-items: center;
}

.social-image-link:hover {
  transform: translateY(-3px);
}

.social-image-link:hover .social-image {
  transform: scale(1.1);
}

/* Warranty Section Styles */
#warranty {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

#warranty .service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f0fe;
    transition: all 0.3s ease;
    height: 100%;
}

#warranty .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

#warranty h2 {
    color: #1e3a8a;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
}

#warranty h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 2px;
}

#warranty .services-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#warranty .service-title {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

#warranty .service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

#warranty .service-description {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

#warranty h5.fw-bold {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

#warranty h6.fw-bold {
    color: #1e40af;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

#warranty .text-primary {
    color: #1e40af !important;
}

/* Warranty Periods Styling */
#warranty .mb-3 {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

#warranty .mb-3:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

/* Lists Styling */
#warranty ul.service-description {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

#warranty ul.service-description li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    line-height: 1.6;
}

#warranty ul.service-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

#warranty ul.service-description li:last-child {
    margin-bottom: 0;
}

/* Process Steps Styling */
#warranty .d-flex.align-items-start {
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

#warranty .d-flex.align-items-start:hover {
    background: #f0f9ff;
    transform: translateX(5px);
}

#warranty .rounded-circle {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

#warranty .d-flex.align-items-start:hover .rounded-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

#warranty .d-flex.align-items-start h6 {
    color: #1e3a8a;
    font-size: 1.1rem;
}

/* Extended Warranty Box */
#warranty .bg-light {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe) !important;
    border: 2px solid #bae6fd;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#warranty .bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

#warranty .bg-light h6 {
    color: #0369a1;
    font-size: 1.2rem;
}

/* Additional Info Cards */
#warranty .text-center .service-description {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#warranty .text-center:hover .service-description {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #3b82f6;
}

/* Note Section */
#warranty .text-center.mt-3 .service-description {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 1.5rem;
    border-radius: 12px;
    font-style: italic;
}

#warranty .text-center.mt-3 strong {
    color: #d97706;
}


/* Repair Card Container */
.repair-card {
  background: #0a1f44;
  color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Subtitle */
.repair-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Inputs */
.repair-card .form-control,
.repair-card .form-select {
  background: #102a57;
  border: 1px solid #1e3a69;
  color: #ffffff;
  padding: 0.9rem 1rem;
  border-radius: 12px;
}

.repair-card .form-control::placeholder {
  color: #cfd8ff;
  opacity: 0.6;
}

/* Labels */
.repair-card .form-label {
  font-weight: 600;
  color: #dbe4ff;
}

/* Inputs focus glow */
.repair-card .form-control:focus,
.repair-card .form-select:focus {
  background: #122f63;
  box-shadow: 0 0 0 0.25rem rgba(255,214,0,0.25);
  border-color: #ffd600;
  color: #fff;
}

.category-item {
  display: inline;
}

/* Responsive Design */
@media (max-width: 768px) {
    #warranty h2 {
        font-size: 2.2rem;
    }
    
    #warranty .service-card {
        padding: 1.5rem;
    }
    
    #warranty .service-title {
        font-size: 1.5rem;
    }
    
    #warranty .d-flex.align-items-start {
        padding: 0.75rem;
    }
    
    #warranty .text-center .service-description {
        min-height: auto;
        margin-bottom: 1rem;
    }

    .hero-carousel {
      min-height: 40vh;
    }

    .hero-carousel .carousel-item {
      height: 40vh; /* match min-height */
    }

    .hero-img {
      height: 40vh;
    }

    .hero-img-mid-height {
      height: 60vh;
    }

    .hero-carousel-mid-height {
      min-height: 60vh;
    }

    .hero-carousel-mid-height .carousel-item {
      height: 60vh; /* match min-height */
    }

    .logo {
      width: 100px
    }

    .carousel-caption {
      bottom: 10%;
    }
}

@media (max-width: 576px) {
    #warranty h2 {
        font-size: 1.8rem;
    }
    
    #warranty .services-subtitle {
        font-size: 1rem;
    }
    
    #warranty .service-card {
        padding: 1rem;
    }
}