
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --yellow:#f5bf23;
  --black:#111;
  --white:#fff;
  --light-color:#666;
  --light-bg:#eee;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0,.3);
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 1.5rem; 
  display: flex;
  align-items: center; 
  justify-content: space-between;
  z-index: 1000;
  background: var(--white);
  transition: transform 0.3s ease-in-out;
}

.header.hide {
  transform: translateY(-100%);
}

.header .logo {
  font-size: 1.8rem; 
  color: var(--black);
  text-transform: capitalize;
  display: flex; 
  align-items: center;
}

.header .logo img {
  max-height: 75px; 
}

.header .navbar a {
  font-size: 1.5rem;
  color: var(--black);
  text-decoration: none;
  padding: 7px 10px;
  text-transform: capitalize;
  margin: 0 1rem;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: color 0.3s ease, border-color 0.3s ease, border-width 0.3s ease;
}

.header .navbar a:hover {
  color: var(--yellow);
  border-color: var(--black); 
  border-width: 1px; 
  background-color: var(--white);
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: .3rem;
}

.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}

.header #menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  -webkit-animation: fadeIn .2s linear;
  animation: fadeIn .2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--yellow);
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
  transition: transform 0.3s ease-in-out; /* Added transition for smooth rotation */
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--yellow);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: .5rem;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.home {
  padding: 0;
}

.home .slide {
  min-height: 60rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--white), transparent);
}

/* Animation for h3 element */
@keyframes slideInFromLeftH3 {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animation for p element */
@keyframes fadeInP {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Apply animations to elements */
.home .slide.swiper-slide-active .content h3 {
  animation: slideInFromLeftH3 1s ease-in-out forwards;
}

.home .slide.swiper-slide-active .content p {
  animation: fadeInP 1s ease-in-out forwards;
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
}

.home .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.home .swiper-button-prev {
  right: 7rem;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}

.about .row .video {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .row .video video {
  width: 100%;
}

.about .row .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
}

.services {
  background: var(--light-bg);
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: var(--border);
}

.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
  transform: translateY(-1rem);
}

.services .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.projects {
  background: var(--black);
}

.projects .heading {
  color: var(--white);
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--light-bg);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

.projects .box-container .box .content i:hover{
  background-color: var(--yellow);
}

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.reviews .slide p::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: .5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

.pricing {
  background: var(--light-bg);
}

.pricing .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.pricing .box-container .box i {
  font-size: 3rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--yellow);
  color: var(--black);
}

.pricing .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: normal;
}

.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
}

.pricing .box-container .box .price span {
  font-size: 2rem;
}

.pricing .box-container .box .list {
  padding: 1rem 0;
}

.pricing .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.contact {
  background: var(--black);
}

.contact .heading {
  color: var(--white);
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
  width: 100%;
}

.contact .row form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
}

.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.contact .row form .box {
  margin: .7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}

.contact .row form .box:focus {
  border-color: var(--yellow);
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.blogs {
  background: var(--light-bg);
}

.blogs .slide {
  text-align: center;
}

.blogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.logo-container {
  text-align: center;
}

.logo-container img {
  height: 10rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.footer {
  background: var(--light-bg);
  color: var(--black);
  padding: 5rem 10% 2rem;
}

.footer .footer-container {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto 3rem auto;
}

.footer .footer-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer .footer-section:last-child {
  justify-content: flex-start;
}

.footer .footer-section h3 {
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: 2rem;
  text-transform: capitalize;
  position: relative;
  text-align: left;
}

.footer .footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 5rem;
  height: 0.3rem;
  background: var(--yellow);
}

.footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer .footer-logo img {
  height: 8rem;
  width: auto;
  flex-shrink: 0;
}

.footer .footer-logo h3 {
  font-size: 2.5rem;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
}

.footer .footer-logo h3::after {
  display: none;
}

.footer .footer-section p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer .footer-links a {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
  transition: all 0.3s ease;
  padding: 0.8rem 0;
  border-bottom: 1px solid transparent;
  display: block;
  width: 100%;
  position: relative;
}

.footer .footer-links a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
  padding-left: 1rem;
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
  justify-content: flex-start;
}

.footer .contact-item i {
  font-size: 1.8rem;
  color: var(--yellow);
  margin-top: 0.5rem;
  min-width: 2rem;
  flex-shrink: 0;
}

