/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(218, 94%, 45%);
  --first-color-alt: hsl(218, 100%, 40%);
  --second-color: hsl(200, 85%, 64%);
  --title-color: hsl(218, 48%, 22%);
  --text-color: hsl(218, 8%, 36%);
  --text-color-light: hsl(218, 8%, 54%);
  --white-color: hsl(218, 100%, 98%);
  --white-color-light: hsl(218, 48%, 80%);
  --dark-color: hsl(218, 68%, 18%);
  --gray-color: hsl(0, 0%, 92%);
  --body-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.25rem;
  --bigger-font-size: 1.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

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

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

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 3.5rem;
    --bigger-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color .4s;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
.purple-theme {
  --gray-color: hsl(240, 4%, 5%);        /* Light grayish purple */
  --body-color: hsl(277, 79%, 94%);        /* Very light purple background */
  --dark-color: hsl(240, 50%, 57%);
  --white-color: hsl(0, 0%, 100%);         /* Keep white as is */
  --white-color-light: hsl(280, 30%, 90%); /* Lighter white/purple for secondary text */
}

/*========== 
	Color changes in some parts of 
	the website, in light purple theme
==========*/
.purple-theme .nav__menu {
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(280, 50%, 75%, .5);
}

/* Remove or update this rule since it might be causing issues */
.purple-theme:is(.shadow-header, .scrollup) {
  box-shadow: 0 2px 16px hsla(280, 50%, 75%, .5);
}

.purple-theme .prices__card{
  background-color: var(--white-color);
}

.purple-theme .prices__item{
  color: var(--gray-color);
}

.purple-theme::-webkit-scrollbar{
  background-color: hsl(280, 30%, 90%);
}

.purple-theme::-webkit-scrollbar-thumb{
  background-color: hsl(280, 30%, 75%);
}

.purple-theme::-webkit-scrollbar-thumb:hover{
  background-color: hsl(280, 30%, 60%);
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 3rem 1rem;
}

.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  font-weight: var(--font-regular);
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  top:0;
  left: 0;
  background: var(--body-color);
  z-index: var(--z-fixed);
  transition: background-color .4s, box-shadow .4s;
}

.nav{
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  padding-block: 4.5rem 4rem;
  transition: top .4s;
  z-index: var(--z-fixed);
}


.nav__logo{
  display: flex;
  align-items: center;
  column-gap: .25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__logo i{
  font-weight: initial;
  font-size: 1.5rem;
  color: var(--first-color);
}

.nav__logo:hover {
  color: var(--first-color);
}
.nav__logo-img {
  width: 60px; /* Changed from 90px to 60px */
  height: auto;
  transition: transform 0.3s;
}
.nav__logo-img:hover {
  transform: scale(1.05);
}
.nav__toggle,
.nav__close,
.nav__theme{
  display: inline-flex;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--title-color);
  transition: color .4s;
}
.nav__buttons{
  display: flex;
  align-items: center;
  column-gap: 1rem;

}


.nav__list{
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link{
  position: relative;
}

.nav__link::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--first-color);
  transition: width .3s;
}

.nav__link:hover::after,
.active-link::after{
  width: 100%;
}

.nav__close{
  position: absolute;
  top:1rem;
  right: 1.5rem;
}
/* Show menu */
.show-menu{
  top: 0;
}


/* Add shadow header */

.shadow-header{
  box-shadow: 0 2px 16px hsla(218, 68%, 18%, .1);
}
/* Active link */
.active-link{
  color: var(--first-color);
}

/*=============== BUTTON ===============*/
.button{
  display: inline-flex;
  background-color: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  border-radius: .75rem;
  box-shadow: 0 4px 16px hsla(218, 94%, 45%, .3);
  transition: background-color .4s;
}
.button:hover{
  background-color: var(--first-color-alt);
}
.button-dark{
  position: relative;
  background: linear-gradient(var(--dark-color),var(--dark-color)),
              linear-gradient(225deg, var(--second-color) 0% , var(--dark-color) 25%);
  border: 3px solid transparent;
  background-origin: border-box;
  background-clip: padding-box,border-box;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 16px hsla(218, 68%, 18%, .4);
  overflow: hidden;
}

.button-dark::after{
  content: '';
  width: 40px;
  height: 40px;
  background-color: var(--second-color);
  border-radius: 50%;
  position: absolute;
  top: -.5rem;
  right: -.5rem;
  filter: blur(25px);
}

.button-dark i{
  font-size: 1.5rem;
  transition: transform .4s;
}
.button-dark:hover i{
  transform: translateX(.25rem);
}


/*=============== HOME ===============*/
.home__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; /* This aligns both columns vertically center */
    gap: 2rem;
    padding-top: 2rem;
}

/* LEFT SIDE TEXT */
.home__data {
    text-align: left;
}

.home__title {
    font-size: 3rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
}

.home__title span {
    font-weight: var(--font-regular);
    color: var(--first-color);
}

.home__description {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    max-width: 520px;
}

/* BUTTONS */
.home__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.button-light {
    background: transparent;
    border: 2px solid var(--first-color);
    color: var(--first-color);
}

.button-light:hover {
    background: var(--first-color);
    color: #fff;
}

/* STATS WITH TICKS */
.home__stats {
    margin-top: 2rem;
    display: grid;
    row-gap: 1rem;
}

.home__stat {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1rem;
}

.home__stat i {
    font-size: 1.4rem;
    color: var(--first-color);
}

