html,
body {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0%;
    transform: translateX(-65%) scale(0.85);
    width: 125vw;
    background-color: #1f2937;
    /* overflow-x: hidden; */
    /* overflow-y: hidden; */
    z-index: 50;
}

 

/* Mobile */
@media (max-width: 768px) {
  .mega-menu-inner {
    grid-template-columns: 1fr; /* stack image + links vertically */
    padding: 2rem 1rem;
    line-height: 1.5rem;
  }

  .mega-image img {
    width: 100%;
    height: 200px; /* mobile image height */
    object-fit: cover;
  }
}

/* Roate text */
.container {
  display: flex;
  justify-content: center;
  align-items: center; 
}

.hero-para{
  position: relative;
 
  background: #f0f8ff52;
    padding: 20px;
    backdrop-filter: blur(5px);
    border-radius: 25px;
    
}

.text-container {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  overflow: hidden;
  position: relative;
}

.static-text {
  white-space: nowrap;
  margin-right: 0.75rem;
  font-size: 74px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Unbounded", sans-serif;
}

.rotating-text {
  display: inline-block;
  height: 80px;
  position: relative;
  font-weight: 700;
  text-align: left;
  font-family: "Unbounded", sans-serif;
}

.rotating-text-items {
  position: relative;
  animation: rotate 15s ease-in-out infinite;
}

