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

:root {
  --primary-color: #302d4e;
  --secondary-color: #FFC300;
  --text-dark: #0e0d16;
  --text-light: #767268;
  --extra-light: #f7f8fd;
  --white: #ffffff;
  --max-width: 1200px;
}

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

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--secondary-color);
}

.nav__logo a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.5rem;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__btns {
  display: none;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5rem;
  text-align: center;
}

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.header__image img {
  max-width: 450px;
  margin-inline: auto;
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 4.75rem;
  text-align: center;
}

.header__content h1 span {
  color: var(--secondary-color);
}

.header__btns {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__btns a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.header__btns a span {
  margin-right: 0.5rem;
  width: 2.5rem;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 2px solid var(--text-dark);
  border-radius: 100%;
}

.service {
  background-color: var(--extra-light);
}

.service__container.section__header {
  max-width: 750px;
  margin-inline: auto;
}

.service__grid {
  margin-block: 4rem;
  display: grid;
  gap: 1rem;
}

.service__card {
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: var(--white);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.service__card:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.service__card:nth-child(1):hover {
  border-color: #00d5be;
}

.service__card:nth-child(2):hover {
  border-color: #ff637e;
}

.service__card:nth-child(3):hover {
  border-color: #c27aff;
}

.service__card:nth-child(4):hover {
  border-color: #00bcff;
}

.service__card div {
  margin-bottom: 1rem;
  max-width: max-content;
  padding: 5px 8px;
  font-size: 1.75rem;
  border-radius: 5px;
}

.service__card:nth-child(1) div {
  color: #00d5be;
  background-color: #f0fdfa;
}

.service__card:nth-child(2) div {
  color: #ff637e;
  background-color: #fff1f2;
}

.service__card:nth-child(3) div {
  color: #c27aff;
  background-color: #faf5ff;
}

.service__card:nth-child(4) div {
  color: #00bcff;
  background-color: #f0f9ff;
}

.service__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service__card .section__description {
  text-align: left;
}

.service__btn {
  display: flex;
  justify-content: center;
}

.about__container {
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 550px;
  max-height: 1000px;
  margin-inline: auto;
}

.about__content .section__header {
  margin-bottom: 2rem;
  text-align: left;
}

.about__list {
  display: grid;
  gap: 2rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__list li span {
  max-width: max-content;
  padding: 5px 8px;
  font-size: 1.75rem;
  border-radius: 5px;
}

.about__list li:nth-child(1) span {
  color: #00d5be;
  background-color: #f0fdfa;
}

.about__list li:nth-child(2) span {
  color: #ff637e;
  background-color: #fff1f2;
}

.about__list li:nth-child(3) span {
  color: #c27aff;
  background-color: #faf5ff;
}

.about__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about__list .section__description {
  text-align: left;
}

.portfolio {
  background-color: var(--extra-light);
  overflow: hidden;
}

.portfolio__header {
  margin-bottom: 4rem;
  display: grid;
  gap: 2rem;
}

.portfolio__image {
  position: relative;
  isolation: isolate;
}

.portfolio__image__content {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
  z-index: 1;
}

.portfolio__image__content div {
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portfolio__image__content div:nth-child(1) {
  border-right: 1px solid var(--extra-light);
}

.portfolio__image img {
  border-radius: 0.5rem;
}

.portfolio__image__content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.portfolio__image__content p {
  font-size: 0.9rem;
  color: var(--extra-light);
}

.portfolio__content {
  display: grid;
  gap: 2rem;
}

.portfolio__list {
  display: grid;
  gap: 2rem;
}

.portfolio__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.portfolio__list li span {
  width: 5rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
}

.portfolio__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.portfolio__list .section__description {
  text-align: left;
}

.feedback__container {
  padding-bottom: 3rem;
}

.swiper {
  padding-block: 4rem 2rem;
  width: 100%;
}

.swiper-slide {
  min-width: 375px;
}

.feedback__card {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.feedback__card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feedback__card .section__description {
  text-align: left;
}

.feedback__details {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feedback__user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback__user img {
  max-width: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback__user h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feedback__user h5 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.feedback__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feedback__rating span {
  font-size: 1rem;
  color: goldenrod;
}

.subscribe__content {
  padding: 5rem 1rem;
  border-radius: 1rem;
  background-color: var(--secondary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.subscribe__content .section__header {
  margin-bottom: 2rem;
  max-width: 750px;
  margin-inline: auto;
  color: var(--white);
}

.subscribe__content form {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 0.5rem;
}

.subscribe__content input {
  width: 100%;
  padding-inline: 1rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-dark);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.footer__logo a span {
  color: var(--secondary-color);
}

.footer__col .section__description {
  margin-bottom: 2rem;
  text-align: left;
}

.footer__col h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.footer__socials a {
  padding: 4px 6px;
  font-size: 1.125rem;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__links a span {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 2px solid var(--extra-light);
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    color: var(--text-dark);
  }

  .nav__logo a span {
    color: var(--secondary-color);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-light);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .header__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 0;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .service__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .portfolio__header {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__header :is(.section__header, .section__description) {
    text-align: left;
  }

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

  .portfolio__image {
    grid-area: 1/2/2/3;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-column: 1/3;
    max-width: 350px;
  }
}

@media (width > 1024px) {
  .service__grid {
    gap: 1.5rem;
  }

  .feedback__card {
    padding: 2rem 1.5rem;
  }

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

  .contact__form {
    max-width: 700px;
    width: 100%;
    margin-bottom: 4rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }

  .contact__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 4rem;
  }

  .contact__card {
    background-color: var(--extra-light);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
  }

  .contact__card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .contact__card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }

  .contact__card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;

  }

}

.feedback__container {
  padding-bottom: 4rem;
}

.feedback__card {
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--extra-light);
  transition: 0.3s ease;
}

.feedback__card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback__details {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback__rating span {
  color: goldenrod;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.btn i {
  margin-right: 0.5rem;
}

.news__grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news__card {
  background-color: var(--extra-light);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}

.news__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news__card img {
  height: 200px;
  object-fit: cover;
}

.news__card__content {
  padding: 1.5rem;
}

.news__category {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid var(--secondary-color);
  margin-bottom: 1rem;
  display: block;
}

.news__date {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: 0.3s;
}

.read-more:hover {
  color: var(--secondary-color);
}

.read-more i {
  margin-left: 0.5rem;
}

.news__cta {
  text-align: center;
  margin-top: 4rem;
}

.news__cta .btn {
  margin-top: 1rem;
}

/* === News Section Styling === */

.news__container {
  padding-top: 6rem;
}

.news__grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news__card {
  background-color: var(--extra-light);
  /* Matches your site's light background */
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.news__card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news__card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 200px;
}

.news__card__content {
  padding: 1.5rem;
}

.news__category {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--secondary-color);
  background-color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 0.75rem;
  border: 1px solid #ddd;
}

.news__date {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.news__card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.news__card p.section__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.read-more i {
  margin-left: 0.5rem;
}

.read-more:hover {
  color: var(--secondary-color);
}

/* === Logo Styling === */

.nav__logo {
  display: flex;
  align-items: left;
  gap: 0.75rem;
}

.nav__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--text-dark);
}


.nav__logo-img {
  width: 40px;
  height: 5px;
  object-fit: contain;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  /* Matches secondary color */
  padding: 2px;
  /* Optional: adds space inside image if needed */
}

@media (max-width: 768px) {
  .nav__logo a {
    font-size: 1.1rem;
  }

  .nav__logo-img {
    width: 125px;
    /* Bigger on mobile */
    height: 40px;
  }

  /* Optional: Adjust spacing if needed on small screens */
  .nav__logo {
    gap: 0.25rem;
  }
}

/* === About Section Styling === */

.about__container {
  padding: 6rem 1rem 4rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about__container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__content .section__header {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: left;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__list li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about__list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--extra-light);
  color: var(--secondary-color);
  font-size: 1.25rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.about__list h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.about__list .section__description {
  text-align: left;
  color: var(--text-light);
}

/* === Footer Enhancements === */

.footer__container {
  display: grid;
  gap: 2rem;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer__logo a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.footer__logo a span {
  color: var(--secondary-color);
}

.footer__description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.footer__socials a {
  font-size: 1.25rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* === Feedback Section Styling === */

.feedback__container {
  padding: 6rem 1rem;
}

.feedback__card {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feedback__card .section__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feedback__user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feedback__user img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feedback__user h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.feedback__user h5 {
  font-size: 0.9rem;
  color: var(--text-light);
}

.feedback__rating {
  display: flex;
  gap: 0.25rem;
  color: goldenrod;
}

/* === Swiper Responsive Settings === */
.swiper {
  padding: 2rem 0;
}

.swiper-slide {
  padding: 1rem;
}

@media (max-width: 768px) {
  .swiper-wrapper {
    flex-direction: row;
  }

  .swiper-slide {
    min-width: 80%;
  }
}

/* === Footer Enhancements for Mobile Responsiveness === */
.footer__container {
  display: grid;
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

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

.footer__socials a {
  font-size: 1.25rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact__container {
  padding-top: 6rem;
}

.contact__form {
  max-width: 700px;
  margin: auto;
  margin-bottom: 4rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.contact__card {
  background-color: var(--extra-light);
  padding: 2rem;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.contact__card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact__card i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.subscribe__content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.subscribe__content input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}

.form-message {
  margin-top: 1rem;
  font-size: 1rem;
  color: green;
}

/* === Newsletter Thank You Modal === */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

.modal-content h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.modal-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: 0.3s;
}

.modal-close:hover {
  color: var(--secondary-color);
}

/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.career__container {
  padding-top: 6rem;
}

.career__no-openings {
  text-align: center;
  margin: 4rem auto;
  max-width: 600px;
}

.career__no-openings h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.career__cta {
  text-align: center;
  margin: 4rem auto;
  max-width: 600px;
}

.career__form {
  max-width: 600px;
  margin: 4rem auto;
}

.career__form .form-group {
  margin-bottom: 1.5rem;
}

.career__form input,
.career__form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form-message {
  margin-top: 1rem;
  font-size: 1rem;
  color: green;
}

.form-message {
  margin-top: 1rem;
  font-size: 1rem;
  color: green;
}

/* === Let's Chat Button - Sticky Mobile Fix === */
.chat-button-wrapper {
  display: none;
}

.chat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFC300;
  /* Gold */
  color: #000;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.chat-button i {
  margin-right: 8px;
}

.chat-button:hover {
  background-color: #e6c200;
}

/* Show and Make Sticky on Mobile Only */
@media (max-width: 768px) {
  .chat-button-wrapper {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }
}