/*General Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body {
  /* scroll-behavior: smooth; */
  /* overflow-x: hidden; */
  font-family: Arial, sans-serif;
  width: 100%;
  overflow-y: auto;
  overscroll-behavior-y:auto;
  overflow-x: hidden;
}


/* Header Styles */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.top-image {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 1001;
}

.top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo */
.logo {
  font-size: clamp(20px, 4vw, 34px);
  font-weight: bold;
  color: #555;
}

.logo img {
  object-fit: contain;
  padding-left: clamp(20px, 5vw, 150px);
  height: 70px;
}

/* Navbar Styles */
.navbar {
  background-color: white;
  color: #555;
  position: fixed;
  width: 100%;
  height: auto;
  min-height: 80px;
  top: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: clamp(10px, 2vw, 20px);
  transition: all 0.3s ease;
  /* max-width: 1550px; */
  justify-self: center;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin-top: clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  /* gap: clamp(10px, 2vw, 15px); */
}

.nav-links li {
  margin: 0;
  position: relative;
  top: clamp(5px, 2vw, 15px);
  left: clamp(50px, 10vw, 200px);
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: clamp(14px, 2vw, 16px);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #f4a261;
}
.nav-links a.active {
  color: #f4a261; /* Orange color */
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-left: clamp(50px, 10vw, 200px);
}

.visit-btn {
  background-color: #f4a261;
  border: none;
  color: #fff;
  padding: clamp(6px, 2vw, 8px) clamp(20px, 4vw, 45px);
  font-size: clamp(12px, 2vw, 14px);
  margin-left: clamp(10px, 2vw, 30px);
  border-radius: 15px;
  cursor: pointer;
  height: clamp(35px, 5vw, 40px);
  transition: background-color 0.3s ease;
}

.visit-btn:hover {
  background-color: #f4a261;
}


/* Dropdown Menus */
.services-dropdown,
.web-designing-dropdown,
.school-management-dropdown {
  position: absolute;
  width: clamp(200px, 30vw, 250px);
  top: 100%; /* Open downward for "Services" dropdown */
  background-color: white;
  border-radius: 4px;
  box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
  display: none; /* Hide all dropdowns initially */
  z-index: 1002;
}

/* Links inside dropdown */
.services-dropdown span a,
.web-designing-dropdown span a,
.school-management-dropdown span a {
  display: block;
  padding: clamp(8px, 2vw, 10px);
  color: #555;
  text-decoration: none;
}

/* Hover Effects for Individual Dropdowns */
.services:hover .services-dropdown {
  display: block; /* Make "Services" dropdown visible on hover */
}

.web-designing-services:hover .web-designing-dropdown {
  display: block; /* Make "Web Designing" dropdown visible on hover */
}

.school-management:hover .school-management-dropdown {
  display: block; /* Make "School Management" dropdown visible on hover */
}

/* Web Designing Services Dropdown (on the right) */
.web-designing-services {
  position: relative;
}

