@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* Eduzap Primary Color Palette - Updated to your new app theme */
  --primary-color: #0961f5; /* Vibrant Blue */
  --primary-color-dark: #0755d4; /* A slightly darker shade for hover effects */
  --accent-color: #ff3d71; /* Lively Pink/Red */
  --accent-color-light: #ffe9ee; /* A lighter shade for backgrounds */

  --text-dark: #262626;
  --text-light: #737373;
  --extra-light: #e5e5e5;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem 1rem 5rem 1rem;
}

.section__header {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

#get_what{
  color: white;
}
.section__header {
  color: var(--primary-color); /* Now using your new primary blue */
}
.section__header span {
  color: var(--primary-color); /* Now using your new primary blue */
}

.section__description {
  font-weight: bold;
  max-width: 600px;
  margin-inline: auto;
  color: #000;
  line-height: 1.75rem;
  text-align: center;
}

.btn {
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(
    --primary-color
  ); /* Button background is your primary blue */
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark); /* Darker blue on hover */
  box-shadow: 2px 2px 10px rgba(9, 97, 245, 0.5); /* Shadow matches primary blue */
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color); /* 'Edu' part of Eduzap in blue */
}

.logo span {
  color: var(--accent-color); /* 'zap' part of Eduzap in pink/red */
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--extra-light);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--extra-light);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 500;
  color: var(--text-dark);
}

.nav__links a:hover {
  color: var(--primary-color); /* Nav links hover in primary blue */
}

.logo_img {
  position: relative;
  max-width: 60px;
  /* padding: 7px; */
  border-radius: 100%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.header__container {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.header__container h2 {
  max-width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color); /* Small header text in accent pink/red */
  background-color: var(
    --accent-color-light
  ); /* Lighter background for the accent */
  border-radius: 5rem;
}

.header__container h2 img {
  max-width: 25px;
}

.header__container h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 5.5rem;
}

.header__container h1 span {
  color: var(--primary-color); /* Main heading highlight in primary blue */
}

.header__container p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  line-height: 2rem;
  text-align: center;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header__btns a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.header__btns a span {
  padding: 5px 11px;
  font-size: 1.5rem;
  color: var(--white);
  background-color: var(
    --primary-color
  ); /* Play button icon background in primary blue */
  border-radius: 100%;
  transition: 0.3s;
}

.header__btns a:hover span {
  box-shadow: 2px 2px 10px rgba(9, 97, 245, 0.5); /* Shadow matches primary blue */
}

/* Header floating icons - ensure your new icons (e.g., book-icon-1.png) have transparent backgrounds for best results */
.header__container > img {
  position: absolute;
  max-width: 80px;
  padding: 5px;
  border-radius: 60%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: transform 0.1s ease-out;
  animation: float 3s ease-in-out infinite; /* Adjust duration and timing function as needed */
}
.header__container > img:nth-child(1) {
  top: 10%;
  left: 10%;
  /* transform: translate(-50%, -50%); */
  /* animation-delay: 0s; No delay for the first one */
}

.header__container > img:nth-child(2) {
  top: 50%;
  left: 1rem;
  /* transform: translateY(-50%); */
  /* animation-delay: 0.5s; Stagger the animation start */
}

.header__container > img:nth-child(3) {
  top: 75%;
  left: 20%;
  /* transform: translate(-50%, -50%);
    animation-delay: 1s; */
}

.header__container > img:nth-child(4) {
  top: 10%;
  right: 15%;
  /* transform: translate(-50%, -50%);
    animation-delay: 1.5s; */
}

.header__container > img:nth-child(5) {
  top: 50%;
  right: 1rem;
  /* transform: translateY(-50%);
    animation-delay: 2s; */
}

.header__container > img:nth-child(6) {
  top: 65%;
  right: 10%;
  /* transform: translate(-50%, -50%);
    animation-delay: 2.5s; */
}


/* --- Steps Section Styling --- */
.steps {
    padding: 5rem 1rem; /* Consistent padding for sections */
    background-image: url("newImages/step_background.jpg"); /* Placeholder image */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: adds a parallax scroll effect to the background */
}

.section__container {
    max-width: 1200px;
    margin-inline: auto;
    text-align: center;
}

.section__header {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    color: var(--primary-color)
}

.section__header span {
    color: var(--primary-color);
}


.section__description {
    font-size: 1rem;
    color: #000;
    line-height: 1.75rem;
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 3rem; /* Space before the grid */
}

.steps__grid {
    margin-top: 4rem; /* As per your existing CSS */
    display: grid;
    /* Responsive grid: 2 columns on desktop, 1 on mobile, 2 or 3 on tablet */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; /* Increased gap for better spacing */
    padding: 1rem; /* Some padding around the grid */
}

