/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /* animation for blogs container */
  --first-color: hsl(82, 60%, 28%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);
  --h2-font-size: 1.25rem;
  --small-font-size: 0.813rem;

  --secondary-color: #2c3afc;
  --white-color: #ffffff;
  --light-color: #ced6e0;
  --dark-color: #2f3542;
  --box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px -10px;

  --header-height: 4.5rem;
  --primary-color: #161616;
  --text-dark: #000000;
  --text-light: #767268;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1600px;
  --header-font: "Oswald", sans-serif;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
  display: flex;
}

html,
body {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1650px;
  margin-inline: 1.5rem;
}

/*==================================================== MAIN SECTION ========================================*/
main {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1150px) {
  section {
    padding: 0rem 0;
  }
}

/*================================================== BANNER SECTION ==================================================*/
.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  transition: background-color 0.5s ease;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slides {
  display: flex;
  height: 100%;
  width: 300%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Desktop view: flex row */
.banner__content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  max-width: 1800px;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0 2rem;
}

/* Banner image on right (desktop) */
.banner__image {
  flex: 0 0 200px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  order: 2; /* image on right */
}

.banner__image img {
  width: 800px;
  height: 800px;
  object-fit: contain;
}

/* Caption (text) on left (desktop) */
.caption {
  flex: 1 1 450px;
  text-align: start;
  order: 1; /* text on left */
}

.caption h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.caption h1 span {
  color: var(--secondary-color);
}

.caption h6 {
  color: #848484;
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 2rem;
  text-align: justify;
}

.banner__socials {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  font-size: 2.6rem;
  color: var(--secondary-color);
}

.banner__socials a {
  color: inherit;
  transition: color 0.3s ease;
}

.banner__socials a:hover {
  color: var(--primary-color);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 0.5rem 1rem 0 0;
}

.button:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

.button--outline {
  background-color: var(--white);
  color: var(--black-color);
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.button--outline:hover {
  background-color: var(--black-color);
  color: var(--white);
}

/* Navigation Dots */
.navigation-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 3;
  gap: 0.5rem;
}