.web-designing-services:hover .web-designing-dropdown {
  display: block;
  left: 100%; /* Position to the right of the parent */
  top: 0; /* Align directly on the same horizontal level */
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* School Management Dropdown (on the right) */
.school-management {
  position: relative;
}

.school-management:hover .school-management-dropdown {
  display: block;
  left: 100%; /* Position to the right of the parent */
  top: 0; /* Align directly on the same horizontal level */
  z-index: 1002;
}

/* Styling for Nested Dropdown Items */
.school-management-dropdown span,
.web-designing-dropdown span {
  display: block;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
}

/* Nested Links */
.school-management-dropdown a,
.web-designing-dropdown a {
  padding: 10px;
  display: block;
  color: #333;
  text-decoration: none;
}

/* Hover Effects for Links */
.services-dropdown span a:hover,
.web-designing-dropdown span a:hover,
.school-management-dropdown span a:hover {
  background-color: #f5f5f5;
  color: #f4a261;
}

/* Optional: Styling for the main menu links */
a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

/* a:hover {
  background-color: #f0f0f0;
} */

/* Additional Styles for Dropdowns */
.services-dropdown,
.web-designing-dropdown,
.school-management-dropdown {
  display: none;
  position: absolute;
  top: 100%; /* Open downward for "Services" dropdown */
  width: clamp(200px, 30vw, 250px);
  background-color: white;
  border-radius: 4px;
  box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

/* Adjustments for Nested Dropdowns */
.school-management-dropdown {
  left: 100%; /* Align to the right of the parent item */
  top: 0; /* Position it directly below the parent item */
  display: none;
}

/* Hover Color */
.services-dropdown span a:hover,
.web-designing-dropdown span a:hover,
.school-management-dropdown span a:hover {
  color: #f4a261;
}


/* Animated Section */
.animated-section {
  position: relative;
  top: 70px;
  width: 100%;
  height: clamp(150px, 30vw, 200px);
  padding-top: clamp(10px, 2vw, 20px);
  text-align: center;
  border-radius: 15px;
  background: url("./images/breadcrumb.png") center/cover no-repeat;
  background-size: 100% 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: clamp(150px, 15vw, 130px);
}

.animated-section h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: bold;
  animation: fadeInUp 1s ease;
}

.animated-section p {
  margin-top: clamp(10px, 2vw, 15px);
  font-size: clamp(10px, 2vw, 1.1rem);
  max-width: min(800px, 90vw);
  color: #385469;
  animation: fadeInUp 1.5s ease;
  padding: 0 clamp(10px, 3vw, 20px);
}

.animated-section .buttons {
  margin-top: clamp(15px, 3vw, 25px);
  display: flex;
  gap: clamp(10px, 2vw, 15px);
  animation: fadeInUp 2s ease;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 clamp(10px, 3vw, 20px);
}

.animated-section .buttons a {
  padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
  border-radius: 5px;
  text-decoration: none;
  background-color: #f4a261;
  color: white;
  white-space: nowrap;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  font-size: clamp(20px, 4vw, 24px);
  cursor: pointer;
  z-index: 1003;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .navbar-container {
      padding: 0 20px;
  }

  .nav-links li {
      left: clamp(20px, 5vw, 100px);
  }

  .nav-actions {
      padding-left: clamp(20px, 5vw, 100px);
  }
}

@media (max-width: 768px) {
  .navbar {
      height: auto;
  }

  .hamburger-menu {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: white;
      padding: 10px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      margin: 10px 0;
      text-align: center;
      left: 0;
  }

  .nav-actions {
      width: 100%;
      justify-content: center;
      padding-left: 0;
      margin-top: 10px;
  }

  .visit-btn {
      margin-left: 0;
  }

  .services-dropdown,
  .blog-dropdown,
  .web-designing-dropdown {
      position: static;
      width: 100%;
      margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .navbar {
      top: 30px;
  }

  .top-image {
      height: 60px;
  }

  .animated-section {
      margin-top: 100px;
  }

  .logo img {
      padding-left: 10px;
  }

  .visit-btn {
      padding: 6px 15px;
      font-size: 14px;
  }
}
/* ===================================================hero section start============================================================= */
/* General styling for the home-hero-section */
.home-hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden; /* Prevent overflow */
  display: flex;
  justify-content: flex-start; /* Align content to the left */
  align-items: center; /* Vertically center the content */
  top: 65px;
  max-width: 1520px;
  justify-self: center;
}

/* Styling for the hero image */
.home-hero-section img {
  width: 100%; /* Make the image span the full width of the container */
  height: 100%; /* Ensure the image takes full height */
  object-fit: cover; /* Ensures the image covers the area without stretching */
  object-position: center; /* Centers the image */
  z-index: 1; /* Ensure the image stays in the background */
}

/* Optional: Apply a background overlay to improve text visibility */
.home-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; /* Ensures the overlay stays above the image */
}

/* Styling for the content within the hero section */
.hero-content {
  position: absolute;
  /* bottom: 300px; */
  left: 20px; /* Adjust the position to the left side */
  z-index: 3; /* Ensures the text stays above the overlay */
  color: black;
  max-width: 50%; /* Set a max-width for large screens */
  padding: 20px;
}