.steps__card {
    padding: 2rem; /* Slightly more padding for a cleaner look */
    background-color: var(--white);
    border-radius: 10px; /* Slightly more rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Initial subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid transparent; /* To prevent layout shift when border appears */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* Smooth transitions for hover */
}

.steps__card span {
    display: flex; /* Use flex for perfect centering of icon */
    align-items: center;
    justify-content: center;
    width: 60px; /* Icon container size */
    height: 60px;
    border-radius: 100%; /* Circular shape */
    font-size: 2rem; /* Icon size */
    margin-bottom: 1.5rem; /* Space below icon */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; /* Smooth icon transitions */
}

/* Eduzap Steps Card Colors - Preserving your specific initial colors */
.steps__card:nth-child(1) span {
    color: var(--accent-color);
    background-color: var(--accent-color-light);
}

.steps__card:nth-child(2) span {
    color: var(--primary-color);
    background-color: #e7edf8;
}

.steps__card:nth-child(3) span {
    color: #3ac2ba;
    background-color: #f0fffe;
}

.steps__card:nth-child(4) span {
    color: #fbbc09;
    background-color: #fff8e3;
}

.steps__card h4 {
    margin-bottom: 0.75rem; /* Adjusted for better spacing */
    font-size: 1.3rem; /* Slightly larger heading */
    font-weight: 700;
    color: var(--text-dark);
}

.steps__card p {
    font-size: 0.95rem; /* Slightly larger paragraph text */
    color: var(--text-light);
    line-height: 1.6rem;
}

/* --- HOVER EFFECTS --- */
.steps__card:hover {
    transform: translateY(-10px); /* Lifts the card up */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    border-color: var(--primary-color); /* Highlight border */
    cursor: pointer; /* Indicate interactivity */
}

.steps__card:hover span {
    background-color: var(--primary-color); /* Icon background changes to primary color */
    color: var(--white); /* Icon color changes to white */
    transform: scale(1.1); /* Icon slightly grows */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .steps__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section__header {
        font-size: 2rem;
    }
    .steps__grid {
        grid-template-columns: 1fr; /* Single column layout for smaller tablets and mobiles */
        gap: 1.5rem;
    }
    .steps__card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .steps {
        padding: 3rem 0.5rem;
    }
    .section__header {
        font-size: 1.8rem;
    }
    .section__description {
        font-size: 0.9rem;
    }
    .steps__card h4 {
        font-size: 1.2rem;
    }
    .steps__card p {
        font-size: 0.85rem;
    }
}

.explore__grid {
  margin-block: 4rem;
  display: grid;
  gap: 1rem;
}

.explore__card {
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.explore__card:hover {
  background-color: var(--primary-color); /* Hover effect using primary blue */
}

.explore__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 11px;
  font-size: 1.5rem;
  border-radius: 5px;
  transition: 0.3s;
}

/* Eduzap Explore/Category Card Colors - A diverse palette, with some updated */
.explore__card:nth-child(1) span {
  color: var(--accent-color); /* School Books in accent pink/red */
  background-color: var(--accent-color-light);
}

.explore__card:nth-child(2) span {
  color: var(--primary-color); /* Competition Books in primary blue */
  background-color: #e7edf8;
}

.explore__card:nth-child(3) span {
  color: #3ac2ba; /* Stationery in teal */
  background-color: #f0fffe;
}

.explore__card:nth-child(4) span {
  color: #fbbc09; /* Lab Supplies in yellow */
  background-color: #fff8e3;
}

.explore__card:nth-child(5) span {
  color: var(--primary-color); /* Art & Craft in primary blue */
  background-color: #e7edf8;
}

.explore__card:nth-child(6) span {
  color: var(--accent-color); /* Notebooks & Diaries in accent pink/red */
  background-color: var(--accent-color-light);
}

.explore__card:nth-child(7) span {
  color: #443ee0; /* Calculators & Instruments in a deeper blue */
  background-color: #f6f5ff;
}

.explore__card:nth-child(8) span {
  color: #34a753; /* Global Editions in green */
  background-color: #f1fef5;
}

.explore__card:hover span {
  color: var(--white);
  background-color: var(--primary-color-dark); /* Hover background for icons */
}

.explore__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: 0.3s;
}

.explore__card p {
  color: var(--text-light);
  transition: 0.3s;
}

.explore__card:hover h4 {
  color: var(--white);
}

.explore__card:hover p {
  color: var(--extra-light);
}

.explore__btn {
  text-align: center;
}

.job__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.job__card {
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.job__card:hover {
  background-color: var(--primary-color); /* Hover effect using primary blue */
}

.job__card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.job__card img {
  max-width: 80px;
  padding: 10px;
  border-radius: 20%;
  background-color: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.job__card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
}

.job__card h6 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: 0.3s;
}

