/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%; /* Ensure the body and html take full height */
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  margin: 0;
  padding: 0;
  height: auto;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-inline: 1.2rem;

}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

 /*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
  margin-right: 6rem;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
    color: rgb(174, 174, 174);
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}


.page {
  height: 100vh; /* Ensure each page section fits the viewport height */
  overflow: hidden; /* Prevent scrollbars within sections */
}
.page1 {
  position: relative;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.3);
}

.page1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.648); /* Adjust the opacity as needed */
  z-index: 1;
  opacity: 1; /* Adjust the opacity for the overlay */
}

.page__content {
  position: relative;
  z-index: 2; /* Ensure content appears above the blurred background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%; /* Ensure it takes the full height of the parent */
  padding: 0 1rem; /* Optional: Add padding for better responsiveness */
  color: var(--white-color); /* Ensure text is readable */
}

.page__title {
  font-size: 2.5rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  color: var(--white-color);
}
.page__description {
  font-size: 1.2rem;
  padding: 0px 200px 0px 200px;
  font-weight: var(--font-regular);
  margin-bottom: 2rem;
}


/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
  .page__title {
    font-size: 2rem; /* Reduce font size for smaller screens */
  }

  .page__description {
    font-size: 1rem; /* Adjust font size */
    padding: 0 50px; /* Reduce padding for better fit */
  }
}

@media screen and (max-width: 480px) {
  .page__title {
    font-size: 1.5rem; /* Further reduce font size for very small screens */
  }

  .page__description {
    font-size: 0.9rem; /* Adjust font size */
    padding: 0 20px; /* Minimal padding for small screens */
  }
}


.page2 {
  margin-top: auto;
  margin-bottom: 0;
  height: auto; /* Allow it to grow based on content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--body-color);
  position: relative;
  z-index: 2; /* Ensure it appears above other sections */
}

.page2__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.page2__image img {
  width: 100%; /* Ensure the image scales with its container */
  max-width: 700px; /* Set a maximum width for larger screens */
  height: auto; /* Maintain the aspect ratio */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.page2__text {
  flex: 1;
  max-width: 600px;
}

.page2__title {
  font-size: 2rem;
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  margin-bottom: 1rem;
}

.page2__description {
  font-size: 1rem;
  color: var(--black-color-lighten);
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: left;
}

.page2__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.stat {
  background-color: var(--white-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat__number {
  font-size: 2rem;
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
}

.stat__label {
  font-size: 1rem;
  color: var(--black-color-lighten);
}

.page2__description strong {
  font-size: 1.2rem; /* Increase the font size */
  font-weight: var(--font-semi-bold); /* Ensure it stands out */
  color: var(--black-color); /* Optional: Adjust color for emphasis */
}



.page2__why-choose-us {
  background-color: var(--black-color);
  color: var(--white-color);
  text-align: center;
  height: auto; /* Allow it to grow based on content */
  width: 100%; /* Ensure it spans the full width */
  margin: 0; /* Remove any margin */
  padding: 4rem 1rem; /* Add padding for spacing */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Ensure it appears correctly */
}

.why-choose-us__title {
  font-size: 1.8rem; /* Slightly larger title */
  font-weight: var(--font-semi-bold);
  margin-bottom: 1.5rem;
}

.why-choose-us__description {
  font-size: 1rem; /* Slightly larger description */
  line-height: 1.8; /* Increase line height for better readability */
  max-width: 1200px;
  margin: 0 auto;
}

.page2 {
  margin-top: 1rem; /* Add spacing between page1 and page2 */
}

.page2__why-choose-us {
  margin-top: 1rem; /* Add spacing between page2 and why-choose-us */
}

@media screen and (max-width: 480px) {
  .why-choose-us__title {
    font-size: 1.6rem; /* Slightly larger title */

  }
  
  .why-choose-us__description {
    font-size: 1rem; /* Slightly larger description */
  }
  
}


.page3 {
  background-color: var(--body-color);
  padding: 2rem 10px;
  padding-bottom: 0;
}

.page3__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-content: center;
  align-items: start;
  padding: 5rem;
}

.card {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensures all cards have the same height */
  background-color: rgb(207, 207, 207);
}

.card:hover {
  transform: translateY(-5px) scale(1.02); /* Slight upward movement and scaling */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth transition */
}

.page3__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 3rem;
  justify-content: center;
  align-items: stretch; /* Ensures all cards stretch to the same height */
}

.card__icon {
  margin-bottom: 1rem;
}

.card__title {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  color: var(--black-color);
}

.card__description {
  font-size: 1rem;
  color: var(--black-color-lighten);
  line-height: 1.6;
  flex-grow: 1; /* Ensures the description takes up available space */
}


@media screen and (max-width: 1100px) {
  .page3__content {
    grid-template-columns: 1fr; /* 1 card per row for smaller screens */
    gap: 1.5rem;
  }

  .page3{
    height: auto;
  }
}


.page4__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 2rem; /* Space between cards */
  justify-content: center;
  align-items: start;
  padding: 2rem;
}