/* RIGHT IMAGE */
.home__image {
    position: relative;
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start to match text */
    justify-content: center;
    width: 100%;
    max-width: 768px;
    height: auto;
    margin: 0 auto;
}

.home__img {
    width: 100%;
    height: auto;
    max-height: 1268px;
    object-fit: contain;
    position: relative; /* Changed from absolute to relative */
    margin-top: 0; /* Ensure no extra margin */
}

/*=============== TRUST SECTION ===============*/
.trust {
  padding-block: 4rem 2rem;
  background-color: var(--white-color);
}

.trust__container {
  display: grid;
  gap: 3rem;
}

.trust__header {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.trust__title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: var(--font-semi-bold);
}

/* Stats Grid - 4 columns in a row */
.trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.trust__stat {
  text-align: center;
  padding: 1.5rem;
}

.trust__percentage {
  font-size: 3.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust__stat-title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}

.trust__stat-description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.4;
}

/* Quick Navigation Section */
.trust__quick-nav {
  margin-top: 4rem;
  text-align: center;
}

.trust__quick-nav-title {
  font-size: var(--bigger-font-size);
  color: var(--title-color);
  margin-bottom: 3rem;
  font-weight: var(--font-semi-bold);
}

.trust__quick-nav-card {
  background: var(--body-color);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px hsla(218, 68%, 18%, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  max-width: 500px;
  margin: 0 auto;
}

.trust__quick-nav-card:hover {
  transform: translateY(-5px);
  border-color: var(--first-color);
  box-shadow: 0 8px 32px hsla(218, 68%, 18%, 0.15);
}

.trust__quick-nav-icon {
  width: 80px;
  height: 80px;
  background-color: var(--first-color);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.trust__quick-nav-card:hover .trust__quick-nav-icon {
  background-color: var(--first-color-alt);
  transform: scale(1.05);
}

.trust__quick-nav-card-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.trust__quick-nav-card-description {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.trust__quick-nav-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--first-color);
  color: var(--white-color);
  border-radius: 0.75rem;
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px hsla(218, 94%, 45%, 0.3);
}

.trust__quick-nav-button:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px hsla(218, 94%, 45%, 0.4);
}

/* Purple Theme Overrides */
.purple-theme .trust {
  background-color: var(--body-color);
}

.purple-theme .trust__stat {
  background-color: transparent;
}

.purple-theme .trust__percentage {
  color: var(--first-color);
}

.purple-theme .trust__stat-title {
  color: var(--title-color);
}

.purple-theme .trust__stat-description {
  color: var(--text-color-light);
}

.purple-theme .trust__quick-nav-card {
  box-shadow: 0 4px 20px hsla(280, 50%, 75%, 0.3);
}

.purple-theme .trust__quick-nav-card:hover {
  border-color: var(--first-color);
  box-shadow: 0 8px 32px hsla(280, 50%, 75%, 0.4);
}

.purple-theme .trust__quick-nav-icon {
  background-color: var(--first-color);
}

.purple-theme .trust__quick-nav-card:hover .trust__quick-nav-icon {
  background-color: var(--first-color-alt);
}

.purple-theme .trust__quick-nav-button {
  background-color: var(--first-color);
  box-shadow: 0 4px 16px hsla(280, 50%, 75%, 0.4);
}

.purple-theme .trust__quick-nav-button:hover {
  background-color: var(--first-color-alt);
  box-shadow: 0 8px 24px hsla(280, 50%, 75%, 0.5);
}
/*=============== DELIVERY SERVICES SECTION ===============*/

.delivery {
  padding-block: 6rem 4rem;
}

.delivery__heading {
  text-align: center;
  margin-bottom: 4rem;
}

.delivery__description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* Services Grid */
.delivery__services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start; /* 🔥 This is the key */
}

/* Each Service Box - DEFAULT HEIGHT */
.delivery {
  padding-block: 6rem 4rem;
}

.delivery__heading {
  text-align: center;
  margin-bottom: 4rem;
}

.delivery__description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* Services Grid */
.delivery__services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Each Service Box - DEFAULT HEIGHT */
.delivery__service {
 background: var(--container-color);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 18px hsla(218, 68%, 18%, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  /* ❌ remove min-height */
}

/* SPECIFIC: Make Hospital Billing (Service 7) SHORTER */
.delivery__service:nth-child(7) {
  min-height: 240px; /* Even shorter than default */
  justify-content: flex-start;
}

/* SPECIFIC: Make Premium Add-On Services (Service 8) TALLER */
.delivery__service:nth-child(8) {
  min-height: 350px; /* Taller than default */
  justify-content: space-between;
}

/* Hover effect */
.delivery__service:hover {
  transform: translateY(-8px);
}

/* Title */
.delivery__subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

/* Paragraphs */
.delivery__service p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Allow text to expand */
}

/* Button */
.delivery__btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--first-color);
  color: white;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: background 0.3s;
  text-align: center;
  margin-top: auto; /* Pushes button to bottom */
  align-self: flex-start;
  min-width: 140px;
}

.delivery__btn:hover {
  background: var(--first-color-alt);
}



/* Hover effect */
.delivery__service:hover {
  transform: translateY(-8px);
}

/* Title */
.delivery__subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

/* Paragraphs */
.delivery__service p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Allow text to expand */
}

/* Button */
.delivery__btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--first-color);
  color: white;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: background 0.3s;
  text-align: center;
  margin-top: auto; /* Pushes button to bottom */
  align-self: flex-start;
  min-width: 140px;
}