.footer .contact-item div {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.footer .contact-item div p {
  font-size: 1.4rem;
  color: var(--light-color);
  margin-bottom: 0.5rem;
  line-height: 1.6;
  word-break: break-all;
  text-align: left;
}

.footer .contact-item div p a {
  color: var(--light-color);
  transition: color 0.3s ease;
  word-break: break-all;
}

.footer .contact-item div p a:hover {
  color: var(--yellow);
}

.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer .social-links a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.8rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer .social-links a:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-0.5rem);
}

.footer .newsletter {
  margin-top: auto;
}

.footer .newsletter h4 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 1rem;
  text-align: left;
}

.footer .newsletter p {
  font-size: 1.3rem;
  color: var(--light-color);
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.5;
}

.footer .newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--white);
  border: var(--border);
  width: 100%;
  max-width: 350px;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.footer .newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  font-size: 1.4rem;
  color: var(--black);
  background: transparent;
  border: none;
  min-width: 0;
}

.footer .newsletter-form input::placeholder {
  color: var(--light-color);
}

.footer .newsletter-form button {
  padding: 1.2rem 2rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  flex-shrink: 0;
}

.footer .newsletter-form button:hover {
  background: var(--black);
  color: var(--yellow);
}

.footer .footer-bottom {
  border-top: var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer .footer-bottom .credit p {
  font-size: 1.4rem;
  color: var(--light-color);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer .footer-bottom .developer-info a {
  color: var(--yellow);
  transition: color 0.3s ease;
}

.footer .footer-bottom .developer-info a:hover {
  color: var(--black);
}

#myBtn {
  display: none; 
  position: fixed; 
  bottom: 20px; 
  left: 30px; 
  z-index: 99; 
  border: none; 
  outline: none;
  background-color: var(--black);
  color: white; 
  cursor: pointer; 
  padding: 15px; 
  border-radius: 10px; 
}

#myBtn:hover {
  background-color: var(--yellow); 
}

#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  display: none;
  z-index: 9999;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  background: var(--white);
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
  border-left: 0.5rem solid var(--yellow);
  animation: slideInRight 0.3s ease-out;
}

.notification-success {
  border-left-color: #28a745;
}

.notification-error {
  border-left-color: #dc3545;
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
}

.notification-content i:first-child {
  font-size: 2rem;
  color: var(--yellow);
}

.notification-success .notification-content i:first-child {
  color: #28a745;
}

.notification-error .notification-content i:first-child {
  color: #dc3545;
}

.notification-content span {
  flex: 1;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--light-color);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.notification-close:hover {
  background: var(--light-bg);
  color: var(--black);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Loading state for newsletter button */
.newsletter-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Style for the popup background */
.popup-overlay {
  display: none; 
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  justify-content: center;
  align-items: center;
  z-index: 9999; 
}

/* Style for the popup content */
.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 90%; 
  max-width: 600px; 
  box-sizing: border-box;
}

/* Style for the popup image */
.popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px; 
}

/* Style for the close button */
.close-popup {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--black);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease; 
}

/* Hover effect for the close button */
.close-popup:hover {
  background-color: var(--yellow); 
  transform: scale(1.05); 
}

/* Style for the header */
.header {
  position: relative; 
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .popup-content {
      padding: 15px;
      max-width: 90%; 
  }

  .close-popup {
      padding: 8px 16px;
  }
  
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .notification-content {
    padding: 1rem;
  }
  
  .notification-content span {
    font-size: 1.3rem;
  }
}

/* Large Desktop Optimization */
@media (min-width: 1400px) {
  .footer .footer-container {
    max-width: 1600px;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2.5fr;
    gap: 5rem;
  }
  
  .footer .footer-section:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer .newsletter-form {
    max-width: 400px;
  }
  
  .footer .newsletter p {
    max-width: 350px;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
  .footer {
    padding: 4rem 5% 2rem;
  }
  .footer .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 100%;
  }
  
  .footer .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .footer {
    padding: 3rem 2rem 2rem;
  }
  .footer .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer .footer-logo {
    justify-content: flex-start;
    gap: 1rem;
  }
  .footer .footer-logo img {
    height: 6rem;
  }
  .footer .footer-logo h3 {
    font-size: 2rem;
  }
  .footer .social-links {
    justify-content: flex-start;
    gap: 0.8rem;
  }
  .footer .social-links a {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 1.6rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }
}