.project-card {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.project-card__image img {
  width: 100%;
  height: 200px; /* Adjust height for larger images */
  object-fit: cover; /* Ensures the image scales properly */
  display: block;
}

.project-card__title {
  font-size: 1.5rem; /* Slightly larger title */
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  margin: 1rem 0;
  text-align: center; /* Centers the title */
}

.project-card__info {
  font-size: 0.8rem;
  color: var(--black-color-lighten);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem 1rem;
}

.project-card__info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page4__title{
  text-align: center;
}

.project-card__info i {
  font-size: 1rem;
  color: var(--black-color-lighten);
}

@media screen and (max-width: 768px) {
  .page4__content {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row for smaller screens */
  }
  .page4 {
    height: auto; /* Allow it to grow based on content */
  }
}

@media screen and (max-width: 550px) {
  .page4__content {
    grid-template-columns: 1fr; /* 1 card per row for very small screens */
  }
}


 
 /* Footer styles */
   /* Footer styles */
   footer {
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    color: #d1d5db;
    padding: 40px 20px 20px 20px;
    text-align: center;
    box-shadow: inset 0 10px 30px rgba(255, 255, 255, 0.05);
  }
  footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.4s ease, transform 0.3s ease;
  }
  footer a:hover,
  footer a:focus {
    color: #3b82f6;
    outline: none;
    transform: scale(1.05);
  }
  .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    box-shadow:
      0 4px 6px rgba(0,0,0,0.25),
      inset 0 0 50px rgba(255, 255, 255, 0.05);
  }
  .footer-section {
    flex: 1 1 240px;
    margin: 15px 25px;
  }
  .footer-section h4 {
    font-weight: 700;
    color: #f9fafb;
    font-size: 1.25rem;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .footer-section p {
    line-height: 1.5;
    font-size: 0.95rem;
    color: #d1d5db;
  }
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-section li {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }
  .footer-section li a {
    font-weight: 500;
  }
  .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
  }
  .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    color: #9ca3af;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
  }
  .social-icons a:hover,
  .social-icons a:focus {
    background-color: #3b82f6;
    color: #fff;
    transform: scale(1.2);
    outline: none;
    box-shadow: 0 0 15px #3b82f6;
  }
  .footer-bottom {
    display: flex;
    justify-content:space-evenly;
    margin-top: 40px;
    font-size: 14px;
    color: #818cf8;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  
  @media (max-width: 600px) {
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

  .myweb{
    color: #818cf8;
  }
  .footer-bottom__links {
    display: flex;
    gap: 35px;
  }
  /* Footer responsive */
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      padding: 25px 20px;
    }
    .footer-section {
      margin: -15px 0;
    }
    .footer-section h4 {
      text-align: center;
    }
    .social-icons {
      justify-content: center;
    }
  }

