* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: #000;
  /* background-image: url(./asset/Images/bg.jpg); */

}

/* Header Styles */
.header {
  background-color: #0b1040;
  /* Dark blue from the image */
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
} 

/* Logo Styles */
.logo img {
  width: 222px;

}

.logo p {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Navigation Menu Styles */
.nav-menu ul {
  list-style: none;
  display: flex;
}

.nav-menu ul li {
  margin-left: 25px;
  /* Spacing between menu items */
}

.nav-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #66ccff;
  /* Lighter blue on hover */
}

/* Get Details Button */
.get-details-btn {
  background: linear-gradient(to right, #613dff, #ff3e57);
  /* Green color from the image */
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.get-details-btn:hover {
  background-color: #218838;
  /* Darker green on hover */
}

/* Hamburger Menu (Hidden by default on desktop) */
.hamburger-menu {
  display: none;
  font-size: 2em;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-menu ul li {
    margin-left: 18px;
    /* Slightly reduce spacing for tablets */
  }
}

@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .logo {
    margin-right: auto;
    /* Push logo to the left */
  }

  .nav-menu {
    flex-basis: 100%;
    /* Take full width */
    order: 3;
    /* Move below the button on smaller screens */
    display: none;
    /* Hide by default */
    text-align: center;
    background-color: #1a1e36;
    /* Same background for dropdown */
    padding: 10px 0;
    position: absolute;
    top: 80px;
    /* Adjust based on header height */
    left: 0;
    width: 100%;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    display: block;
    /* Show when active */
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu ul li {
    margin: 10px 0;
    /* Vertical spacing for mobile menu */
  }

  .get-details-btn {
    order: 2;
    /* Position button before hamburger */
    margin-left: auto;
    /* Push button to the right */
  }

  .hamburger-menu {
    display: block;
    /* Show hamburger icon */
    order: 1;
    /* Position hamburger first, then button */
    margin-left: 20px;
    /* Spacing from button */
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 15px;
  }

  .logo h1 {
    font-size: 1.8em;
  }

  .logo p {
    font-size: 0.7em;
  }

  .logo img {
    width: 142px;

  }

  .get-details-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .nav-menu {
    top: 70px;
    /* Adjust for smaller header height */
  }
}

/* Main Header CSS */

.hero-section {
  background: url('./asset/Images/Ethical_Hacking_Exposed_For_Beginners.jpg') no-repeat center center/cover;
  padding: 50px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.left-content {
  flex: 1 1 55%;
  color: #fff;
}

.badges {
  margin-bottom: 15px;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 14px;
  margin-right: 10px;
  color: white;
}

.badge.grey {
  background-color: #5a5a5a;
}

.badge.red {
  background-color: #e60023;
}

.left-content h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.left-content h1 {
  font-size: 32px;
  color: #ffd700;
  margin: 15px 0;
}

.left-content h1 strong {
  text-decoration: underline;
}

.left-content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

.left-content ul {
  margin-bottom: 25px;
}

.left-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.brochure-btn {
  background: linear-gradient(to right, #613dff, #ff3e57);
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.brochure-btn:hover {
  background: linear-gradient(to right, #613dff, #ff3e57);
  ;
}

.right-form {
  flex: 1 1 35%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  color: #000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.right-form h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.right-form p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.right-form input,
.right-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.right-form button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.right-form button:hover {
  background-color: #cc5200;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-content,
  .right-form {
    flex: 1 1 100%;
  }

  .left-content h1 {
    font-size: 24px;
  }
}


/* CEH Course details */

.ceh-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0b1040 0%, #0b1040 50%, #102046 100%);
}

.ceh-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ceh-left img {
  width: 100%;
  max-width: 480px;
  /* border: 5px solid #fff;
  border-radius: 6px; */
}

.ceh-right {
  flex: 1;
  max-width: 600px;
}

.ceh-right .subtitle {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ceh-right h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  color: rgb(255, 255, 255);
}

.ceh-right p {
  font-size: 16px;
  color: #dcdcdc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.ceh-right ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.ceh-right ul li {
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 16px;
  color: white;
}

.cta-button {
  background: linear-gradient(to right, #613dff, #ff3e57);
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s ease;
}

.cta-button:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .ceh-container {
    flex-direction: column;
    text-align: center;
  }

  .ceh-left img {
    max-width: 100%;
  }

  .ceh-right h2 {
    font-size: 24px;
  }

  .ceh-right p,
  .ceh-right ul li {
    font-size: 15px;
  }

  .cta-button {
    display: inline-block;
    margin-top: 15px;
  }
}


/* Labs Gallery  */

.lab-carousel-section {
    padding: 60px 20px;
    text-align: center;
    background-image: url(./asset/Images/facts-bg.png);
    background-position: top;
    background-repeat: no-repeat;
}

.lab-carousel-section .section-title {
    font-size: 2.4em;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: bold;
}


/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1200px; /* Max width of the entire carousel block */
    margin: 0 auto;
    display: flex;
    align-items: center; /* Vertically center buttons with track */
    padding: 0 40px; /* Padding for buttons to sit outside the track wrapper */
}

/* Carousel Navigation Buttons */
.carousel-nav {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2.5em;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.carousel-nav:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-nav:disabled {
    background-color: rgba(0, 0, 0, 0.2);
    cursor: not-allowed;
}

/* Carousel Track Wrapper - The visible window */
.carousel-track-wrapper {
    overflow: hidden; /* Crucial: Hides overflowing items */
    flex-grow: 1; /* Allows it to take available space */
    margin: 0 20px; /* Space between buttons and track */
}

/* Carousel Track - This element slides */
.carousel-track {
    display: flex;
    /* Use gap for spacing between items */
    gap: 20px; /* Gap between individual carousel items */
    transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
}

/* Carousel Item - Each image container */
.carousel-item {
    flex-shrink: 0; /* Prevent items from shrinking below their content size */
    width: calc(100% / 3 - (20px * 2 / 3)); /* Default to 3 items per view + gaps */
    /* This calculation is (total width / number of items) - (total gap space / number of items) */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Hide anything spilling out of the item */
    display: flex; /* For centering image */
    justify-content: center;
    align-items: center;
    min-height: 200px; /* Minimum height for consistency */
}

.carousel-item img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    object-fit: cover; /* Cover the item area, potentially cropping */
    border-radius: 8px; /* Match parent border-radius */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .carousel-item {
        width: calc(100% / 2 - 10px); /* 2 items per view on tablets */
        /* For 2 items with 20px gap, it's (100% / 2) - (20px / 2) */
    }
}

@media (max-width: 768px) {
    .lab-carousel-section {
        padding: 40px 10px;
    }
    .lab-carousel-section .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .carousel-container {
        padding: 0 10px; /* Reduce padding for buttons */
    }
    .carousel-nav {
        font-size: 2em;
        width: 40px;
        height: 40px;
        margin: 0 5px; /* Adjust button margin */
    }
    .carousel-track-wrapper {
        margin: 0 10px; /* Smaller space between buttons and track */
    }
    .carousel-item {
        width: 100%; /* 1 item per view on mobile */
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .lab-carousel-section .section-title {
        font-size: 1.8em;
    }
    .carousel-container {
        padding: 0 5px;
    }
    .carousel-nav {
        font-size: 1.8em;
        width: 35px;
        height: 35px;
    }
}

/* course css */

.course-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  background-image: url(./asset/Images/video-bg.png);
  background-position: center;
  background-repeat:no-repeat ;
}

.section-title {
  font-size: 52px;
  color: #fff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-top: 30px;
}

.section-title .underline {
  display: block;
  width: 120px;
  height: 5px;
  background-color: red;
  margin: 8px auto 0;
  border-radius: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.course-card {
  background-color: #e5e7f3;
  border: 2px solid red;
  border-radius: 12px;
  width: 45%;
  min-width: 300px;
  padding: 43px;
  text-align: left;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon {
  font-size: 26px;
  color: #fff;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  flex-shrink: 0;
}

.content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: bold;
}

.content p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #000;
}

.apply-btn {
  background-color: red;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .course-card {
    width: 90%;
  }

  .section-title {
    font-size: 28px;
  }
}

/* Module  */

.course-modules-two-column {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.Module-title .underline {
  display: block;
  width: 120px;
  height: 5px;
  background-color: red;
  margin: 14px auto 0;
  border-radius: 10px;
  padding-top: 8px;
}

.course-modules-two-column h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 40px;
}

.module-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.module-column {
  flex: 1;
  min-width: 280px;
}

.module {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.module-header {
  padding: 15px 20px;
  cursor: pointer;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-header h3 {
  margin: 0;
  font-size: 1rem;
}

.plus-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
  background-color: red;
  color: white;
}

.module.open .plus-icon {
  transform: rotate(45deg);
  background-color: red;
}

.module-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #f4f4f4;
  color: #000000;
  padding: 0 20px;
}

.module.open .module-content {
  max-height: 300px;
  padding: 15px 20px;
}

@media (max-width: 768px) {
  .module-columns {
    flex-direction: column;
  }
}

/* After course apportunity */

.features-section {
  max-width: 100%;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  background-color: #000b41;
  border-top: 1px solid white;
}

.features-title {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.features-title .underline {
  display: block;
  width: 120px;
  height: 5px;
  background-color: red;
  border-radius: 10px;
  margin: 8px auto 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  justify-self: center;
}

.feature-box {
  background-color: #e5e7f3;
  border: 2px solid red;
  border-radius: 12px;
  padding: 30px 20px;
  width: 250px;
  text-align: center;
}

.feature-icon {
  background-color: red;
  color: white;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .features-title {
    font-size: 28px;
  }

  .feature-box {
    width: 90%;
  }
}

.timeline-section {
  padding: 60px 20px;
  background-color: #000b41;
  color: rgb(255, 255, 255);
  font-family: 'Poppins', sans-serif;
}

.timeline-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.timeline-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.module-container {
  width: 100%;

  height: auto;
  display: flex;
  justify-content: center;
  display: flex;

}

.module-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline {
    margin-left: 30px;
    padding-left: 20px;
  }

  .timeline-title {
    font-size: 26px;
  }

  .timeline-content h3 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 14px;
  }

  .timeline-point {
    left: -31px;
  }
}

/* Tools we cover */

.tools-section {
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid white;
}

.section-title {
  font-size: 2.4em;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 5px;
  background-color: red;
  left: 50%;
  bottom: -11px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.download-btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(to right, #613dff, #ff3e57);
  ;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
  background-color: white;
  margin-top: 20px;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

/* .logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
} */

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 100px;
  width: 150px;
}

/* Exam Details */

.exam-details-section {
  padding: 50px 20px;
}

.exam-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.exam-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.exam-info {
  max-width: 600px;
}

.exam-info h2 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 20px;
}

.exam-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: white;
}

.exam-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.exam-info h3 {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.exam-info p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 10px;
}

.buy-btn {
  display: inline-block;
  background: linear-gradient(to right, #613dff, #ff3e57);
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: 0.3s;
}

.buy-btn:hover {
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .exam-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .exam-info {
    max-width: 90%;
  }

  .exam-image img {
    max-width: 300px;
  }
}

/* FAQ */

.faq-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-image: url(./asset/Images/facts-bg.png);

}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: white;
  padding-bottom: 20px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #000000;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding-left: 12px;
}

.faq-question span {
  margin-right: 12px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #000000;
  background-color: #ffffff;
  font-size: 0.99em;
  padding-left: 12px;
  font-weight: bold;
  line-height: 2;
  border-top: 1px solid gray;

}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 8px;
}

.faq-item .icon {
  color: #ffffff;
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  color: #ffffff;
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}

/* Testimonial */

/* Testimonial Section Styling */
.testimonial-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000000; /* Slightly darker background for the section */
    background-image: url(./asset/Images/cases-imgs\ \(1\).png);
    background-position: top;
    background-repeat: no-repeat;
}