/* Heading Styling */
.hero-content h1 {
  font-size: 2.2rem; /* Larger font for heading */
  font-weight: bold;
  margin-bottom: 20px;
}

/* Subheading Styling */
.hero-content p {
  font-size: 1.25rem; /* Adjust for readability */
  margin-bottom: 30px;
  text-align: justify;
}

/* Call-to-Action Button Styling */
.cta-button {
  height: 50px;
  width: 200px;
  background-color: orange; /* Darker shade on hover */
  padding: 15px 30px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  height: 50px;
  width: 200px;
  background-color: orange; /* Darker shade on hover */
  color: white;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 60%; /* Slightly wider content on medium screens */
  }

  .hero-content h1 {
    font-size: 2.5rem; /* Adjust font size on medium screens */
  }

  .hero-content p {
    font-size: 1.1rem; /* Adjust font size on medium screens */
  }
}

@media (max-width: 768px) {
  /* For smaller tablets and large mobile screens */
  .home-hero-section {
    height: 80vh; /* Adjust the height for smaller screens */
  }

  .hero-content {
    max-width: 70%; /* Make content width larger on smaller screens */
    left: 10px; /* Adjust left padding */
  }

  .hero-content h1 {
    font-size: 2rem; /* Reduce heading size for smaller screens */
  }

  .hero-content p {
    font-size: 1rem; /* Reduce paragraph size for smaller screens */
  }

  .cta-button {
    padding: 12px 25px; /* Smaller button size for smaller screens */
    font-size: 0.9rem; /* Adjust font size for smaller buttons */
  }
}

@media (max-width: 480px) {
  /* For very small mobile screens */
  .home-hero-section {
    height: 70vh; /* Further reduce the height */
  }

  .hero-content {
    max-width: 80%; /* Increase content width for mobile */
    left: 5px; /* Adjust left padding */
  }

  .hero-content h1 {
    font-size: 1.8rem; /* Reduce font size for mobile screens */
  }

  .hero-content p {
    font-size: 0.9rem; /* Further reduce paragraph font size for mobile */
  }

  .cta-button {
    padding: 10px 20px; /* Smaller button size */
    font-size: 0.8rem; /* Adjust font size for very small screens */
  }
}


/* Section Styling */
/*--------------------------------------------------KIDS LEARNING SECTION----------------------------------------------*/

.home-second-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 120px;
  min-height: auto;
  gap: 60px;
  position: relative;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  max-width: 1500px;
  justify-self: center;
}

.home-second-page__media {
  position: relative;
  flex-shrink: 0;
  /* animation: fadeIn 1.5s ease-out; */
}

.home-second-page__circle {
  width: 550px;
  height: 550px;
  /* background: linear-gradient(135deg, #ffddb4, #e49825); */
  /* border-radius: 50%; */
  position: relative;
  overflow: hidden;
}

.home-second-page__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 50px;
}