.page5title {
  text-align: left;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; /* Space between "Google" and "Reviews" */
}

.google {
  display: inline-block; /* Ensures letters are inline */
  letter-spacing: 0; /* Removes any space between letters */
}

.google span {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: 1;
}

.blue {
  color: #4285F4; /* Google Blue */
}

.red {
  color: #EA4335; /* Google Red */
}

.yellow {
  color: #FBBC05; /* Google Yellow */
}

.green {
  color: #34A853; /* Google Green */
}

.stars-header {
  text-align: center;
  font-size: 22px;
  color: #fbbc04;
  margin: 5px 0;
}

.review-count {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-bottom: 25px;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
 padding: 20px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  flex: 0 0 33.333%;
  padding: 15px;
}

.review-card {
  background-color: rgb(207, 207, 207);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #fbbc04;
  font-size: 16px;
}

.review-text {
  margin: 12px 0;
  font-size: 14px;
  color: #444;
}

.reviewer {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.reviewer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.dots {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background-color: #1a73e8;
}

@media (max-width: 900px) {
  .slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .slide {
    flex: 0 0 100%;
  }
}


.dots-container {
  position: relative; /* Set relative positioning for the container */
  margin-top: 20px;
  display: flex; /* Use flexbox for alignment */
  justify-content: space-between; /* Space between dots and button */
  align-items: center; /* Vertically align dots and button */
}

.dots {
  text-align: center;
}

.review-button {
  position: relative;
  padding: 10px 20px;
  background-color: #4285F4; /* Google Blue */
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
  text-align: center;
  transition: background-color 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping */
}

.review-button:hover {
  background-color: #357ae8; /* Darker Google Blue */
}

/* Responsive styles */
@media (max-width: 900px) {
  .review-button {
    font-size: 13px; /* Slightly smaller font size */
    padding: 8px 16px; /* Adjust padding */
  }
}

@media (max-width: 600px) {
  .dots-container {
    flex-direction: column; /* Stack dots and button vertically */
    align-items: center; /* Center align items */
  }

  .review-button {
    margin-top: 10px; /* Add spacing between dots and button */
    font-size: 12px; /* Smaller font size */
    padding: 6px 12px; /* Adjust padding */
  }
}


.view-more-container {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center the button horizontally */
  margin-bottom: 5rem; /* Add spacing above the button */
  width: 100%; /* Ensure it spans the full width of the container */
}

.view-more-button {
  padding: 12px 24px;
  background: linear-gradient(90deg, #4285F4, #34A853); /* Gradient background */
  color: #fff; /* Button text color */
  text-decoration: none;
  font-size: 16px; /* Slightly larger font size */
  font-weight: bold;
  border-radius: 25px; /* More rounded corners */
  text-align: center;
  transition: all 0.4s ease; /* Smooth transition for hover effects */
  white-space: nowrap; /* Prevent text wrapping */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
  position: relative;
  overflow: hidden;
}

.view-more-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2); /* Light overlay effect */
  transition: all 0.4s ease;
}

.view-more-button:hover::before {
  left: 100%; /* Slide the overlay effect */
}