.rotating-text-item {
  display: block;
  height: 80px;
  font-size: 74px;
  padding: 0 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.rotating-text-item:nth-child(1) {
  color: #ff9a8b;
}
.rotating-text-item:nth-child(2) {
  color: #8bf8ff;
}
.rotating-text-item:nth-child(3) {
  color: #c5ff8b;
}
.rotating-text-item:nth-child(4) {
  color: #f98bff;
}
.rotating-text-item:nth-child(5) {
  color: #ffdd8b;
}

@keyframes rotate {
  0%,
  10% {
    transform: translateY(0);
  }
  20%,
  30% {
    transform: translateY(-80px);
  }
  40%,
  50% {
    transform: translateY(-160px);
  }
  60%,
  70% {
    transform: translateY(-240px);
  }
  80%,
  90% {
    transform: translateY(-320px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: -25px !important;
    padding: 20px;
  }

  .hero-para{
    position: relative; 
  }

  .text-container {
    flex-direction: column;
    height: auto;
    gap: 20px;
    margin-top: 0;
  }

  .hero-btn {
    position: relative;

  }

  .static-text {
    font-size: 3rem;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .rotating-text {
    height: 60px;
    overflow: hidden;
    position: relative;
  }

  .rotating-text-item {
    font-size: 2.5rem;
    height: 60px;
    padding: 0 5px;
    justify-content: center;
  }

  .rotating-text-items {
    animation: rotateMobile 15s ease-in-out infinite;
  }

  @keyframes rotateMobile {
    0%,
    10% {
      transform: translateY(0);
    }
    20%,
    30% {
      transform: translateY(-60px);
    }
    40%,
    50% {
      transform: translateY(-120px);
    }
    60%,
    70% {
      transform: translateY(-180px);
    }
    80%,
    90% {
      transform: translateY(-240px);
    }
    100% {
      transform: translateY(0);
    }
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .static-text {
    margin-bottom: -25px;
    font-size: 2.2rem;
  }

  .rotating-text-item {
    font-size: 2rem;
  }
}

/* CSS (same as before) */
.circle-wrapper {
  position: absolute; /* fixed relative to section */
  bottom: 20px;
  left: 20px;
  width: 200px;
  height: 200px;
}

.circle-text-svg {
  width: 100%;
  height: 100%;
  animation: rotateText 20s linear infinite;
  transform-origin: 50% 50%;
}

.circle-text-svg text {
  font-family: "Arial", sans-serif;
  font-size: 24px;
  fill: #ffffff;
  letter-spacing: 1px;
}

.circle-text-svg path {
  fill: none;
}

.circle-text-svg .tick {
  stroke: green;
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .cont {
    display: none;
  }
}

.hero-btn {
  position: relative;
  padding: 1rem 2.5rem; /* desktop */
  border-radius: 9999px; /* pill shape */
  background: linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  ); /* nice blue gradient */
  color: white;
  font-weight: 600;
  font-size: clamp(0.9rem, 3.5vw, 1.25rem); /* responsive font size */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
 

  /* Optional: subtle inner shadow for depth */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2),
    inset 0 -2px 5px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .hero-btn {
    position: relative;
    padding: 0.75rem 2rem; /* smaller */
 
  }
}

@media (max-width: 480px) {
  .hero-btn {
    padding: 0.5rem 1.5rem; /* even smaller */
  }
}

/* Instead of targeting all p tags */
.hero-text p {
  display: inline-block;
  margin: 0;
  position: relative;
  left: -155px;
}

/* And for mobile */
@media (max-width: 480px) {
  .hero-text p {
    left: 0; /* Reset for mobile if needed */
  }
}

/* about section */
.hero-image img {
  height: 25vw;
  object-fit: cover;
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 3s;
}
.about-container h2{
  font-family: "Unbounded", sans-serif;
}

/* service */

.service-section {
  max-width: 1200px;
  margin: 0 auto;
}

.service-title {
  text-align: center;
  margin-bottom: 60px;
  font-family: "Unbounded", sans-serif;
  color: #1a2a6c;
  font-size: 2.5rem;
  position: relative;
}

.service-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: #ff9a00;
  margin: 15px auto;
}

/* Fixed accordion styles */
.service-accordion {
  width: 100%;
  max-width: 1200px;
  height: 70vh;
  display: flex;
  gap: 0.8rem;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 100px;
}

.service-accordion-item {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  transition: flex 0.5s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-accordion-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-accordion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.service-accordion-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  color: white;
}

.service-accordion-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-accordion-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.service-number {
  display: inline-block;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: bold;
  margin-right: 12px;
  color: white;
}

/* Mobile: normal cards in grid layout */
@media (max-width: 1023px) {
  /* Hide desktop overlay version */
  .service-accordion-item .lg\:block {
    display: none;
  }

  /* Show mobile card version */
  .service-accordion-item .lg\:hidden {
    display: flex;
    flex-direction: column; /* keep image on top, text below */
    background-color: #ffffff;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* shadow-lg */
    overflow: hidden;
    height: auto; /* no fixed height */
    transition: transform 0.3s ease;
  }

  /* Grid layout for accordion container */
  .service-accordion {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 column on small screens */
    gap: 1rem;
  }

  /* Optional: make 2-column for bigger mobile/tablet */
  @media (min-width: 640px) {
    .service-accordion {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  /* Image styling */
  .service-accordion-item .lg\:hidden img {
    width: 100%;
    height: 14rem; /* adjust as needed */
    object-fit: cover;
  }

  /* Content styling */
  .service-accordion-item .lg\:hidden h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .service-accordion-item .lg\:hidden p {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
  }

  .service-accordion-item .lg\:hidden button {
    background-color: #f97316;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    width: max-content;
  }
}

/* Hover effects */
.service-accordion-item:hover {
  flex: 5;
}

.service-accordion-item:hover .service-accordion-overlay {
  opacity: 0.85;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.service-accordion-item:hover .service-accordion-image {
  transform: scale(1.05);
}

.service-accordion-item:hover .service-accordion-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Responsive design */
@media (max-width: 900px) {
  .service-accordion {
    flex-direction: column;
    height: auto;
  }

  .service-accordion-item {
    height: 200px;
    margin-bottom: 1rem;
  }

  .service-accordion-title {
    font-size: 1.4rem;
  }

  .service-accordion-description {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .service-title {
    font-size: 2.2rem;
  }

  .service-accordion-content {
    padding: 1.5rem;
  }

  .service-accordion-title {
    font-size: 1.2rem;
  }

  .service-number {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

/* button */

.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

.btn-7 {
  background: linear-gradient(
    0deg,
    rgba(255, 151, 0, 1) 0%,
    rgba(251, 75, 2, 1) 100%
  );
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-7 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-7:before,
.btn-7:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: rgba(251, 75, 2, 1);
  box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, 0.9),
    -4px -4px 5px 0px rgba(255, 255, 255, 0.9),
    7px 7px 20px 0px rgba(0, 0, 0, 0.2), 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.btn-7:before {
  height: 0%;
  width: 2px;
}
.btn-7:after {
  width: 0%;
  height: 2px;
}
.btn-7:hover {
  color: rgba(251, 75, 2, 1);
  background: transparent;
}
.btn-7:hover:before {
  height: 100%;
}
.btn-7:hover:after {
  width: 100%;
}
.btn-7 span:before,
.btn-7 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: rgba(251, 75, 2, 1);
  box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, 0.9),
    -4px -4px 5px 0px rgba(255, 255, 255, 0.9),
    7px 7px 20px 0px rgba(0, 0, 0, 0.2), 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.btn-7 span:before {
  width: 2px;
  height: 0%;
}
.btn-7 span:after {
  height: 2px;
  width: 0%;
}
.btn-7 span:hover:before {
  height: 100%;
}
.btn-7 span:hover:after {
  width: 100%;
}

/* why choose us */
.content-wrapper {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-intro {
  background: linear-gradient(135deg, #1a2a6c, #2b5876);
  color: white;
  padding: 40px 0;
  text-align: center;
  font-family: "Unbounded", sans-serif;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ff9a00, #ff6a00);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-weight: bold;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tagline {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

.mission-vision {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #1a2a6c;
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: #ff9a00;
  margin: 15px auto;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(135deg, #1a2a6c, #2b5876);
  color: white;
  padding: 25px;
  text-align: center;
}

.card-header i {
  font-size: 40px;
  margin-bottom: 15px;
}

.card-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }

  .logo-text {
    font-size: 28px;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

/* what we serve */
.nakshtra-service-card .check-icon {
  transition: filter 0.3s ease;
}

.nakshtra-service-card:hover .check-icon {
  filter: brightness(0) invert(1); /* makes black → white */
}

.nakshtra-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.nakshtra-heading {
  text-align: center;
  margin-bottom: 50px;
}

.nakshtra-main-title {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: "Unbounded";
}

.nakshtra-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
  border-radius: 2px;
}

.nakshtra-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.nakshtra-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.nakshtra-service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.nakshtra-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  opacity: 0;
  transition: height 0.5s ease, opacity 0.5s ease;
  z-index: -1;
}

.nakshtra-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  color: white;
}

.nakshtra-service-card:hover::before {
  height: 100%;
  opacity: 1;
}

.nakshtra-service-card:hover .nakshtra-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.nakshtra-service-card:hover .nakshtra-card-title,
.nakshtra-service-card:hover .nakshtra-card-description,
.nakshtra-service-card:hover .nakshtra-feature-item {
  color: white;
}

.nakshtra-service-card:hover .nakshtra-feature-item i {
  color: #ffd700;
}

.nakshtra-card-header {
  padding: 25px 25px 15px;
  position: relative;
}

.nakshtra-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}

.nakshtra-card-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.nakshtra-card-content {
  padding: 0 25px 25px;
  flex-grow: 1;
}

.nakshtra-card-description {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.nakshtra-features-list {
  list-style-type: none;
  margin-top: 20px;
}

.nakshtra-feature-item {
  padding: 8px 0;
  color: #5d6d7e;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nakshtra-feature-item:last-child {
  border-bottom: none;
}

.nakshtra-feature-item i {
  color: #3498db;
  margin-right: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nakshtra-card-actions {
  padding: 20px 25px;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.nakshtra-service-card:hover .nakshtra-card-actions {
  background: rgba(255, 255, 255, 0.1);
}

.nakshtra-learn-more {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nakshtra-service-card:hover .nakshtra-learn-more {
  color: white;
}

.nakshtra-learn-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nakshtra-learn-more:hover i {
  transform: translateX(5px);
}

.nakshtra-contact-btn {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
  display: block;
  margin: 40px auto;
  font-size: 1.1rem;
}

.nakshtra-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.nakshtra-footer {
  margin-top: 60px;
  text-align: center;
  color: #7f8c8d;
  font-size: 0.9rem;
  font-family: "Unbounded", sans-serif;
}

@media (max-width: 768px) {
  .nakshtra-main-title {
    font-size: 2.2rem;
  }

  .nakshtra-services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* testinomial */
.test-content {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

/* Fade in effect */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrolling track */
.testimonial-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.testimonial-track:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Scroll wrapper */
.scroll-container {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

/* Gradient overlays */
.scroll-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.scroll-gradient-left {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(179, 224, 242, 1) 0%,
    rgba(179, 224, 242, 0) 100%
  );
}
.scroll-gradient-right {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(179, 224, 242, 1) 0%,
    rgba(179, 224, 242, 0) 100%
  );
}

/* Marquee */

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: #ffffff;
}

.marquee {
  display: flex;
  width: 100%;
}

.marquee h1 {
  font-size: 5.5rem;
  font-weight: 900;
  white-space: nowrap;
  font-family: "Unbounded", sans-serif;
  padding-right: 30px;
  flex-shrink: 0;
  /* animation: marquee 22s linear infinite; */
  color: rgba(0, 0, 0, 0); /* invisible fill */
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15); /* visible stroke */
  transition: all 0.5s ease;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.left h1 {
  animation: marquee_left 22s linear infinite;
}

.right h1 {
  animation: marquee_right 22s linear infinite;
}

.marquee:hover h1 {
  color: #000; /* black fill */
  -webkit-text-stroke: 1px #000; /* stroke */
  cursor: default;
}

@keyframes marquee_right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee_left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e9ecef, transparent);
  width: 80%;
  margin: 20px auto;
}

@media (max-width: 1100px) {
  .marquee h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }

  .marquee h1 {
    font-size: 3.2rem;
    -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.15);
    text-stroke: 1.2px rgba(0, 0, 0, 0.15);
  }

  .header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 1rem;
  }

  .marquee h1 {
    font-size: 2.3rem;
    letter-spacing: 2px;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
    text-stroke: 1px rgba(0, 0, 0, 0.15);
  }

  .instructions {
    padding: 20px 15px;
  }

  .instructions h2 {
    font-size: 1.5rem;
  }

  .instructions p {
    font-size: 1rem;
  }
}

.footer {
  background-color: snow;
  color: rgb(0, 0, 0);
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-section h3 {
  font-size: 17px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #e9b949;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #e9b949;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #000000;
}

.footer-contact i {
  margin-right: 10px;
  color: #e9b949;
}

.footer-newsletter p {
  margin-bottom: 15px;
  color: #000000;
}

.newsletter-form {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  background-color: #e9b949;
  color: #1a365d;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  font-weight: bold;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #d4a63a;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2d4b82;
  color: rgb(0, 0, 0);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  background-color: #e9b949;
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  margin-top: 30px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #000000;
  margin: 5px 0;
}

.footer-payments {
  display: flex;
  gap: 10px;
}

.payment-icon {
  background-color: white;
  border-radius: 4px;
  padding: 5px;
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-payments {
    margin-top: 15px;
  }
}

.footer h3{
  font-family: "Unbounded", sans-serif;
}


/* floating whatsapp */
  
       
     
        
      
        
        .floating-whatsapp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
        }
        
        .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            color: white;
            font-size: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            bottom: 15px;
            background: white;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            color: #075E54;
            font-weight: 500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            width: max-content;
        }
        
        .whatsapp-tooltip:after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent white;
        }
        
        .whatsapp-button:hover + .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        
        
        @media (max-width: 600px) {
            .whatsapp-tooltip {
                display: none;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .container {
                padding: 20px;
            }
        }