.home-second-page__thumbnail {
  position: absolute;
  top: 10%;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid white;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.home-second-page__thumbnail-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-second-page__decoration {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  /* animation: float 3s infinite ease-in-out; */
}

.home-second-page__decoration--bottom { bottom: 15%; left: -5%; }
.home-second-page__decoration--top { top: 20%; left: -8%; }
.home-second-page__decoration--right { top: 40%; right: -5%; }

.home-second-page__star {
  position: absolute;
  font-size: 24px;
  color: #7c4dff;
  animation: twinkle 2s infinite ease-in-out;
}

.home-second-page__star--top { top: 10%; right: 15%; }
.home-second-page__star--bottom { bottom: 20%; right: 25%; }

.home-second-page__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.home-second-page__dot--red { top: 25%; left: 10%; background: #FF6B6B; }
.home-second-page__dot--blue { bottom: 15%; right: 20%; background: #4169E1; }

.home-second-page__content {
  width: 100%;
  /* margin-left: 100px; */
}

.home-second-page__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-top: 40px;
  /* margin-left: 250px; */
}

.home-second-page__dots {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.home-second-page__dots-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.home-second-page__text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: justify;
}

.home-second-page__button {
  background-color: orange;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  /* transition: transform 0.3s ease; */
  margin-top: 20px;
}



@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .home-second-page {
      padding: 50px;
  }
  .home-second-page__circle {
      width: 450px;
      height: 450px;
  }
  .home-second-page__thumbnail {
      width: 100px;
      height: 100px;
  }
}

@media screen and (max-width: 992px) {
  .home-second-page {
      flex-direction: column-reverse;
      text-align: center;
      padding: 30px;
      gap: 40px;
  }
  .home-second-page__content {
      max-width: 100%;
  }
  .home-second-page__dots {
      justify-content: center;
  }
  .home-second-page__decoration {
      display: none;
  }
  .home-second-page__star {
      display: none;
  }
  .home-second-page__circle {
      width: min(400px, 90vw);
      height: min(400px, 90vw);
  }
  .home-second-page__thumbnail {
      width: 80px;
      height: 80px;
  }
}

@media screen and (max-width: 576px) {
  .home-second-page {
      padding: 20px;
  }
  .home-second-page__circle {
      width: min(300px, 90vw);
      height: min(300px, 90vw);
  }
  .home-second-page__thumbnail {
      width: 60px;
      height: 60px;
  }
  .home-second-page__text {
      margin-bottom: 20px;
  }
  .home-second-page__button {
      padding: 12px 30px;
  }
  .home-second-page__title{
    margin-right: 35px;
  }
}
/* ============================================================== */

/* General Reset */
.hero-page-entire-cards {
  /* background-color: #f9f9f9; */
  background: linear-gradient(135deg, #fff9c4, #e0f7fa); /* Peach to orange gradient */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.hero-page-entire-cards .hero-page__cards{
  max-width: 1200px;
  justify-self:center ;
}

.key-features-heading h1 {
  text-align: center;
  color: #ff9800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
}

.key-features-paragraph {
  text-align: justify;
  font-size: clamp(1rem, 4vw, 1.2rem);
  margin: 0 10%;
  color: #444;
  line-height: 1.6;
}

.home-page-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: calc(30% - 20px);
  text-align: center;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.home-page-card:hover {
  transform: translateY(-5px);
  color: orange;
}

.home-page-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.home-page-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.home-page-description {
  font-size: 1em;
  color: #666;
}

@media (max-width: 768px) {
  .home-page-card {
    width: 100%;
  }

  .key-features-paragraph {
    margin: 0 5%;
  }
}


/* ============= landing container started ================================ */


.landing-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;  /* Center content horizontally */
  padding: 40px 20px;
  /* background: linear-gradient(135deg, #FFE5B4, #fd7e14); */
  /* background: linear-gradient(135deg, #fff9c4, #e0f7fa);  */
  gap: 20px;
  position: relative;
  min-height: auto;
  box-sizing: border-box;
  max-width: 1500px;
  justify-self: center;
}

.home-third-content-image {
  display: flex;
  justify-content: space-evenly;  /* Center content horizontally */
  align-items: center;  /* Center content vertically */
  gap: 20px;
  flex-wrap: wrap;
  width: 100%; /* Ensure it takes full available width */
}

.text-content {
  max-width: 100%;
  flex: 1;
  min-width: 280px; 
  margin-left: 100px;
}

.text-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #333;
}

.text-content p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: justify;
  
}

.action-button {
  background-color: orange;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  font-size: 1em;
}

.action-button:hover {
  transform: scale(1.05);
  background-color: #ff9900;
}

.image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px; /* Allow flexibility but set a max width */

}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  /* margin-left: 150px; */
}

/* Media Queries for responsiveness */