.testimonial-section .subtitle {
    font-size: 1.1em;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-section h2 {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Slider Wrapper - The visible window */
.slider-wrapper {
    max-width: 900px; /* Max width of the visible slider area */
    margin: 0 auto 40px auto; /* Center it and add space below */
    overflow: hidden; /* Crucial: Hides anything outside this container */
    position: relative; /* For potential future absolute positioning of arrows */
}

/* Testimonial Slider - The moving track */
.testimonial-slider {
    display: flex;
    transition: transform 0.6s ease-in-out; /* Smooth sliding animation */
    /* The width of this track will be set dynamically by JS */
}

/* Testimonial Card */
.testimonial-card {
    flex-shrink: 0; /* Prevents cards from shrinking */
    width: 100%; /* Default to 1 card per view for mobile */
    max-width: 400px; /* Max width for individual card */
    margin: 0 10px; /* Horizontal spacing between cards */
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card .user-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ff6347; /* Accent border */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testimonial-card h3 {
    font-size: 1.4em;
    color: #1a1e36;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows review text to take available space for consistent card height */
}

.testimonial-card .google-badge {
    width: 100px; /* Adjust size as needed */
    height: auto;
    opacity: 0.8;
}

/* Dots Navigation */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active {
    background-color: #ff6347; /* Active dot color */
    transform: scale(1.2);
}

.dot:hover:not(.active) {
    background-color: #888;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .testimonial-section h2 {
        font-size: 2.2em;
    }
    .testimonial-card {
        padding: 25px;
        margin: 0 8px;
    }
    .testimonial-card h3 {
        font-size: 1.3em;
    }
    .testimonial-card p {
        font-size: 0.95em;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 15px;
    }
    .testimonial-section h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .testimonial-card {
        width: 100%; /* Ensure only one card is fully visible */
        margin: 0 5px;
        padding: 20px;
    }
    .testimonial-card .user-img {
        width: 80px;
        height: 80px;
    }
    .testimonial-card h3 {
        font-size: 1.2em;
    }
    .testimonial-card p {
        font-size: 0.9em;
    }
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .testimonial-section .subtitle {
        font-size: 0.9em;
    }
    .testimonial-section h2 {
        font-size: 1.7em;
        margin-bottom: 30px;
    }
    .testimonial-card {
        padding: 15px;
        margin: 0 5px;
    }
    .testimonial-card .user-img {
        width: 70px;
        height: 70px;
    }
    .testimonial-card h3 {
        font-size: 1.1em;
    }
    .testimonial-card p {
        font-size: 0.85em;
    }
}

/* Footer */

.site-footer {
  background-color: #0b1040;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-logo {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.footer-section img {
  width: 222px;
  height: auto;
}

/* .footer-logo span {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 5px;
} */

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section p {
  line-height: 1.6;
  font-size: 14px;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  /* filter: brightness(0) invert(2); */
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-icons a {
    margin-right: 15px;
    margin-bottom: 10px;
  }
}