.job__card h4 {
  margin-block: 1rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: 0.3s;
}

.job__card p {
  margin-bottom: 1rem;
  color: var(--text-light);
  transition: 0.3s;
}

.job__card__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.job__card__footer span {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.3s;
}

/* Product Card Footer Spans (e.g., In Stock, New Edition, Price) */
.job__card__footer span:nth-child(1) {
  color: var(--primary-color); /* 'In Stock' in primary blue */
  background-color: #e7edf8; /* Light background for primary */
}

.job__card__footer span:nth-child(2) {
  color: var(--accent-color); /* 'New Edition' in accent pink/red */
  background-color: var(--accent-color-light); /* Light background for accent */
}

.job__card__footer span:nth-child(3) {
  color: #34a753; /* Price in green (often associated with positive/money) */
  background-color: #f1fef5;
}

.job__card:hover :is(h5, h4) {
  color: var(--white);
}

.job__card:hover :is(h6, p) {
  color: var(--extra-light);
}

.job__card:hover .job__card__footer span {
  color: var(--white);
  background-color: var(--primary-color-dark);
}

.offer__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;
}

.offer__card img {
  width: 50%;
  margin: auto;
  border-radius: 5px;
}

.offer__details {
  margin-top: 1rem;

  display: flex;
  align-items: flex-start;
}

.offer__details span {
  font-size: 2rem;
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--text-dark);
  padding-right: 1rem;
}

.offer__details div {
  padding-left: 1rem;
  border-left: 2px solid var(--primary-color); /* Border in primary blue */
}

.offer__details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.offer__details p {
  color: var(--text-light);
}

.swiper {
  padding-top: 4rem;
  width: 100%;
  max-width: 600px;
}

.client__card img {
  max-width: 80px;
  margin-inline: auto;
  margin-bottom: 2rem;
  border-radius: 100%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.client__card p {
  margin-bottom: 1rem;
  line-height: 1.75rem;
  color: var(--text-dark);
  text-align: center;
}

.client__ratings {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.client__ratings span {
  color: goldenrod; /* Star rating color remains golden */
}

.client__card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.client__card h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}


@media (width > 540px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    background-color: transparent;
    transform: none;
  }

  .steps__grid {
    margin-top: 6rem;
    grid-template-columns: repeat(4, 1fr);
  }

  .steps__card:nth-child(2n - 1) {
    transform: translateY(-2rem);
  }

  .explore__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .job__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-column: 1/3;
  }
}

@media (width > 1024px) {
  .steps__card {
    padding: 1.5rem;
  }

  .explore__card {
    padding: 1.5rem;
  }

  .offer__grid {
    gap: 2rem;
  }
}

.banner {
  overflow: hidden;
}

.banner__wrapper {
  width: max-content;
  display: flex;
  align-items: center;

  animation: scroll-left 45s linear infinite;
}

.banner__wrapper img {
  max-width: 300px;
}
/* In your CSS file */

.banner__wrapper {
  display: flex; /* Or display: grid, if that fits your layout better */
  white-space: nowrap; /* Prevents items from wrapping to the next line */
 animation: scrollRightToLeft 45s linear infinite; /* Apply specific animation */

  /* animation: scrollBanner 30s linear infinite; Adjust duration as needed */
  /* You might need overflow: hidden on the parent of banner__wrapper */
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    /* This needs to be precisely the width of your original banner content */
    /* If you have 3 images of 300px each, it would be -900px */
    /* Or the total width of one full set of original images */
    transform: translateX(
      -50%
    ); /* If you duplicated content, moving half the total width will loop it */
    /* You might need to calculate this value precisely */
  }
}

/* Basic styling for banner images (adjust as needed) */
.banner__wrapper > * {
  /* Targets direct children of banner__wrapper */
  flex-shrink: 0; /* Prevents items from shrinking */
  width: 100%; /* Or a fixed width like 300px, if each item has a consistent width */
  /* Add your specific image/item styling here */
}


.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo img {
  max-width: 150px;
  margin-inline: auto;
}

