/* Reset and General Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  overflow-x: hidden;
  scroll-behavior: smooth; /* Enable smooth scrolling for anchor links */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A modern, clean font */
  line-height: 1.7;
  color: #444;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 3rem; /* Increased vertical padding */
}

.section__subheader {
  font-size: 1.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards 0.2s;
}

.section__header {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #222;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards 0.4s;
}

.section__description {
  font-size: 2rem;
  color: #666;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards 0.6s;
}

.btn {
  display: inline-block;
  padding: 1.4rem 3rem;
  background-color: #007bff; /* Vibrant blue */
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease-in-out, box-shadow 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.7rem 1.2rem rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('assets/header.jpg') center/cover no-repeat;
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden; /* For potential background animations */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  position: relative;
  z-index: 10; /* Ensure nav is above background effects */
}

.nav__bar {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 60px; /* Slightly larger logo */
  transition: transform 0.3s ease-in-out;
}

.nav__logo img:hover {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  gap: 4rem;
  font-size: 1.8rem;
}

.nav__links li a {
  color: #eee;
  transition: color 0.3s ease, transform 0.2s ease-in-out;
  position: relative;
}

.nav__links li a::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 0%;
  height: 0.2rem;
  background-color: #007bff;
  transition: width 0.3s ease-in-out;
}

.nav__links li a:hover {
  color: #fff;
  transform: translateY(-0.1rem);
}

.nav__links li a:hover::after {
  width: 100%;
}

.nav__menu__btn {
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  display: none;
  transition: transform 0.2s ease-in-out;
}

.nav__menu__btn:hover {
  transform: scale(1.1);
}

.header__container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 90px); /* Adjust based on navbar height */
  text-align: center;
}

.header__content h1 {
  font-size: 5.2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards 0.8s;
}

.header__btn {
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards 1s;
}

/* Banner */
.banner__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 3rem;
  background-color: #fff;
  box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.1);
  margin-top: -7rem; /* Increased overlap */
  margin-left: 3rem;
  margin-right: 3rem;
  position: relative;
  z-index: 10;
  border-radius: 0.8rem;
  overflow: hidden; /* For subtle inner shadows or effects */
}

.banner__card {
  text-align: center;
  padding: 3rem;
  border-radius: 0.6rem;
  background-color: #e9f7ff; /* Lighter blue */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.banner__card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.banner__card h4 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.banner__image {
  grid-column: auto / span 1; /* Adjust for responsiveness */
  grid-row: auto / span 1;
}

.banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.6rem;
}

@media (min-width: 992px) {
  .banner__container {
    grid-template-columns: 1fr 1fr 1.5fr; /* Adjust layout for larger screens */
  }
  .banner__image {
    grid-column: 3 / 3;
    grid-row: 1 / 3;
  }
}

/* Experience */
.experience__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience__image {
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.experience__image:hover {
  transform: scale(1.02);
}

.experience__image img {
  border-radius: inherit;
}

.experience__content {
  text-align: left;
}

.experience__content .section__header {
  text-align: left;
}

.experience__content .section__description {
  text-align: left;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 3.5rem;
}

/* Service */
.service {
  background-color: #f9f9f9;
}

.service__container {
  text-align: center;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

.service__card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.service__card:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.service__card img {
  height: 220px;
  object-fit: cover;
  border-radius: 0.6rem;
  margin-bottom: 2rem;
}

.service__card h4 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #333;
}

.service__card p {
  font-size: 1.8rem;
  color: #666;
  line-height: 1.7;
}

/* Customization */
.customisation {
  background-color: #fff;
}

.customisation__container {
  text-align: center;
}

.customisation__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.customisation__card {
  background-color: #f0f8ff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.customisation__card:hover {
  transform: translateY(-0.5rem);
}

.customisation__card h4 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.customisation__card p {
  font-size: 1.8rem;
  color: #555;
}

/* Price */
.price__container {
  text-align: center;
}

.price__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

.price__card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3.5rem;
  box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.price__card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.price__card h4 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

.price__card h3 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #007bff;
}

.price__card sup {
  font-size: 2rem;
  top: -0.8rem;
}

.price__card p {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.price__card .btn {
  margin-top: 3rem;
}

.price__card__ribbon {
  position: absolute;
  top: 1.5rem;
  right: -3rem;
  background-color: #ff7043; /* Orange accent */
  color: #fff;
  padding: 1.2rem 4rem;
  transform: rotate(45deg);
  font-size: 1.6rem;
  font-weight: 600;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
}

.contact {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('assets/contact.jpg') center/cover no-repeat;
  color: #fff;
  padding: 8rem 0;
}

.contact__container {
  text-align: center;
}

.contact__content {
  margin-bottom: 4rem;
}

.contact__content .section__header {
  color: #fff;
}

.contact__content .section__description {
  color: #eee;
}

.contact__btns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Testimonial */
.testimonial__container {
  text-align: center;
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

.testimonial__card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial__card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

.testimonial__card p {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.testimonial__card h4 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
}

.swiper-pagination-bullet-active {
  background-color: #007bff;
}

/* Footer */
.footer {
  background-color: #222;
  color: #eee;
  padding-top: 8rem;
}

.subscribe__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4rem;
  border-bottom: 1px solid #444;
}

.subscribe__content {
  text-align: left;
}

.subscribe__content .section__header {
  color: #fff;
  text-align: left;
}

.subscribe__content .section__description {
  color: #ccc;
  text-align: left;
}

.subscribe__form {
  display: flex;
}

.subscribe__form input {
  padding: 1.2rem 1.6rem;
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
  font-size: 1.6rem;
  width: 250px;
}

.subscribe__form .btn {
  border-radius: 0 0.5rem 0.5rem 0;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  padding-top: 4rem;
}

.footer__logo img {
  height: 50px;
  margin-bottom: 2rem;
}

.footer__col p {
  font-size: 1.6rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  gap: 1.5rem;
}

.footer__socials li a {
  font-size: 2rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer__socials li a:hover {
  color: #fff;
}

.footer__col h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links li a {
  font-size: 1.6rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer__links li a:hover {
  color: #fff;
}

.footer__bar {
  text-align: center;
  background-color: #111;
  color: #ccc;
  padding: 1.5rem 0;
  font-size: 1.4rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .nav__menu__btn {
    display: block;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #222;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 100;
  }

  .nav__links.active {
    left: 0;
  }

  .header__container {
    padding-top: 8rem;
  }

  .header__content h1 {
    font-size: 3.6rem;
  }

  .banner__container {
    grid-template-columns: 1fr;
  }

  .banner__image {
    grid-column: 1;
    grid-row: 1;
    height: auto;
  }

  .experience__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .experience__content {
    text-align: center;
  }

  .customisation__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .contact__btns {
    flex-direction: column;
    align-items: center;
  }

  .subscribe__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .subscribe__content {
    text-align: center;
    margin:auto;}
  }
  /* Testimonial Section Styling (Single Page) with Hover Effect */
.testimonial__container {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #f9f9f9; /* Optional: Light background */
}

.testimonial__subheader {
  font-size: 1.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1.5rem;
}

.testimonial__header {
  font-size: 3.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4rem;
}

.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; /* Optional horizontal padding */
}

.testimonial__card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth transition for hover */
}

.testimonial__card:hover {
  transform: translateY(-0.3rem); /* Slightly move card up on hover */
  box-shadow: 0 0.7rem 1.2rem rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}

.testimonial__card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.testimonial__card p {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial__card h4 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
}
  