
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #222;
    background: #ffffff;
}


.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0px; 
  left: 0;
  width: 100%;
  padding: 16px 50px;
  background: #ffffff;
  color: #000000;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.45rem;
  font-weight: bold;
  color: #000000;
  gap: 0px;
}

.logo-img {
  height: 60px;
  width: auto;
  margin-right: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-links li {
  margin-left: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.22s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ff3535;
}
/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #484343;
  transition: 0.3s;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


/* HERO CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn, .btn-outline {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

.btn {
    background-color: #ff0000;
    color: #000;
}

.btn-outline {
    border: 2px solid #ff0000;
    color: #ff0000;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: #ff0000;
    color: #ffffff;
}

/* SECTIONS */
section {
    padding: 80px 10%;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
/* ABOUT SECTION WITH IMAGE */
.about-section {
  background: #fff;
  padding: 0; 
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 10%; 
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
}

.about-image img {
  width: 700px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  display: block;
}

.about-content {
  flex: 1;
  max-width: 550px;
  text-align: left;           
}

.about-content h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 15px;
}

.about-content p {
  text-align: justify;
  line-height: 1.7;
  color: #524e4e;
  margin-bottom: 25px;
}




/* --- Section --- */
.services-section {
  background-color: #fef6f5;
  padding: 80px 0;
  text-align: center;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-heading h2 span {
  color: #ff0000;
}

.section-heading p {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* --- Grid Layout --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Service Card --- */
.service-card {
  position: relative;
}

.card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-content {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  max-width: 90%;
  margin: -60px auto 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
}

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

/* --- Card Icon --- */
.card-icon {
  position: absolute;
  top: -25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(243, 122, 84, 0.4);
}

/* --- Card Text --- */
.card-content h3 {
  color: #000000;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.card-content p {
  color: #8c8888;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* --- Button --- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  border: 2px solid #ff0000;
  background-color: #ffffff;
  color: #ef6136;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ff0000;
  color: #fff;
  box-shadow: 0 4px 10px rgba(243, 122, 84, 0.3);
}





/* WHY CHOOSE US - IMAGE CARDS */
/* --- 2. Section Container --- */
.features-section {
    max-width: 1300px;
    margin: 0 auto;
}

/* --- 3. Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    
    color: #000000;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #6c757d; 
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px; 
    margin: 0 auto; 
}

/* --- 4. Features Grid Layout --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; 
}

/* --- 5. Feature Card Styling --- */
.feature-card {
    background-color: #ffffff;  
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* --- 6. Icon Container --- */
.icon-container {
    width: 90px;
    height: 90px;
    background-color: #e6f0fa;
    border-radius: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto; 
    font-size: 2.5rem; 
}

/* --- 7. Card Content --- */
.feature-card h3 {
    color: #000000;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}



/* ==== STATS SECTION ==== */
.stats-section {
  background: #fff;
  padding: 60px 0;
  color: #111;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fe1b1b;
  color: #fff;
  border-radius: 50px;
  width: 85%;
  margin: 0 auto 60px;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.stat-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ==== STATS CONTENT ==== */
.stats-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 85%;
  margin: 0 auto;
}

.stats-images {
  flex: 1;
  position: relative;
}

.stats-images img {
  width: 70%;
  border-radius: 10px;
  object-fit: cover;
}

.stats-images .overlay-img {
  width: 50%;
  position: absolute;
  bottom: -30px;
  right: -30px;
  border: 5px solid #fff;
  border-radius: 10px;
}

.stats-text {
  flex: 1;
  max-width: 500px;
}

.stats-text h2 {
  color: #000000;
  margin-bottom: 15px;
}

.stats-text p {
  color: #444;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-list ul {
  list-style: none;
}

.service-list li {
  margin-bottom: 10px;
  color: #656161;
}

.service-list i {
  color: #ff4b2b;
  margin-right: 8px;
}

.stats-text .btn {
  background: #e6492d;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.stats-text .btn:hover {
  background: #ff2600;
}

/* ==== FEATURES HIGHLIGHT ==== */
.features-highlight {
  background: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

.features-highlight h2 {
  color: #000000;
  margin-bottom: 50px;
}

.features-highlight span {
  color: #ff0000;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 85%;
  margin: 0 auto;
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}
.feature-item p{
  color: rgb(81, 78, 78);
}
.feature-item i {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 15px;
}

.feature-item h3 {
  color: #000000;
  margin-bottom: 10px;
}



/* CONTACT PREVIEW */
.contact-preview {
    background: #002b5c;
    color: #fff;
    padding: 100px 10%;
    margin-bottom: 90px;
}

.contact-preview .btn {
    background: #ff0000;
    color: #ffffff;
    margin-top: 20px;
}
.contact-perview .btn:hover {
    background: #ff0000;
    color: #ffffff;
}


/* TESTIMONIALS SECTION */
.testimonials-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-badge {
  display: inline-block;
  background: #f51f1f;
  color: #fff;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 700;
  margin: 0;
}

.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.testimonial-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
  max-width: 900px;
  position: relative;
  min-height: 350px;
}

.testimonial-card {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-card.active {
  display: flex;
  opacity: 1;
  gap: 40px;
  align-items: center;
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ff6b4a;
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

.testimonial-text {
  flex: 1;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: #32b8c6;
  opacity: 0.15;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #546e7a;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.client-name {
  font-size: 1.5rem;
  color: #1a3a52;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.client-position {
  font-size: 0.95rem;
  color: #32b8c6;
  margin: 0 0 15px 0;
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-rating i {
  color: #ff0000;
  font-size: 1.1rem;
}

.testimonial-nav {
  background: rgb(247, 104, 104);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 58, 82, 0.3);
}

.testimonial-nav:hover {
  background: #ff0000;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(234, 175, 175, 0.4);
}

.testimonial-nav:active {
  transform: scale(0.95);
}



/* ===== FOOTER TOP SECTION ===== */
.footer-top {
  background: #ff0000;
  padding: 40px 0 70px;
  position: relative;
  color: #fff;
  overflow: visible;
}

.footer-top-content {
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-text {
  max-width: 400px;
}

.footer-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-text p {
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.9;
}

.footer-call {
  background: #fff;
  color: #ff4b2b;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.footer-call i {
  font-size: 1.2rem;
}

/* Footer Top Image Overlay */
.footer-image {
  position: absolute;
  right: 40%;
  bottom: -5px;
  z-index: 4;
}

.footer-image img {
  width: 220px;
  max-width: 100%;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

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


/* ===== FOOTER MAIN ===== */
.footer-main {
  background: #ffffff;
  color: #000000;
  padding: 60px 0;
}


.footer-container {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

/* Footer Logo Section */
.footer-logo-section img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-logo-section p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social a {
  color: #000000;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff4b2b;
}

/* Footer Columns */
.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  border-bottom: 2px solid #ff4b2b;
  display: inline-block;
  padding-bottom: 5px;
}
.footer-column img{
  height: 150px;   
  width: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 5px;
}

.footer-column h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #f0c14b;
}

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

.footer-column li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column li i {
  font-size: 0.8rem;
  color: #ff4b2b;
}

.footer-column a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ff4b2b;
}

/* Footer Bottom */
.footer-bottom {
  background: #003a45;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}



/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #20b958;
    transform: scale(1.1);
}




/* SUB PAGE HEADER */
.sub-header {
  position: relative;
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('image/about-bg.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.sub-header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* ABOUT PAGE */
.about-page {
  padding: 80px 10%;
  background: #fff;
}

.about-page h2 {
  margin-top: 30px;
  color: #002b5c;
}

/* SERVICES PAGE */
.services-page {
  padding: 80px 10%;
}

/* CONTACT PAGE */
.contact-page {
  padding: 80px 10%;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form button {
  width: 100%;
  background: #f0c14b;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #d9aa3d;
}

/* Initial state for elements that slide in from the left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Initial state for elements that slide in from the right */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active class when element is visible */
.slide-in-left.active,
.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}
.copyright {
  background-color: #000000;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  margin-top: 20px;
}

.copyright-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}


/* ====== Responsive: Desktop First ====== */

/* Large screens (above 1200px) */


/* Tablets (between 768px and 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .about-container,
  .stats-content {
    flex-direction: column;
    gap: 30px;
  }
  .about-image img,
  .stats-images img {
    width: 100%;
    max-width: 500px;
  }
  .services-grid,
  .features-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .navbar {
    padding: 16px 20px;
  }
  section {
    padding: 60px 5%;
  }
}
/* Show hamburger only on mobile */
@media (max-width: 767px) {
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #000;
    padding: 12px 10px;
    position: fixed;
    width: 100vw;
    z-index: 1101;
  }
  .logo {
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    gap: 2px;
    max-width: 68vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: static;
    cursor: pointer;
    z-index: 1201;
  }
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 300px;
    height: 100vh;
    background: #000;
    box-shadow: -8px 0 30px rgba(0,0,0,0.17);
    padding: 60px 0 0 0;
    display: none;
    z-index: 1200;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    margin-bottom: 32px;
    padding-left: 32px;
  }
  .nav-links li:last-child {
    margin-bottom: 0;
  }
  .nav-links a {
    color: #fff;
    font-size: 1.4rem;
    border-radius: 12px;
    display: block;
    padding: 18px 0 8px 0;
    background: transparent;
    transition: background 0.18s;
    text-align: left;
    width: 100%;
  }
  .nav-links a:hover,
  .nav-links li.active a {
    background: #ff0000;
    color: #fff;
  }
}


@media (max-width: 767px) {
  .footer-image {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 98%;
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .company-break {
    display: block;
  }
}
@media (min-width: 768px) {
  .company-break {
    display: inline;
  }
}

/* Mobile devices (767px and below) */
@media (max-width: 767px) {
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    background: #ffffff;
    padding: 12px 10px;
    z-index: 1101;
  }
  .logo { max-width: 68vw; }
  .hamburger { display: flex; z-index: 1201; }
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 300px;
    height: 100vh;
    background: #000;
    box-shadow: -8px 0 30px rgba(0,0,0,0.17);
    padding: 60px 0 0 0;
    display: none;
    z-index: 1200; /* Ensure above navbar */
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    color: #fff;
    font-size: 1.4rem;
    padding: 18px 0 8px 32px;
    display: block;
    width: 100%;
}
  .about-section {
  padding: 24px 3%;
}

.about-container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0;
}

.about-image {
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
}

.about-image img {
  width: 90vw;
  max-width: 340px;
  margin-bottom: 8px;
}

.about-content {
  padding: 0 5px;
  max-width: 100%;
  text-align: center;
}

.about-content h2 {
  font-size: 1.1rem;
}

.about-content p {
  font-size: 0.98rem;
}

  .services-grid,
  .features-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .about-container,
  .stats-content {
    flex-direction: column;
    gap: 24px;
    padding: 18px 0;
  }
  .about-image img,
  .stats-images img {
    width: 100%;
    max-width: 300px;
  }
  .card-image img {
    height: 180px;
  }
  .testimonials-section {
  padding: 36px 3%;
}

.testimonials-container,
.testimonial-content {
  max-width: 100%;
  padding: 16px 8px;
}

.testimonial-card.active {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.testimonial-image img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.testimonial-text {
  padding-top: 10px;
  text-align: center;
}

.testimonial-rating {
  justify-content: center;
}
  .footer-top-content,
  .footer-container {
    flex-direction: column;
    gap: 18px;
    width: 98%;
    padding: 10px 0;
  }
  .section-heading h2,
  .section-header h2,
  .features-highlight h2 {
    font-size: 1.35rem;
  }
  .hero-content h1 {
    font-size: 1.2rem;
  }
  .btn, .btn-outline {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
  section {
    padding: 36px 3%;
  }
  .testimonial-content {
    padding: 25px 7px;
    min-height: 260px;
  }
  .testimonial-image img {
    width: 100px;
    height: 100px;
  }
  .footer-column h3, .footer-column h4 {
    font-size: 1rem;
    padding-bottom: 2px;
  }
  .footer-image img {
    width: 90px;
  }
}