.footer__links {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__socials a {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.footer__socials a:hover {
  color: var(--primary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}


/* General body and container styling for better readability */


.section__container {
    max-width: 1200px; /* Limits content width for better readability on large screens */
    margin: 0 auto; /* Centers the container */
    padding: 20px 20px; /* Adds horizontal padding */
}

/* Styling for the Privacy Policy section */
.privacy-policy-section {
    background-color: #ffffff; /* White background for the policy content */
    padding: 40px; /* Ample padding around the content */
    margin: 30px auto; /* Margin top/bottom and center horizontally */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Soft shadow for depth */
    max-width: 900px; /* Max width for the policy content itself */
}

.privacy-policy-section h1 {
    font-size: 2.5em; /* Larger main heading */
    color: var(--accent-color); /* A prominent blue color */
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee; /* Subtle separator */
}

.privacy-policy-section h2 {
    font-size: 1.8em; /* Sub-headings for main sections */
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid #0056b3; /* Visual accent */
    padding-left: 10px;
}

.privacy-policy-section h3 {
    font-size: 1.4em; /* Sub-sub-headings for categories within sections */
    color: #444;
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-policy-section p {
    margin-bottom: 15px;
    text-align: justify; /* Justify text for a clean block */
}

.privacy-policy-section .intro-text {
    font-size: 1.1em;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-policy-section ul {
    list-style-type: disc; /* Standard disc bullets */
    margin-left: 30px; /* Indent lists */
    margin-bottom: 20px;
}

.privacy-policy-section ul li {
    margin-bottom: 10px;
}

.privacy-policy-section strong {
    color: #000; /* Make strong text stand out more */
}

.privacy-policy-section a {
    color: #007bff; /* Standard link blue */
    text-decoration: none; /* Remove underline by default */
}

.privacy-policy-section a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Horizontal Rule (--- in HTML, interpreted as <hr> by browsers) styling */
.privacy-policy-section hr {
    border: none;
    border-top: 1px dashed #ccc; /* Dashed line for subtle separation */
    margin: 40px 0; /* Space above and below */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding:5rem 20px;
        margin: 20px auto;
    }

    .privacy-policy-section h1 {
        font-size: 2em;
    }

    .privacy-policy-section h2 {
        font-size: 1.5em;
    }

    .privacy-policy-section h3 {
        font-size: 1.2em;
    }

    .privacy-policy-section ul {
        margin-left: 20px;
    }
}

/* Contact Section Redesign */
.contact__container {
  padding-block: 5rem;
  background-color: var(--background-color-light, #f8f8f8); /* A very light background for the section */
}

.contact__container .section__description {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark); /* Ensure readability, as discussed previously */
}

.contact__form__wrapper {
  max-width: 600px; /* Slightly smaller width for a more focused form */
  margin-inline: auto;
  padding: 3rem; /* Increased padding */
  background-color: var(--white); /* Clean white background for the form itself */
  border-radius: 15px; /* More rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Stronger, softer shadow */
  border: 1px solid var(--border-color, #e0e0e0); /* Subtle border */
}

.contact__form .form__group {
  margin-bottom: 1.5rem;
}

/* Updated Input and Textarea Styles */
.contact__form input[type="email"],
.contact__form textarea {
  width: 100%;
  padding: 1.1rem 1.2rem; /* Increased padding for more spacious feel */
  border: 1px solid var(--input-border, #d1d5db); /* Softer, slightly darker border */
  border-radius: 8px; /* Slightly more rounded inputs */
  font-size: 1rem; /* Slightly larger font inside inputs */
  color: var(--text-dark);
  background-color: var(--input-bg, #f9fafb); /* Light background for inputs */
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--text-light-placeholder, #9ca3af); /* Muted placeholder color */
  opacity: 1; /* Ensures placeholder is not transparent */
}


.contact__form input[type="email"]:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--primary-color); /* Highlight border on focus */
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2); /* Subtle blue glow on focus */
}

.contact__form textarea {
  resize: vertical;
  min-height: 120px; /* Slightly larger default height for message box */
}

/* Redesigned Button Styles */
.contact__btn {
  width: 100%;
  padding: 1.2rem; /* Increased padding for a larger button */
  font-size: 1.1rem; /* Slightly larger text on button */
  font-weight: 700; /* More prominent text */
  cursor: pointer;
  border: none;
  border-radius: 8px; /* Rounded corners for the button */
  background-color: var(--primary-color); /* Retain your primary color */
  color: var(--white);
  letter-spacing: 0.5px; /* Slight letter spacing for style */
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3); /* Subtle shadow for the button */
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.contact__btn:hover {
  background-color: var(--primary-color-dark); /* Darker shade on hover */
  transform: translateY(-2px); /* Slight lift effect on hover */
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4); /* Enhanced shadow on hover */
}

/* Add these new CSS variables if they don't exist in your main styles */
:root {
  --background-color-light: #f8f8f8; /* Light background for sections */
  --input-border: #d1d5db; /* Default input border color */
  --input-bg: #f9fafb; /* Default input background color */
  --text-light-placeholder: #9ca3af; /* Placeholder text color */
  --border-color: #e0e0e0; /* General border color for elements */

  /* Assuming --primary-color is defined, if you want a subtle glow on focus */
  /* You'll need to define --primary-rgb for this to work, e.g., if --primary-color is #007bff */
  /* --primary-rgb: 0, 123, 255; */
}