.view-more-button:hover {
  transform: translateY(-3px); /* Slight upward movement */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.view-more-button:active {
  transform: translateY(1px); /* Slight downward movement on click */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Reduce shadow on click */
}


@media (max-width: 768px) {
  .view-more-button {
    font-size: 14px; /* Reduce font size for smaller screens */
    padding: 10px 20px; /* Adjust padding */
  }

  .view-more-container {
    margin-bottom: 3rem; /* Reduce spacing for smaller screens */
  }
}

@media (max-width: 480px) {
  .view-more-button {
    font-size: 12px; /* Further reduce font size for very small screens */
    padding: 8px 16px; /* Adjust padding for very small screens */
  }

  .view-more-container {
    margin-bottom: 2rem; /* Reduce spacing for very small screens */
  }
}


.pricing-table {
  padding: 0 5rem;
  margin: 6rem auto; /* Center the table horizontally */
  max-width:80%; /* Ensure the table fits within the viewport */
  overflow-x: auto; /* Allow horizontal scrolling if necessary */
  font-family: "Montserrat", sans-serif;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background-color: #ffffff;
  border: 2px solid #4a4a4a; /* Border color */
  border-radius: 10px; /* Rounded corners */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

thead {
  background: linear-gradient(90deg, #4285F4, #34A853); /* Gradient header */
  color: #fff; /* Ensure text is white for visibility */
  font-weight: bold;
}

thead th {
  padding: 15px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

tbody tr {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth animation */
}

tbody tr:hover {
  transform: scale(1.02); /* Slight zoom effect on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow to the hovered row */
  background-color: #e6f7ff; /* Highlight row on hover */
}

tbody tr:nth-child(even) {
  background-color: #bbbbbb;
  
}

tbody tr:nth-child(odd) {
  background-color: #ececec;
}

td, th {
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 14px;
}

td:first-child {
  font-weight: bold;
  color: #000000; /* Change text color to white */
  
}

th:first-child {
  font-weight: bold;
  color: #ffffff; /* Change text color to white */
}

td:last-child {
  font-weight: bold;
  color: #34A853;
}

td:nth-child(3), td:nth-child(4), td:nth-child(5) {
  font-size: 18px;
  color: #4285F4;
}

.caption {
  text-align: center;
  font-size: 24px; /* Larger font size */
  font-weight: bold; /* Make it bold */
  margin: 15px 0;
  color: #333;
  animation: fadeIn 1s ease-in-out; /* Fade-in animation for the caption */
  text-transform: uppercase; /* Make the text uppercase for emphasis */
  letter-spacing: 1px; /* Add spacing between letters */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .pricing-table {
    padding: 0 2rem; /* Adjust padding for smaller screens */
  }

  table {
    font-size: 12px; /* Reduce font size for smaller screens */
  }

  thead th {
    font-size: 12px;
  }

  td, th {
    padding: 10px; /* Adjust padding for smaller screens */
  }

  .caption {
    font-size: 20px; /* Slightly smaller font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .pricing-table {
    padding: 0 1rem; /* Adjust padding for very small screens */
  }

  table {
    font-size: 10px; /* Further reduce font size for very small screens */
  }

  thead th {
    font-size: 10px;
  }

  td, th {
    padding: 8px; /* Adjust padding for very small screens */
  }

  .caption {
    font-size: 18px; /* Smaller font size for very small screens */
  }
}

/* Fancy Section Styles */
.ADfancy-section {
  
  margin-top: 5rem;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f5f5, #e6f7ff); /* Add a subtle gradient background */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.ADcontent-container {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease-in-out; /* Fade-in animation for the entire container */
}

.ADtext-content {
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-in-out;
}

.ADtitle {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounceIn 1.2s ease-in-out; /* Add bounce animation */
}

.ADsubtitle {
  font-size: 1.5rem;
  color: #777;
  font-weight: bold;
  animation: fadeInUp 1.2s ease-in-out;
}

.ADlayout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.ADimage-container {
  flex: 1;
  max-width: 50%;
  animation: fadeInLeft 1s ease-in-out;
}

.ADfancy-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: #ccc; /* Placeholder background */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ADfancy-image:hover {
  transform: scale(1.1) rotate(2deg); /* Add slight rotation on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ADparagraph {
  margin-top: 2rem;
  flex: 1;
  max-width: 50%;
  text-align: left;
  animation: fadeInRight 1s ease-in-out;
}

.ADparagraph p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem; /* Add spacing between paragraphs */
  animation: fadeIn 1.5s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ADlayout {
    flex-direction: column;
    align-items: center;
  }

  .ADimage-container,
  .ADparagraph {
    max-width: 100%;
  }

  .ADparagraph {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ADtitle {
    font-size: 2.5rem;
  }

  .ADsubtitle {
    font-size: 1.2rem;
  }

  .ADparagraph p {
    font-size: 0.9rem;
  }
}

/* Responsive Design for Pricing Table */
.decards-container {
  margin-left: 3.8rem;
  margin-right: 3.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.decard {
  background: rgb(218, 218, 218);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  min-height: 350px;
  position: relative;
  background: linear-gradient(45deg, #b3b3b3, #eeeeee);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}
.decard:nth-child(1) { animation-delay: 0.1s; }
.decard:nth-child(2) { animation-delay: 0.2s; }
.decard:nth-child(3) { animation-delay: 0.3s; }
.decard:nth-child(4) { animation-delay: 0.4s; }
.decard:nth-child(5) { animation-delay: 0.5s; }
.decard:nth-child(6) { animation-delay: 0.6s; }
.decard:nth-child(7) { animation-delay: 0.7s; }
.decard:nth-child(8) { animation-delay: 0.8s; }
.decard:nth-child(9) { animation-delay: 0.9s; }
.decard:nth-child(10) { animation-delay: 1s; }
.decard:nth-child(11) { animation-delay: 1.1s; }
.decard:nth-child(12) { animation-delay: 1.2s; }
.decard:nth-child(13) { animation-delay: 1.3s; }
.decard:nth-child(14) { animation-delay: 1.4s; }
.decard:nth-child(15) { animation-delay: 1.5s; }


.decard:hover {
  transform: translateY(-10px) rotate(3deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.decard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(248, 249, 250, 0.1));
  z-index: 1;
  pointer-events: none;
  border-radius: 20px;
}

.decard img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

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

.decard-info {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.decard-title {
  font-size: 1.2em;
  margin-bottom: 1rem;
  color: #2d3436;
  font-weight: 600;
}

.deexpand-btn {
  background: linear-gradient(45deg, #4b6cb7, #182848);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(75, 108, 183, 0.4);
  outline-offset: 3px;
}

.deexpand-btn:hover,
.deexpand-btn:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(75, 108, 183, 0.6);
  outline: none;
}

/* Modal Styles */
.demodal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
}

.demodal-content {
  position: relative;
  background: white;
  max-width: 90%;
  max-height: 90vh;
  padding: 2rem;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demodal.active {
  display: flex;
}

.demodal-content.active {
  opacity: 1;
  transform: scale(1);
}

.demodal-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.declose-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  transition: color 0.4s ease;
  font-weight: 700;
  line-height: 1;
  outline-offset: 3px;
  z-index: 10;
}

.declose-btn:hover,
.declose-btn:focus {
  color: #4b6cb7;
  outline: none;
}

/* Loading Spinner */
.deloading-spinner {
  display: none;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #4b6cb7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 1rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Card Fade-in Animation */
@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .decards-container {
      grid-template-columns: 1fr;
  }

  .decard {
      min-height: 300px;
  }

  .decard img {
      height: 180px;
  }

  .demodal-content {
      max-width: 95%;
      max-height: 95vh;
  }
}

.ourtitle {
  margin: 8rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3436;
  font-size: 1.8rem;
  font-weight: 600;
}


  /* Contact Info */
  .contact-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 30px 30px 40px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  }
  .contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.04em;
  }
  .info-item {
    margin-bottom: 20px;
  }
  .info-item strong {
    display: block;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
  }
  .info-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .info-item a:hover,
  .info-item a:focus {
    color: #1e40af;
    outline: none;
  }

  /* Contact Form */
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  label {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.8px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    resize: vertical;
  }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
  }
  textarea {
    min-height: 120px;
    line-height: 1.4;
  }

  /* Submit Button */
  button[type="submit"] {
    align-self: flex-start;
    background-color: #3b82f6;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.15s ease;
    user-select: none;
  }
  button[type="submit"]:hover,
  button[type="submit"]:focus {
    background-color: #2563eb;
    outline: none;
    transform: scale(1.05);
  }
  button[type="submit"]:active {
    transform: scale(0.95);
  }

  /* Responsive */
  @media (max-width: 720px) {
    main {
      flex-direction: column;
      padding: 30px 20px 40px;
    }
    .contact-info, .contact-form {
      flex-basis: 100%;
    }
    button[type="submit"] {
      width: 100%;
      text-align: center;
    }
  }


  

    /* Map and contact info text container - side by side */
    .map-contact-wrapper {
      margin-top: 2rem;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    .map-container {
      flex: 1 1 280px;
      position: relative;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
    .map-container iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .contact-info-text {
      flex: 1 1 280px;
    }
  
  
  /* Main content styles */
  main {
    flex-grow: 1;
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px 40px 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 5rem auto 0 auto;
  }
  .contact-info, .contact-form {
    flex: 1 1 380px;
  }

  /* Header style */
  h1 {
    font-weight: 700;
    font-size: 2.4rem;
    color: #1e293b;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
  }
  p.subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
  }

  /* Contact Info */
  .contact-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 30px 30px 40px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  }
  .contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.04em;
  }
  .info-item {
    margin-bottom: 20px;
  }
  .info-item strong {
    display: block;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
  }
  .info-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .info-item a:hover,
  .info-item a:focus {
    color: #1e40af;
    outline: none;
  }

  /* Contact Form */
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  label {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.8px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    resize: vertical;
  }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
  }
  textarea {
    min-height: 120px;
    line-height: 1.4;
  }
  /* Submit Button */
  button[type="submit"] {
    align-self: flex-start;
    background-color: #3b82f6;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.15s ease;
    user-select: none;
  }
  button[type="submit"]:hover,
  button[type="submit"]:focus {
    background-color: #2563eb;
    outline: none;
    transform: scale(1.05);
  }
  button[type="submit"]:active {
    transform: scale(0.95);
  }
  /* Responsive */
  @media (max-width: 720px) {
    main {
      flex-direction: column;
      padding: 30px 20px 40px;
    }
    .contact-info, .contact-form {
      flex-basis: 100%;
    }
    button[type="submit"] {
      width: 100%;
      text-align: center;
    }
  }

.sticky-whatsapp {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  z-index: 1000; /* Ensure it appears above other elements */
}

.sticky-whatsapp a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp green color */
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-whatsapp a:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-whatsapp {
    bottom: 15px; /* Adjust distance from the bottom */
    right: 15px; /* Adjust distance from the right */
  }

  .sticky-whatsapp a {
    width: 45px; /* Smaller size for smaller screens */
    height: 45px;
    font-size: 24px; /* Adjust font size */
  }
}

@media (max-width: 480px) {
  .sticky-whatsapp {
    bottom: 10px; /* Further adjust distance from the bottom */
    right: 10px; /* Further adjust distance from the right */
  }

  .sticky-whatsapp a {
    width: 40px; /* Even smaller size for very small screens */
    height: 40px;
    font-size: 20px; /* Adjust font size */
  }
}

.sticky-call {
  position: fixed;
  bottom: 90px; /* Position above the WhatsApp button */
  right: 20px; /* Align with the WhatsApp button */
  z-index: 1000; /* Ensure it appears above other elements */
}

.sticky-call a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #2563eb; /* Blue color for the call button */
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-call a:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {

  .sticky-call {
    bottom: 85px; /* Adjust distance from the bottom */
    right: 15px; /* Adjust distance from the right */
  }

  .sticky-call a {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .sticky-call {
    bottom: 80px; /* Further adjust distance from the bottom */
    right: 10px; /* Further adjust distance from the right */
  }
  .sticky-call a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}