/* Tablet and below (max-width: 768px) */
@media (max-width: 768px) {
  .landing-container {
      flex-direction: column;
      align-items: center;  /* Center content vertically on smaller screens */
      padding: 20px;  /* Adjust padding for smaller screens */
  }

  .home-third-content-image {
      flex-direction: column;
      gap: 30px;  /* Adjust gap for better spacing on smaller screens */
  }

  .text-content {
      order: 2;
      max-width: 90%;  /* Ensure text doesn't overflow the screen */
      margin: 0 auto; /* Center text content */
  }

  .image-wrapper {
      order: 1;
      max-width: 90%;  /* Adjust the image width to fit smaller screens */
  }

  .text-content h1 {
      font-size: 2em;  /* Adjust font size for smaller screens */
  }

  .text-content p {
      font-size: 1rem;  /* Adjust font size for better readability */
  }

  .action-button {
      padding: 10px 20px;  /* Adjust button size for smaller screens */
  }
}

/* Small screens (max-width: 480px) */
@media (max-width: 480px) {
  .text-content h1 {
      font-size: 1.8em;  /* Further reduce font size on very small screens */
  }

  .text-content p {
      font-size: 0.95rem;  /* Adjust text size on very small screens */
  }

  .action-button {
      font-size: 0.9em;  /* Reduce button size further */
  }
}

/* ======================================================= */
/* Base Styles (For large screens like desktops) */
.preview-section {
  height: 50%;
  width: 90%;
  background: linear-gradient(135deg, #fff9c4, #e0f7fa);
  margin-left: 80px;
  border-radius: 20px;
  padding: 20px;

}
.preview-section .preview-section-images{
  max-width: 1400px;
  justify-self: center;
}

.preview-section-heading {
  font-size: 2.5em;
  text-align: center;
}

.preview-container {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  margin-top: 20px;
}

.preview-container img {
  height: 350px;
  width: 25%;
  max-width: 100%;  /* Ensures images resize on smaller screens */
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  /* padding-right: 50px; */
}

.preview-container img:hover {
  transform: scale(1.05);
}

/* Popup Modal Styling */
.popup-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}

.popup-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-image {
  max-width: 80%;
  max-height: 80%;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
  position: relative;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.left-arrow {
  left: 20px;
  transform: translateY(-50%);
}

.right-arrow {
  right: 20px;
  transform: translateY(-50%);
}

/* Responsive Design */

/* For Tablets and Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .preview-section {
    margin-left: 20px;
    padding: 15px;
  }

  .preview-section-heading {
    font-size: 2em;
  }

  .preview-container {
    gap: 15px;
  }

  .preview-container img {
    width: 45%;  /* Resize images for smaller screens */
    margin-left: 0;
  }

  .popup-image {
    max-width: 90%;
  }

  .arrow-btn {
    font-size: 30px;
  }
}

/* For Small Screens (Mobile Devices max-width: 600px) */
@media (max-width: 600px) {
  .preview-section {
    margin-left: 10px;
    padding: 10px;
  }

  .preview-section-heading {
    font-size: 1.8em;
  }

  .preview-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .preview-container img {
    width: 80%;  /* Images take more space on smaller screens */
    height: auto;
    margin-left: 0;
  }

  .popup-image {
    max-width: 95%;
  }

  .arrow-btn {
    font-size: 25px;
  }
}

/* For Large Screens (Desktops and larger Tablets min-width: 1025px) */
@media (min-width: 1025px) {
  .preview-section {
    margin-left: 80px;
    padding: 20px;
  }

  .preview-section-heading {
    font-size: 2.5em;
  }

  .preview-container {
    gap: 20px;
  }

  .preview-container img {
    width: 30%;
    max-width: 100%;
    height: auto;
    /* margin-left: 50px; */
  }

  .popup-image {
    max-width: 60%;
    max-height: 70%;
  }

  .arrow-btn {
    font-size: 40px;
  }
}


/* ========================================================= */


/* FAQ Section Styles */
.faq-section {
  padding: 60px 20px;
  /* background-color: #f9f9f9; */
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #333; /* Darker text for readability */
  
  font-size: 2.5rem;
  font-weight: 600;
  /* margin-bottom: 40px; */
  color: #F4A261;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-toggle:hover {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 10px 0;
  font-size: 1rem;
  color: #555;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .faq-item {
    padding: 15px;
  }

  .faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}