.navigation-dots .dot {
  height: 12px;
  width: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.navigation-dots .dot.active {
  background-color: #277bef;
}

/* Animations */
@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.caption h1,
.caption p,
.caption .button {
  opacity: 1;
}

.caption p {
  color: #818181;
}

.animate-caption h1 {
  opacity: 0;
  animation: slideFromLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

.animate-caption p {
  opacity: 0;
  animation: slideFromLeft 1s ease-out forwards;
  animation-delay: 0.5s;
}

.animate-caption .button {
  opacity: 0;
  animation: slideFromLeft 1s ease-out forwards;
  animation-delay: 0.8s;
}

/*============================================ RESPONSIVE DESIGN =================================================*/

/* Tablet View: up to 1124px */
@media screen and (max-width: 1124px) {
  .banner {
    height: auto;
    padding: 1rem 0;
  }

  /* Stack content vertically */
  .banner__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: static;
    transform: none;
  }

  /* Image on top */
  .banner__image {
    order: -1; /* image first */
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  .banner__image img {
    width: 400px;
    height: auto;
  }

  /* Text below image */
  .caption {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .caption h1 {
    font-size: 3rem;
  }

  .caption h6 {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }

  .button {
    padding: 0.7rem 1.6rem;
    font-size: 1rem;
  }

  .banner__socials {
    justify-content: center;
    margin-top: 2rem;
  }

  .navigation-dots {
    position: static;
    margin-top: 2rem;
    justify-content: center;
  }
}

/* Mobile View: up to 768px */
@media screen and (max-width: 768px) {
  .banner__content {
    flex-direction: column;
    padding: 1rem 1rem;
  }

  /* Image on top */
  .banner__image {
    order: -1; /* image first */
    justify-content: center;
    align-items: center;
  }

  .banner__image img {
    width: 300px;
    height: auto;
  }

  .caption h1 {
    font-size: 2.4rem;
  }

  .caption h6 {
    font-size: 0.95rem;
    line-height: 1.6rem;
  }

  .banner__socials {
    font-size: 1.6rem;
    justify-content: center;
  }

  .navigation-dots {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
  }

  .navigation-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
  }

  .navigation-dots .dot.active {
    background-color: #ff4c4c;
  }
}

/*======================================================= ABOUT COMPANY SECTION ====================================================*/
.about-company {
  width: 100%;
  padding: 1rem 0;
  background: linear-gradient(90deg, #fdfdfe, #d2d3fe);
  box-shadow: 0px 20px 20px rgba(255, 255, 255, 0.15);
  margin: 5px 0px;
}

.about-company__container {
  max-width: 1800px;
  margin: auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.section-title span {
  color: var(--secondary-color, #e91e63);
}

.about-company__row {
  display: flex;
  gap: 2rem;
  position: relative;
  flex-wrap: wrap;
}

/* Vertical Divider Line */
.about-company__row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #ccc;
  transform: translateX(-50%);
}

/* Left & Right Column */
.about-left,
.about-right {
  flex: 1 1 48%;
  box-sizing: border-box;
}

.about-left {
  padding-right: 2rem;
}

.about-right {
  padding-left: 2rem;
}

/* About Column Box */
.about-col {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-details {
  height: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.about-col:hover {
  transform: translateY(-5px);
}

.about-col h6 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #5e5e5e;
}

.about-col p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.about-col a span {
  font-weight: 500;
  color: #073ca4;
  text-decoration: underline;
}

.read-more-container {
  text-align: center;
  margin-top: 1.5rem;
}

/* Read More Button */
.read-more-btn {
  background-color: var(--secondary-color, #e91e63);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
  transition: 0.3s ease, transform 0.3s ease;
  animation: slideInUp 0.8s ease forwards;
  opacity: 0;
}

.read-more-btn:hover {
  background-color: var(--black-color, #2c3e50);
  transform: translateY(-2px);
}

/* Image (optional) */
.about-company__image {
  max-width: 40%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
  margin-left: 5%;
}

.about-company__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-company__image:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablet Devices (<= 992px) */
@media screen and (max-width: 992px) {
  .about-company__row {
    flex-direction: column;
  }

  .about-company__row::before {
    display: none;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
    padding: 0;
  }
}

/* Mobile Devices (<= 768px) */
@media screen and (max-width: 768px) {
  .about-company__container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-col p {
    font-size: 0.95rem;
  }

  .read-more-btn {
    width: 100%;
    text-align: center;
  }

  .about-company__image {
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* Extra Small Devices (<= 576px) */
@media screen and (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }

  .about-col h6 {
    font-size: 1.2rem;
  }

  .about-col p {
    font-size: 0.9rem;
  }

  .read-more-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    width: 100%;
  }

  .about-company__image {
    max-width: 100%;
    margin: 0 auto;
  }
}

/*============================================================= SERVICE SECTION ======================================================*/
.services_sec {
  background: linear-gradient(90deg, #fdfdfe, #d2d3fe);
  padding: 0rem 1.2rem;
  box-shadow: 0px 20px 20px rgba(255, 255, 255, 0.15);
  margin: 5px 0px;
}

/* Section Heading */
.section-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.section-heading span {
  color: var(--secondary-color);
}

/* ========================== FLEX GRID ========================== */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

/* Mobile Default: 1 column */
.column {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 0.5rem;
}

/* ========================== CARD STYLING ========================== */
.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(156, 150, 150, 0.08);
  border: 0.5px solid #cdd4fd;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(205, 183, 255, 0.6);
  transform: translateY(-10px);
}

.card:hover h3 {
  color: #6e6e6e;
}

.card:hover p {
  color: var(--secondary-color);
}

/* Icon */
.icon-wrapper img {
  height: 80px;
  width: 80px;
  margin-bottom: 1.2rem;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Text Styles */
.card h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
  margin-top: 10px;
}

.card h6 {
  font-size: 1rem;
  color: #7b7b7b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.9rem;
  color: #747474;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
}

.card .core-services-heading {
  margin-top: 1.2rem;
  font-weight: 600;
}

.core-services {
  text-align: start;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #444;
}

/* ========================== RESPONSIVE BREAKPOINTS ========================== */

/* Tablets */
@media (min-width: 768px) {
  .services_sec {
    padding: 3rem 2rem;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .column {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }

  .icon-wrapper img {
    width: 100px;
    height: 100px;
  }
}

/* Desktops */
@media (min-width: 992px) {
  .services_sec {
    padding: 4rem 3rem;
  }

  .column {
    flex: 1 1 calc(33.33% - 2rem);
    max-width: calc(33.33% - 2rem);
  }

  .section-heading {
    font-size: 2.4rem;
  }

  .icon-wrapper img {
    width: 110px;
    height: 110px;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .services_sec {
    padding: 2rem 6rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .icon-wrapper img {
    width: 120px;
    height: 120px;
  }
}

/*========================================================== BLOGS SECTION ========================================================*/
.blogs {
  padding: 2rem 3rem;
  background: linear-gradient(90deg, #fdfdfe, #d2d3fe);
  text-align: center;
  box-shadow: 0px 20px 20px rgba(255, 255, 255, 0.15);
  margin: 5px 0px;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.section-title span {
  color: var(--secondary-color);
}

/* Swiper wrapper */
.blogs__slider {
  position: relative;
  padding-bottom: 3rem;
}

/* Blog cards */
.blog__card {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog__card:hover {
  transform: translateY(-20px);
  box-shadow: 0 12px 28px rgb(208, 205, 252);
}

/* Blog image */
.blog__card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog__card h6 {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: center;
  color: var(--secondary-color);
}

/* Blog title */
.blog__card p {
  font-size: 16px;
  line-height: 1.4rem;
  text-align: center;
  color: #8d8d8d;
  padding: 0.5rem 1rem 1rem 1rem;
  text-align: justify;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
  top: 40%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}

/* Swiper pagination */
.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #000;
  opacity: 0.3;
  border-radius: 50%;
  margin: 0 6px;
  transition: opacity 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background-color: var(--secondary-color);
}

/* Responsive slides per view */
@media screen and (min-width: 768px) {
  .swiper-slide {
    width: 80%;
  }
}

@media screen and (min-width: 1024px) {
  .swiper-slide {
    width: 30%;
  }
}

/*=========================================================TESTIMONIALS SECTION======================================================= */
.testimonial__container {
  max-width: 1600px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
}

.testimonial__container h1 {
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #767676;
}

.testimonial__container h1::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}

.testimonial__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.testimonial__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.testimonial__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.5s;
}

.testimonial__card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.testimonial__card h4 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.testimonial__card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  transition: 0.3s;
}

.testimonial__profile {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial__card img {
  margin-bottom: 1rem;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
}

.testimonial__card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.testimonial__card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.testimonial__card:hover::before {
  width: 400%;
}

.testimonial__card:hover :is(h4, h5) {
  color: var(--white);
}

.testimonial__card:hover :is(p, h6) {
  color: var(--secondary-color);
}

.testimonial__card:hover img {
  border-color: var(--white);
}

@media (max-width: 1024px) {
  .testimonial__container h1 {
    font-size: 2rem;
  }

  .testimonial__container h2 {
    font-size: 1.125rem;
  }

  .testimonial__card {
    padding: 4rem 1.5rem 2rem;
  }

  .testimonial__card h4 {
    font-size: 1.25rem;
  }

  .testimonial__card p {
    font-size: 0.95rem;
  }

  .testimonial__card img {
    width: 80px;
    height: 80px;
  }

  .testimonial__card span {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .testimonial__container h1 {
    font-size: 1.75rem;
  }

  .testimonial__container h2 {
    font-size: 2rem;
  }

  .testimonial__grid {
    grid-template-columns: 1fr;
  }

  .testimonial__card {
    padding: 3.5rem 1.25rem 2rem;
  }

  .testimonial__card h4 {
    font-size: 1.125rem;
  }

  .testimonial__card p {
    font-size: 0.9rem;
  }

  .testimonial__card img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .testimonial__container h1 {
    font-size: 1.5rem;
  }

  .testimonial__container h2 {
    font-size: 2rem;
  }

  .testimonial__card {
    padding: 3rem 1rem 2rem;
  }

  .testimonial__card h4 {
    font-size: 1rem;
  }

  .testimonial__card p {
    font-size: 0.85rem;
  }

  .testimonial__card img {
    width: 60px;
    height: 60px;
  }

  .testimonial__card span {
    font-size: 2rem;
  }
}

/* ==================================================== FAQ SECTION ============================================== */
.faq-sec {
  background: linear-gradient(90deg, #fdfdfe, #d2d3fe);
  box-shadow: 0px 20px 20px rgba(255, 255, 255, 0.15);
  margin: 5px 0px;
}

.faq-section {
  max-width: 1600px;
  margin: auto;
  padding: 2rem 1.5rem;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.faq-section h2 span {
  color: var(--secondary-color);
}

/* ============================== FAQ CONTAINER ============================== */
.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* ============================== FAQ ITEM ============================== */
/* FAQ ITEM default state */
.faq-item {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect on the whole FAQ item */
.faq-item:hover {
  background-color: #fef4e8; /* light orange background on hover */
  border-color: #ffa94d; /* optional: change border color */
}

/* Change the question text color when the faq-item is hovered */
.faq-item:hover .faq-question {
  color: #ff7f50; /* your secondary color or any bright color */
}


/* ============================== QUESTION ============================== */
.faq-question {
  padding: 0.5rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  background-color: transparent;
  cursor: default; /* Disable pointer cursor */
  transition: color 0.3s ease;
}

/* ============================== ANSWER ============================== */
.faq-answer {
  max-height: none;
  overflow: visible;
  padding: 0.5rem 1.5rem;
  background-color: #fafafa;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* ============================== REMOVE ARROW ============================== */
.arrow {
  display: none; /* Hide arrow if still present in HTML */
}

/* ============================== RESPONSIVE ============================== */

/* Tablets: 2 Columns */
@media (min-width: 768px) {
  .faq-section {
    padding: 3rem 2rem;
  }

  .faq-container {
    grid-template-columns: 1fr 1fr;
  }

  .faq-question {
    font-size: 1.05rem;
  }
}

/* Desktops */
@media (min-width: 1024px) {
  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* Small Devices */
@media (max-width: 480px) {
  .faq-section {
    padding: 1rem;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
  }
}


/* ================================================================CONTACT SECTION================================================== */
.contact-section {
  padding: 2rem 2rem 4rem 2rem;
  background: linear-gradient(90deg, #fdfdfe, #d2d3fe);
  box-shadow: 0px 20px 20px rgba(255, 255, 255, 0.15);
  margin: 5px 0px;
}

.contact-section .contact-title {
  margin-bottom: 50px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 20px;
  max-width: 1600px;
  margin: auto;
  justify-content: center;
}

.contact-details {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  max-width: 700px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.contact-details:hover {
  box-shadow: 0 12px 40px #dcd8fb;
  transform: translateY(-10px);
  background: #f5f9ff;
}

.contact-details h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0b5ed7;
  text-align: center;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.6;
}

.contact-info a {
  color: #0b5ed7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #073ca4;
}

.form-card {
  flex: 1 1 450px;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s ease-in-out;
}

.glass:hover {
  box-shadow: 0 12px 40px #dcd8fb;
  transform: translateY(-10px);
  background: #f5f9ff;
}

.form-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
}

form input,
form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid #949393;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.3);
}

form textarea {
  height: 200px;
  resize: vertical;
}

button {
  width: 100%;
  padding: 1rem;
  background: var(--secondary-color);
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: var(--black-color);
  transform: translateY(-2px);
}

#formStatus {
  margin-top: 1rem;
  font-weight: 600;
  color: green;
  text-align: center;
}

.map-card {
  padding: 5px;
  max-width: 1600px;
  margin: 20px auto 0 auto; /* Top margin + horizontal center */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  transition: all 0.3s ease-in-out;
}

.map-card:hover {
  box-shadow: 0 12px 40px #dcd8fb;
  transform: translateY(-10px);
  background: #f5f9ff;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 400px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-card,
  .map-card,
  .contact-details {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .form-card {
    order: 2;
  }

  .map-card {
    order: 1;
  }
}