@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }
  .home .slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
  .footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  .footer .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer .footer-section {
    text-align: center;
  }
  .footer .footer-section h3 {
    text-align: center;
    font-size: 2rem;
  }
  .footer .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer .footer-logo {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }
  .footer .footer-logo h3 {
    font-size: 1.8rem;
  }
  .footer .footer-section p {
    text-align: center;
  }
  .footer .footer-links {
    align-items: center;
  }
  .footer .footer-links a {
    text-align: center;
    width: auto;
    display: inline-block;
    padding: 0.5rem 1rem;
  }
  .footer .contact-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }
  .footer .contact-item i {
    margin-top: 0;
  }
  .footer .contact-item div {
    text-align: center;
  }
  .footer .contact-item div p {
    text-align: center;
  }
  .footer .social-links {
    justify-content: center;
    gap: 1rem;
  }
  .footer .newsletter h4,
  .footer .newsletter p {
    text-align: center;
  }
  .footer .newsletter-form {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h3 {
    font-size: 2.5rem;
  }
  .footer {
    padding: 2rem 1rem 1rem;
  }
  .footer .footer-container {
    gap: 1.5rem;
  }
  .footer .footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .footer .footer-logo {
    gap: 0.8rem;
  }
  .footer .footer-logo img {
    height: 5rem;
  }
  .footer .footer-logo h3 {
    font-size: 1.6rem;
  }
  .footer .footer-section p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .footer .footer-links a {
    font-size: 1.4rem;
    padding: 0.4rem 0.8rem;
  }
  .footer .contact-item div p {
    font-size: 1.3rem;
  }
  .footer .social-links a {
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.4rem;
  }
  .footer .newsletter h4 {
    font-size: 1.6rem;
  }
  .footer .newsletter p {
    font-size: 1.2rem;
  }
  .footer .newsletter-form {
    flex-direction: column;
    border-radius: 0.5rem;
    max-width: 280px;
  }
  .footer .newsletter-form input {
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1rem 1.2rem;
  }
  .footer .newsletter-form button {
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1rem 1.5rem;
  }
  .footer .footer-bottom .credit p {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

/* Extra small devices and landscape phones */
@media (max-width: 375px) {
  .footer {
    padding: 1.5rem 0.8rem 1rem;
  }
  .footer .footer-logo img {
    height: 4rem;
  }
  .footer .footer-logo h3 {
    font-size: 1.4rem;
  }
  .footer .footer-section h3 {
    font-size: 1.6rem;
  }
  .footer .newsletter-form {
    max-width: 250px;
  }
}

/* Large landscape tablets and small desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* Medium landscape tablets */
@media (min-width: 769px) and (max-width: 991px) {
  .footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* Portrait tablets and small laptops */
@media (min-width: 481px) and (max-width: 768px) {
  .footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer .footer-section {
    text-align: left;
  }
  .footer .footer-section h3 {
    text-align: left;
  }
  .footer .footer-section h3::after {
    left: 0;
    transform: none;
  }
  .footer .footer-logo {
    justify-content: flex-start;
    flex-direction: row;
  }
  .footer .footer-section p {
    text-align: left;
  }
  .footer .footer-links {
    align-items: flex-start;
  }
  .footer .contact-item {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer .contact-item div {
    text-align: left;
  }
  .footer .contact-item div p {
    text-align: left;
  }
  .footer .social-links {
    justify-content: flex-start;
  }
  .footer .newsletter h4,
  .footer .newsletter p {
    text-align: left;
  }
  .footer .newsletter-form {
    margin: 0;
    max-width: 100%;
  }
}

/* Snow Effect Styles */
/*.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.snowflake {
  position: absolute;
  top: -10px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: fall infinite linear;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0; 
  transform-origin: center;
}

.snowflake.dendrite {
  border: 2px solid white;
  border-radius: 50%;
  animation: dendriteFall infinite linear;
}

.snowflake.snow-icon {
  font-size: 20px;
  line-height: 1;
}

.snowflake.christmas-tree-icon {
  font-size: 24px;
}

@keyframes dendriteFall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}
*/