.delivery__btn:hover {
  background: var(--first-color-alt);
}
/*===================================*/
/*=============Benefits==============*/
/*===================================*/
.benefits {
  padding-block: 6rem 4rem;
  background-color: var(--body-color);
}

.benefits__container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.benefits__header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits__title {
  font-size: 2.5rem;
  color: var(--title-color);
  font-weight: 600;
  line-height: 1.3;
}

.benefits__title .highlight {
  color: var(--first-color);
}

/* Benefits Grid - Exactly 2x2 */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin-inline: auto;
}

.benefit__card {
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit__icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--first-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit__icon {
  font-size: 1.8rem;
  color: rgb(255, 255, 255);
}

.benefit__title {
  font-size: 1.25rem;
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.benefit__description {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1rem;
}

/*=============== PROJECT CTA ===============*/
.project-cta {
  padding-block: 5rem;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
}

.project-cta__container {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}

.project-cta__title {
  font-size: 2.5rem;
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.project-cta__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-inline: auto;
}

.project-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.project-cta__button {
  background: white;
  color: var(--first-color);
  font-weight: 600;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.project-cta__button:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/*=============== TESTIMONIALS SECTION ===============*/
.testimonials-section {
  padding-block: 6rem 4rem;
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(var(--first-color-rgb), 0.03) 0%,
    rgba(var(--second-color-rgb), 0.02) 100%);
  pointer-events: none;
}

.testimonials-section__container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonials-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-section__title {
  font-size: 2.5rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.testimonials-section__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--first-color), var(--second-color));
  border-radius: 2px;
}

.testimonials-section__subtitle {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 600px;
  margin-inline: auto;
}

/* Testimonials Cards with Hover Effects */
.testimonials-section__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.testimonial__card {
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px hsla(218, 68%, 18%, 0.08);
  border: 1px solid rgba(var(--first-color-rgb), 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
}

.testimonial__card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 6rem;
  font-family: serif;
  color: rgba(var(--first-color-rgb), 0.1);
  line-height: 1;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial__card:hover::before {
  opacity: 1;
}

.testimonial__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px hsla(218, 68%, 18%, 0.15);
  border-color: rgba(var(--first-color-rgb), 0.2);
}

.testimonial__header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.testimonial__avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--first-color), var(--second-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.testimonial__avatar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  transform: translateX(-100%);
}

.testimonial__card:hover .testimonial__avatar::after {
  animation: avatar-shine 1.5s ease-in-out;
}

.testimonial__avatar i {
  font-size: 2rem;
  color: var(--white-color);
  z-index: 1;
}

.testimonial__info {
  flex: 1;
}

.testimonial__name {
  font-size: 1.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.25rem;
}

.testimonial__role {
  font-size: 0.875rem;
  color: var(--text-color-light);
  margin-bottom: 0.75rem;
  font-weight: var(--font-medium);
}

.testimonial__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial__stars {
  display: flex;
  gap: 0.125rem;
}

.testimonial__stars i {
  color: #FFD700;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.testimonial__card:hover .testimonial__stars i {
  animation: star-pulse 1s ease infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.testimonial__verified {
  font-size: 0.75rem;
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  background: rgba(var(--first-color-rgb), 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
}

.testimonial__verified i {
  font-size: 0.875rem;
}

.testimonial__quote {
  color: var(--text-color);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid transparent;
 transition: all 0.3s ease;
}

.testimonial__card:hover .testimonial__quote {
  color: var(--text-color);
  transform: translateX(5px);
}

/* Testimonial Navigation Controls */
.testimonials-section__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials-section__button {
  background: var(--first-color);
  color: var(--white-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px hsla(218, 94%, 45%, 0.2);
}

.testimonials-section__button:hover {
  background: var(--first-color-alt);
  transform: scale(1.1);
  box-shadow: 0 6px 20px hsla(218, 94%, 45%, 0.3);
}

.testimonials-section__button:disabled {
  background: var(--gray-color);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.testimonials-section__dots {
  display: flex;
  gap: 0.75rem;
}

.testimonials-section__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-section__dot.active {
  background: var(--first-color);
  transform: scale(1.2);
}

.testimonials-section__dot:hover:not(.active) {
  background: var(--first-color-light);
}

/* Animation Keyframes */
@keyframes avatar-shine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes star-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Stats Counter for Testimonials */
.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(var(--first-color-rgb), 0.1);
}

.testimonials-stat {
  text-align: center;
}

.testimonials-stat__number {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--first-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonials-stat__label {
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

/* Purple Theme Overrides */
.purple-theme .testimonials-section {
  background-color: var(--body-color);
}

.purple-theme .testimonials-section::before {
  background: linear-gradient(135deg, 
    hsla(280, 50%, 75%, 0.05) 0%,
    hsla(280, 30%, 90%, 0.03) 100%);
}

.purple-theme .testimonial__card {
  box-shadow: 0 10px 40px hsla(280, 50%, 75%, 0.15);
  border-color: hsla(280, 50%, 75%, 0.2);
}


.purple-theme .testimonial__avatar {
  background: linear-gradient(135deg, var(--first-color), hsl(280, 50%, 65%));
}

.purple-theme .testimonials-stats {
  border-top-color: hsla(280, 30%, 90%, 0.3);
}


/* Partners Section */
.testimonials-section__partners {
  text-align: center;
}

.partners__title {
  font-size: 1.5rem;
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.partners__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem;
}

.partner__logo {
  width: 120px;
  height: 60px;
  background: var(--gray-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  font-weight: 500;
}




/* Purple Theme Overrides */
.purple-theme .benefit__card {
  box-shadow: 0 4px 20px hsla(280, 50%, 75%, 0.2);
}

.purple-theme .benefit__card:hover {
  box-shadow: 0 8px 30px hsla(280, 50%, 75%, 0.3);
}

.purple-theme .project-cta {
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
}

.purple-theme .testimonial__card {
  box-shadow: 0 4px 20px hsla(280, 50%, 75%, 0.2);
}
/*=============== ABOUT ===============*/
.about__container{
background-color: var(--dark-color);
  padding: 4rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 8px 20px hsla(218, 94%, 45%, .25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* Text */
.about__data{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__data .section__title{
  color: var(--white-color);
  text-align: left;
}

.about__description{
  color: var(--white-color-light);
  line-height: 1.7;
  text-align: left;
  max-width: 500px;
}

/* Stats Grid Fix */
.about__info{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 4 stats = 2x2 */
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.about__stat{
  background: rgba(255,255,255,0.05);
  padding: 1.2rem;
  border-radius: 1rem;
  text-align: center;
}

.about__number{
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: .25rem;
}

.about__details,
.about__stat p{
  font-size: var(--small-font-size);
  color: var(--white-color-light);
}

/* Button */
.about__button,
.about .button{
  margin-top: 2rem;
  align-self: flex-start;
}

/* Image */
.about__img{
 width: 100%;
  max-width: 350px;
  justify-self: center;
  border-radius: 1.5rem;
  filter: drop-shadow(0 12px 25px rgba(0,0,0,.4));
  transition: transform 0.3s ease;
}

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

/*=============== PRICES ===============*/
.prices__container{
  padding-bottom: 4rem;
  row-gap: 3rem;
}

.prices__content{
  display: grid;
  position: relative;
}

.prices__description{
  text-align: center;
}

.prices__card{
  width: 304px;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsl(218, 68%, 18% ,.2);
  border-radius: 1rem;
}

.prices__heading{
  background-color: var(--first-color);
  padding: 1.5rem 1rem 1rem;
  display: flex;
  justify-content: space-between;
  border-radius: 1rem 1rem 0 0;
}

.prices__number{
  font-size: var(--bigger-font-size);
  color: var(--white-color);
  margin-bottom: .5rem;
}

.prices__titles{
  font-size: var(--h3-font-size);
  color: var(--white-color);
  align-self: flex-end;
}

.prices__list{
  display: grid;
  row-gap: .5rem;
  padding: 1.5rem 1rem;
}

.prices__item{
  display: flex;
  column-gap: .25rem;
  font-size: var(--small-font-size);
}

.prices__item i{
  color: var(--first-color);
  font-size: 1rem;
}

.prices__box{
  display: grid;
  width: 230px;
  height: 100%;
}

.prices__box{
  display: grid;
  width: 230px;
  height: 100%;
  background: linear-gradient(var(--dark-color),var(--dark-color)),
              linear-gradient(225deg,var(--second-color) 0% , var(--dark-color) 25%);
  border: 4px solid transparent;
  background-origin: border-box;
  background-clip: padding-box,border-box;
  position: absolute;
  inset: 0;
  margin-inline: auto;
  border-radius: 1.5rem;
  box-shadow: 0 8px 16px hsla(218, 94%, 45%, .2);
  overflow: hidden;
}

.prices__box::after{
  content: '';
  width: 64px;
  height: 64px;
  background-color: var(--second-color);
  border-radius: 50%;
  position: absolute;
  top: -.5rem;
  right: -.5rem;
  filter: blur(32px);
}

.prices__details{
  color: var(--white-color);
  font-size: var(--small-font-size);
  text-align: center;
  align-self: flex-end;
  padding-bottom: 1.5rem;
}

/* Swiper class */
.prices .swiper{
  width: 320px;
  overflow: initial;
  padding-block: 2rem 5rem;
}

.prices :is(.swiper-slide-next,.swiper-slide-prev){
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.prices .swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: -4rem;
}

.prices .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background-color: var(--gray-color);
  opacity: 1;
  transition: background-color .4s;
}

.prices .swiper-pagination-bullet-active{
  background-color: var(--first-color);
}
/*=============== GALLERY ===============*/
.gallery__container{
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  grid-template-areas:  'img-1 img-1'
                        'img-2 img-3'
                        'img-2 img-4';
}

.gallery__image:nth-child(1){
  grid-area: img-1;
}

.gallery__image:nth-child(2){
  grid-area: img-2;
}

.gallery__image:nth-child(3){
  grid-area: img-3;
}

.gallery__image:nth-child(4){
  grid-area: img-4;
}


.gallery__image{
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 16px hsla(218,94%,45%,.1);
}

.gallery__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform .4s;
}

.gallery__img:hover{
  transform: scale(1.2);
}
/*=============== CONTACT ===============*/
.contact__container{
  row-gap: 2rem;
  padding-bottom: 1.5rem;
}

.contact__map iframe{
  width: 100%;
  height: 100%;
}

.contact__map{
  width: 320px;
  height: 320px;
  box-shadow: 0 8px 16px hsla(218,94%,45%,.2);
  border-radius: 1.5rem;
  overflow: hidden;
}

.contact__description{
  text-align: center;
  margin-bottom: 2rem;
}

.contact__info{
  display: grid;
  row-gap: 2rem;
  justify-content: center;
  text-align: center;
}

.contact__icon{
  width: 48px;
  height: 48px;
  background-color: var(--first-color);
  color: var(--white-color);
  border: 4px solid var(--gray-color);
  border-radius: 1rem;
  display: grid;
  place-items: center;
  justify-self: center;
  font-size: 1.5rem;
  margin: 0 auto .5rem;
  transition: border-color .4s;
}


.contact__subtitle{
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
}

.contact__address{
  font-style: initial;
}

.contact__social{
  display: flex;
  justify-content: center;
  column-gap: .75rem;
}

.contact__social-link{
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform;
}

.contact__social-link:hover{
  transform: translateY(-.25rem);
}
/*=============== CONTACT FORM ===============*/
.contact__form {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact__form-group {
  width: 100%;
}

.contact__input {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 0.75rem;
  border: 2px solid var(--gray-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  outline: none;
  transition: border-color 0.3s;
}

.contact__input:focus {
  border-color: var(--first-color);
}

.contact__textarea {
  height: 140px;
  resize: none;
}

.contact__form button {
  justify-self: flex-start;
}
/*=============== SPECIALTIES PAGE ===============*/
.specialties {
  padding-block: 8rem 4rem;
}

.specialties__container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.specialties__header {
  text-align: center;
  margin-bottom: 4rem;
}

.specialties__title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: var(--font-semi-bold);
}

.specialties__description {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
}

/* Specialties Grid */
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.specialty__card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px hsla(218, 68%, 18%, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.specialty__card:hover {
  transform: translateY(-5px);
  border-color: var(--first-color);
  box-shadow: 0 8px 24px hsla(218, 68%, 18%, 0.15);
}

.specialty__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
  font-weight: var(--font-semi-bold);
}

.specialty__description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

/* CTA Section */
.specialties__cta {
  background: var(--dark-color);
  padding: 4rem;
  border-radius: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.specialties__cta-title {
  font-size: var(--bigger-font-size);
  color: var(--white-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.specialties__cta-description {
  color: var(--white-color-light);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

.specialties__cta-button {
  background-color: var(--white-color);
  color: var(--dark-color);
  font-weight: var(--font-semi-bold);
}

.specialties__cta-button:hover {
  background-color: var(--second-color);
  color: var(--dark-color);
}

/* Purple Theme Overrides */
.purple-theme .specialty__card {
  box-shadow: 0 4px 16px hsla(280, 50%, 75%, 0.3);
}

.purple-theme .specialty__card:hover {
  border-color: var(--first-color);
  box-shadow: 0 8px 24px hsla(280, 50%, 75%, 0.4);
}

.purple-theme .specialties__cta {
  background-color: var(--dark-color);
}

.purple-theme .specialties__cta-button {
  color: var(--dark-color);
}

.purple-theme .specialties__cta-button:hover {
  background-color: var(--second-color);
}
/*=============== PARTNERS PAGE ===============*/
.partners {
  padding-block: 8rem 4rem;
}

.partners__container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.partners__header {
  text-align: center;
  margin-bottom: 4rem;
}

.partners__title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: var(--font-semi-bold);
}

.partners__description {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
}

/* Partners Grid */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.partner__card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px hsla(218, 68%, 18%, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.partner__card:hover {
  transform: translateY(-5px);
  border-color: var(--first-color);
  box-shadow: 0 8px 24px hsla(218, 68%, 18%, 0.15);
}

.partner__logo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--gray-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: var(--first-color);
  font-size: 2.5rem;
}

.partner__name {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}

.partner__type {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.4;
}

/* CTA Section */
.partners__cta {
  background: var(--dark-color);
  padding: 4rem;
  border-radius: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.partners__cta-title {
  font-size: var(--bigger-font-size);
  color: var(--white-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.partners__cta-description {
  color: var(--white-color-light);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

.partners__cta-button {
  background-color: var(--white-color);
  color: var(--dark-color);
  font-weight: var(--font-semi-bold);
}

.partners__cta-button:hover {
  background-color: var(--second-color);
  color: var(--dark-color);
}

/* Purple Theme Overrides */
.purple-theme .partner__card {
  box-shadow: 0 4px 16px hsla(280, 50%, 75%, 0.3);
}

.purple-theme .partner__card:hover {
  border-color: var(--first-color);
  box-shadow: 0 8px 24px hsla(280, 50%, 75%, 0.4);
}

.purple-theme .partner__logo-placeholder {
  background: hsl(280, 30%, 92%);
}

.purple-theme .partners__cta {
  background-color: var(--dark-color);
}

.purple-theme .partners__cta-button {
  background-color: var(--white-color);
  color: var(--dark-color);
}

.purple-theme .partners__cta-button:hover {
  background-color: var(--second-color);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--dark-color);
  padding-block: 3rem 1.5rem;
  color: var(--white-color);
}

.footer__container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

.footer__logo i {
  color: var(--second-color);
  font-size: 2rem;
}

.footer__description {
  color: var(--white-color-light);
  font-size: var(--small-font-size);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer__section-title {
  color: var(--white-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

/* Quick Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: var(--white-color-light);
  font-size: var(--small-font-size);
  transition: color 0.3s, transform 0.3s;
}

.footer__link:hover {
  color: var(--second-color);
  transform: translateX(4px);
}

/* Services List */
.footer__services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.footer__service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-color-light);
  font-size: var(--small-font-size);
}

.footer__service-item i {
  color: var(--second-color);
  font-size: 0.9rem;
}

/* Contact Info */
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  background-color: var(--first-color);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer__contact-details {
  display: flex;
  flex-direction: column;
}

.footer__contact-title {
  color: var(--white-color);
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  margin-bottom: 0.25rem;
}

.footer__contact-text {
  color: var(--white-color-light);
  font-size: 0.75rem;
}

/* Social Media - Compact */
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white-color);
  font-size: 1rem;
  transition: background-color 0.3s;
}

.footer__social-link:hover {
  background-color: var(--first-color);
}

/* Compact Newsletter */
.footer__newsletter {
  margin-top: 1rem;
}

.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white-color);
  font-size: 0.75rem;
  outline: none;
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__newsletter-button {
  padding: 0.6rem 1rem;
  background-color: var(--first-color);
  color: var(--white-color);
  border: none;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer__newsletter-button:hover {
  background-color: var(--first-color-alt);
}

/* Copyright - More Compact */
.footer__copy {
  display: block;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: var(--white-color-light);
  line-height: 1.4;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
width: 0.6rem;
border-radius: 1rem;
background-color: hsl(218, 16%, 90%);
}


::-webkit-scrollbar-thumb{
  border-radius: 1rem;
  background-color: hsl(218, 16%, 80%);
}


::-webkit-scrollbar-thumb:hover{
  background-color: hsl(218, 16%, 70%);
}
/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(218,68%,18%,.1);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .5rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s ,background-color .4s, color .4s;
}

.scrollup:hover{
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 360px) {
    .nav__logo-img {
    width: 50px; /* Smaller for mobile */
    height: auto;
  }
  .container{
    margin-inline: 1rem;
  }
  .section__title{
    font-size: 1.5rem;
  }

  .prices .swiper{
    width: 280px;
  }
  .contact__map{
    width: 100%;
  }
    .home__title{
    font-size: 2rem;
    text-align: center;
  }

  .home__description{
    text-align: center;
    font-size: .95rem;
  }

  .home__buttons{
    justify-content: center;
  }

  .home__img{
    width: 280px;
  }
  .contact__form button {
    width: 100%;
    justify-content: center;
  }
  .specialties__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .specialty__card {
    padding: 1.25rem;
  }
  
  .specialties__cta {
    padding: 1.5rem 1rem;
  }
  
  .specialties__cta-title {
    font-size: 1.2rem;
  }
  
}


@media screen and (max-width: 330px){
  .home__title{
    font-size: 1.7rem;
  }

  .home__img{
    width: 250px;
  }
  .home__icons{
    flex-direction: column;
  }

.delivery__img{
  width: 270px;
}

.about__container{
  padding-inline: 1rem;
}

.prices .swiper{
  width: 250px;
}

.footer__links{
  column-gap: 1.5rem;
}

}
/* Fix for 361px - 439px (between 360 and 440) */
@media screen and (min-width: 361px) and (max-width: 439px) {
  .specialties__grid {
    grid-template-columns: 1fr; /* Keep single column */
    gap: 1rem;
    max-width: 320px;
    margin-inline: auto;
  }
  
  .specialty__card {
    padding: 1.5rem;
  }
  
  .specialty__title {
    font-size: 1.1rem;
  }
  
  .specialty__description {
    font-size: 0.9rem;
  }
  
  .specialties__cta {
    padding: 2rem 1.25rem;
    max-width: 320px;
    margin-inline: auto;
  }
  
}
/* For medium devices */

@media screen and (max-width:440px){
   .home__container{
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
  }

  .home__buttons{
    justify-content: center;
  }

  .home__img{
    width: 350px;
  }
  .delivery__container,
  .contact__container{
    grid-template-columns: 350px;
    justify-content: center;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
  
  .about__data {
    order: 1;
    text-align: center;
  }
  
  .about__data .section__title {
    text-align: center;
    font-size: 2rem;
  }
  
  .about__description {
    text-align: center;
    font-size: 1rem;
    max-width: 400px;
    margin-inline: auto;
  }
  
  .about__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 400px;
    margin-inline: auto;
  }
  
  .about__stat {
    padding: 1rem;
  }
  
  .about__number {
    font-size: 1.5rem;
  }
  
  .about__button {
    align-self: center;
    width: auto;
    min-width: 200px;
    justify-content: center;
    margin-inline: auto;
  }
  
  .about__img {
    order: 2;
    max-width: 320px;
    margin: 0 auto;
  }

  .prices__container{
    width: 350px;
    margin-inline: auto;
  }

  .gallery__container{
    grid-template-columns: repeat(2,190px);
    justify-content: center;
  }
}
@media screen and (max-width:768px){
 .nav__logo-img {
    width: 70px; /* Adjust for tablets */
    height: auto;
  }
  
  
  .trust__stats {
    grid-template-columns: 1fr;
  }
  
  .quick-nav__cards {
    grid-template-columns: 1fr;
  }
  
  .trust__title {
    font-size: var(--h1-font-size);
  }
  
  .quick-nav__title {
    font-size: var(--h1-font-size);
  }

  .delivery__container{
     grid-template-columns: repeat(2,350px);
     align-items: center;
  }

  .delivery__data .section__title,
  .delivery__description{
    text-align: initial;
  }

  .delivery__data{
    order: 1;
  }
  .about__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
  
  .about__data {
    order: 1;
    text-align: center;
  }
  
  .about__data .section__title {
    text-align: center;
    font-size: 2rem;
  }
  
  .about__description {
    text-align: center;
    font-size: 1rem;
    max-width: 400px;
    margin-inline: auto;
  }
  
  .about__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 400px;
    margin-inline: auto;
  }
  
  .about__stat {
    padding: 1rem;
  }
  
  .about__number {
    font-size: 1.5rem;
  }
  
  .about__button {
    align-self: center;
    width: auto;
    min-width: 200px;
    justify-content: center;
    margin-inline: auto;
  }
  
  .about__img {
    order: 2;
    max-width: 320px;
    margin: 0 auto;
  }

  

  
}

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

  .section{
    padding-block: 7rem 2rem;
  }
  .section__ltitle{
    margin-bottom: 1.5rem;
  }
  .nav{
    height: calc(var(--header-height)+ 2rem);
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__menu {
    position: static;
    width: initial;
    background-color: transparent;
    padding: 0;
    top: 0;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 4rem;
  }
.nav__logo-img {
    width: 80px; /* Adjust for desktop */
    height: auto;
  }
  .purple-theme .nav__menu {
    box-shadow: none;
  }
 .home__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 5rem;
        padding-top: 5rem;
    }
    
.home__title {
        font-size: 3.5rem;
    }
    
.home__description {
        font-size: 1.1rem;
        max-width: 520px;
    }
    
.home__img {
        width: 480px;
        height: auto;
    }
  .home__content{
    column-gap: 3rem;
  }
  .home__info{
    padding-block: 3rem;
  }
  .home__name{
    font-size: var(--h1-font-size);
  }
  .home__profession{
    font-size: var(--normal-font-size);
    margin-bottom: 3rem;
  }
  .home__box{
    width: 88px;
    height: 88px;
    font-size: 2.5rem;
  }
  .home__button{
    padding: 7rem 2rem;
    border-radius: 1rem;
  }
    .trust__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .delivery__container{
    grid-template-columns: 380px 450px;
    column-gap: 10rem;
  }

  .delivery__content{
    width: 280px;
    padding-block: 4rem 3rem;
  }

  .delivery__title{
    font-size: var(--h2-font-size);
  }

  .delivery__image{
    margin-bottom: 5rem;
  }

  .delivery__img{
    width: 280px;
    height: 240px;
  }

  .delivery__description{
    margin-bottom: 3rem;
  }

  .delivery__info{
    grid-template-columns: repeat(3,180px);
    column-gap: 6rem;
    padding-bottom: 3rem;
  }

  .delivery__icon{
    margin-bottom: .75rem;
  }

  .delivery__subtitle{
    font-size: var(--normal-font-size);
    margin-bottom: .75rem;
  }
  
  .about__container{
    width: initial;
    grid-template-columns: 440px 320px;
    justify-content: center;
    column-gap: 10rem;
    padding-block: 3rem;
  }

  .about__stat{
    padding-right: 2.5rem;
  }

  .about__number{
    margin-bottom: .5rem;
  }

  .about__details{
    font-size: var(--normal-font-size);
  }

  .about__img{
    width: 320px;
  }

  .prices__container{
    row-gap: 4rem;
  }

  .prices__box{
    width: 660px;
    border-radius: 2rem;
  }

  .prices__details{
    font-size: var(--normal-font-size);
    padding-bottom: 2.5rem;
  }

  .prices .swiper{
    width: 460px;
    padding-block: 2.5rem 7rem;
  }

  .prices__heading{
    padding: 1.5rem;
  }

  .prices__number{
    font-size: var(--h1-font-size);
  }

  .prices__list{
    padding: 2rem 1.5rem 3.5rem;
    row-gap: 1rem;
  }

  .prices__item{
    font-size: var(--normal-font-size);
  }

  .prices__box::after{
    width: 100px;
    height: 100px;
    filter: blur(60px);
  }

  .gallery__container{
    grid-template-columns: repeat(2,400px);
    gap: 2rem;
  }

  .gallery__image:nth-child(1){
    height: 400px;
  }
  
  .contact__container {
    grid-template-columns: 440px 450px;
    column-gap: 10rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin-inline: auto;
  }
  
  .contact__data .section__title {
    text-align: left;
    margin-bottom: 1.5rem;
  }
  
  .contact__description {
    text-align: left;
    margin-bottom: 2.5rem;
  }
  
  .contact__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    justify-items: start;
    text-align: left;
    margin-top: 0;
  }
  
  .contact__icon {
    margin: 0 0 0.75rem 0;
    justify-self: start;
  }
  
  .contact__subtitle {
    text-align: left;
  }
  
  .contact__address {
    text-align: left;
  }
  
  .contact__map {
    width: 450px;
    height: 450px;
    max-width: 450px;
    border-radius: 2rem;
  }
  
  .contact__form {
    margin-top: 2rem;
  }
  
  .contact__form button {
    justify-self: flex-start;
  }
  .footer{
    padding-top: 6rem;
  }

  .footer__container{
    grid-template-columns: repeat(3,1fr);
    align-items: center;
  }

  .footer__logo{
    margin-bottom: 0;
    font-size: var(--h2-font-size);
    justify-self: flex-start;
  }

  .footer__social{
    justify-self: flex-end;
  }

  .footer__link{
    font-size: var(--normal-font-size);
  }

  .scrollup{
    right: 3rem;
  }
}

/* For 2K resolutions (2048 x 1152, 2048 x 1536) */

@media screen and (min-width : 2048px) {
 body{
  zoom: 1.2;
 }
}

@media screen and (max-width: 992px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .testimonials-section__cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }
  
  .benefits__title,
  .project-cta__title,
  .testimonials-section__title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .benefits__title,
  .project-cta__title,
  .testimonials-section__title {
    font-size: 1.75rem;
  }
  
  .project-cta__description,
  .testimonials-section__subtitle {
    font-size: 1rem;
  }
  
  .benefit__card {
    padding: 2rem;
  }
  
  .partners__grid {
    gap: 1.5rem;
  }
  
  .partner__logo {
    width: 100px;
    height: 50px;
  }
}

/*=============== RESPONSIVE BREAKPOINTS - ADDING MISSING STYLES ===============*/

/* For small devices (0px - 360px) - Additional styles */
@media screen and (max-width: 360px) {
  .trust__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust__percentage {
    font-size: 2.5rem;
  }
  
  .trust__quick-nav-card {
    padding: 2rem 1rem;
  }
  
  .trust__quick-nav-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .specialties__grid,
  .partners__grid {
    grid-template-columns: 1fr;
  }
  
  .specialties__cta,
  .partners__cta {
    padding: 2rem 1rem;
  }
  
  .benefits__title,
  .project-cta__title,
  .testimonials-section__title {
    font-size: 1.5rem;
  }
  
  .benefit__card {
    padding: 1.5rem;
  }
  
  .testimonials-section__cards {
    grid-template-columns: 1fr;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer__contact-item {
    justify-content: center;
  }
}

/* For medium devices (361px - 440px) */
@media screen and (min-width: 361px) and (max-width: 440px) {
  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-section__cards {
    grid-template-columns: 1fr;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
  }
}

/* For medium devices (441px - 768px) */
@media screen and (min-width: 441px) and (max-width: 768px) {
  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .specialties__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For tablets (769px - 1024px) - More specific adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .trust__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .specialties__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-section__cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* For large devices (1025px - 1150px) */
@media screen and (min-width: 1025px) and (max-width: 1150px) {
  .trust__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .specialties__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .partners__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-section__cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*=============== SPECIFIC RESPONSIVE ADJUSTMENTS ===============*/

/* Trust Section Mobile Adjustments */
@media screen and (max-width: 768px) {
  .trust__title {
    font-size: var(--bigger-font-size);
  }
  
  .trust__percentage {
    font-size: 2.8rem;
  }
  
  .trust__quick-nav-title {
    font-size: var(--h1-font-size);
    margin-bottom: 2rem;
  }
  
  .trust__quick-nav-card {
    padding: 2rem;
  }
  
  .trust__quick-nav-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .trust__quick-nav-card-title {
    font-size: var(--h2-font-size);
  }
}

/* Benefits Section Mobile Adjustments */
@media screen and (max-width: 768px) {
  .benefits__title {
    font-size: var(--h1-font-size);
  }
  
  .benefit__card {
    padding: 1.5rem;
  }
  
  .benefit__icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .benefit__icon {
    font-size: 1.5rem;
  }
  
  .benefit__title {
    font-size: var(--h3-font-size);
  }
}

/* Project CTA Mobile Adjustments */
@media screen and (max-width: 768px) {
  .project-cta {
    padding-block: 3rem;
  }
  
  .project-cta__title {
    font-size: var(--h1-font-size);
  }
  
  .project-cta__description {
    font-size: var(--normal-font-size);
  }
}

/* Testimonials Section Mobile Adjustments */
@media screen and (max-width: 768px) {
  .testimonials-section__title {
    font-size: var(--h1-font-size);
  }
  
  .testimonials-section__subtitle {
    font-size: var(--normal-font-size);
  }
  
  .testimonial__card {
    padding: 1.5rem;
  }
  
  .testimonial__avatar {
    width: 50px;
    height: 50px;
  }
  
  .testimonial__avatar i {
    font-size: 1.5rem;
  }
  
  .testimonial__name {
    font-size: var(--h3-font-size);
  }
}

/* Specialties & Partners Mobile Adjustments */
@media screen and (max-width: 768px) {
  .specialties__title,
  .partners__title {
    font-size: var(--bigger-font-size);
  }
  
  .specialty__card,
  .partner__card {
    padding: 1.5rem;
  }
  
  .partner__logo-placeholder {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .specialties__cta,
  .partners__cta {
    padding: 2.5rem 1.5rem;
  }
  
  .specialties__cta-title,
  .partners__cta-title {
    font-size: var(--h1-font-size);
  }
}

/* Footer Mobile Adjustments */
@media screen and (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__column {
    align-items: center;
  }
  
  .footer__description {
    text-align: center;
  }
  
  .footer__contact-item {
    justify-content: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__newsletter-form {
    flex-direction: column;
  }
}

/* Extra small devices (max-width: 330px) - Additional fixes */
@media screen and (max-width: 330px) {
  .trust__stats {
    grid-template-columns: 1fr;
  }
  
  .specialties__grid,
  .partners__grid {
    grid-template-columns: 1fr;
  }
  
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-section__cards {
    grid-template-columns: 1fr;
  }
  
  .trust__quick-nav-card,
  .specialties__cta,
  .partners__cta {
    padding: 1.5rem 1rem;
  }
}


