
/* Variables */
:root {
--primary-blue: #2563eb;
--primary-purple: #9333ea;
--white: #ffffff;
--transition: all 0.5s ease;
}

/* Base Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
from { transform: scale(0.95); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
0% { opacity: 0.4; }
50% { opacity: 0.6; }
100% { opacity: 0.4; }
}

@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}

@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}

/* Animation Classes */
.fade-in {
animation: fadeIn 0.8s ease-in;
}

.scale-in {
animation: scaleIn 0.5s ease-out;
}

/* .float-element {
animation: floating 3s ease-in-out infinite;
} */

/* Layout & Container */
.container {
margin-left: auto;
margin-right: auto;
}

@media (min-width: 768px) {
.container {
  max-width: 1024px;
  padding-left: 2rem;
  padding-right: 2rem;
}
}

@media (min-width: 1024px) {
.container {
  max-width: 1280px;
}
}

/* Navigation Styles */
.nav-link {
position: relative;
padding-bottom: 2px;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: 100%;
}

/* Mobile Menu */
.mobile-menu {
transform: translateY(-10px);
opacity: 0;
transition: all 0.3s ease;
display: none;
}

.mobile-menu.active {
transform: translateY(0);
opacity: 1;
display: block;
}

.menu-btn {
display: none;
}

@media (max-width: 768px) {
.menu-btn {
  display: block;
}
.desktop-menu {
  display: none;
}
}


.hero-section {
    /* Fallback background color in case image fails to load */
    background-color: #000;
    
    /* Separate the gradient and image for better control */
    background-image: linear-gradient(rgba(0, 0, 0, 0.536), rgba(0, 0, 0, 0.759)),
                      url('/assets/hero.webp'); 
    
    /* Ensure proper mobile handling */
    background-position: center;
    background-size: cover;
    background-attachment: scroll;  
    
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  /* Add a media query to handle background-attachment */
  @media (min-width: 768px) {
    .hero-section {
      background-attachment: fixed;
    }
  }

.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.227) 100%);
animation: pulse 4s infinite;
}

/* Gradient Styles */
.gradient-bg {
background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
position: relative;
overflow: hidden;
}

.gradient-bg::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.1) 50%, transparent 55%);
animation: shimmer 3s infinite;
}

.gradient-text {
background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.gradient-button {
background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
transition: all 0.3s ease;
}

.gradient-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
  /* Base Styles */
  .product-section {
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
    position: relative;
    overflow: hidden;
  }
  
  /* Product Cards */
  .product-card {
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
  
  /* Image Carousel Styles */
  .product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }
  
  .image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .product-image.active {
    opacity: 1;
  }
  
  .carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .product-card:hover .carousel-controls {
    opacity: 1;
  }
 
  
  .carousel-prev,
  .carousel-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2563eb;
    transition: background-color 0.3s ease;
  }
  
  .carousel-prev:hover,
  .carousel-next:hover {
    background: white;
  }
  
  /* Featured Products Scroll */
  .featured-products-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .featured-products-scroll {
    display: flex;
    gap: 2rem;
    animation: scrollLeft 15s linear infinite;
  }
  .featured-products-scroll:hover{
    animation-play-state: paused;
  }
  .featured-products-container:hover .carousel-controls{
    opacity: 1;
    animation-play-state: paused;

  }
  
  .featured-item {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .featured-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .featured-item:hover img {
    transform: scale(1.1);

  }
  
  .featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .featured-item:hover .featured-overlay {
    transform: translateY(0);
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Gradient Text */
  .gradient-text {
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* Responsive Grid */
  @media (max-width: 1024px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .grid {
      grid-template-columns: 1fr;
    }
  }


/* Modal Styles */
.product-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
  }
  
  .product-modal__content {
      background-color: white;
      margin: 5% auto;
      padding: 2rem;
      border-radius: 8px;
      width: 90%;
      max-width: 1000px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
  }
  
  .product-modal__close {
      position: absolute;
      right: 1rem;
      top: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0.5rem;
      z-index: 1;
  }
  
  .product-modal__heading {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
  }
  
  .product-modal__description {
      color: #666;
      margin-bottom: 1.5rem;
      line-height: 1.6;
  }
  
  .product-modal__section {
      margin-bottom: 1.5rem;
  }
  
  .product-modal__subheading {
      font-weight: 600;
      margin-bottom: 0.5rem;
  }
  
  .product-modal__feature-list {
      list-style: none;
      padding: 0;
  }
  
  .product-modal__feature-list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: #666;
  }
  
  .product-modal__feature-list li::before {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      background-color: #3b82f6;
      border-radius: 50%;
  }
  
  .product-modal__specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
  }
  
  .product-modal__spec-item {
      padding: 1rem;
      background-color: #f9fafb;
      border-radius: 8px;
  }
  
  .product-modal__spec-label {
      font-weight: 600;
      display: block;
      margin-bottom: 0.25rem;
  }
  
  .product-modal__spec-value {
      color: #666;
  }
  
  /* Carousel Styles */
  .product-modal__carousel {
      margin-bottom: 1.5rem;
  }
  
  .product-modal__carousel-container {
      width: 100%;
      height: 400px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      background-color: #f8f8f8;
  }
  
  .product-modal__slides {
      display: flex;
      transition: transform 0.5s ease;
      height: 100%;
  }
  
  .product-modal__slide {
      min-width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
  }
  
  .product-modal__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
  
  .product-modal__carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.7);
      border: none;
      padding: 1rem;
      cursor: pointer;
      font-size: 1.2rem;
      border-radius: 50%;
      width: 3rem;
      height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s;
  }
  
  .product-modal__carousel-btn:hover {
      background-color: rgba(255, 255, 255, 0.9);
  }
  
  .product-modal__carousel-btn--prev {
      left: 1rem;
  }
  
  .product-modal__carousel-btn--next {
      right: 1rem;
  }
  
  .product-modal__carousel-dots {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
  }
  
  .product-modal__dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background-color 0.3s;
  }
  
  .product-modal__dot--active {
      background-color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
      .product-modal__content {
          margin: 0;
          width: 100%;
          height: 100%;
          max-height: 100%;
          border-radius: 0;
      }
  
      .product-modal__carousel-container {
          height: 300px;
      }
  
      .product-modal__specs-grid {
          grid-template-columns: 1fr;
      }
  }
/* Testimonial Cards */
.testimonial-card {
background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(147, 51, 234, 0.05));
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}

.testimonial-card::before {
content: '"';
position: absolute;
top: -20px;
right: 20px;
font-size: 120px;
font-family: serif;
color: rgba(37, 99, 235, 0.1);
z-index: 0;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Contact Form */
.input-animated {
transition: all 0.3s ease;
border: 2px solid transparent;
}

.input-animated:focus {
border-color: var(--primary-blue);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
transform: translateY(-2px);
}
.input:hover{
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);

}



        /* Contact Section Styles */
        .contact-section {
          padding: 4rem 2rem;
          background: #fff;
      }

      .contact-container {
          max-width: 1200px;
          margin: 0 auto;
      }

      .contact-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
      }

      .contact-card {
          padding: 2rem;
          /* background: #94b9de; */
          border-radius: 10px;
      }

      .contact-title {
          font-size: 1.8rem;
          color: #2c3e50;
          margin-bottom: 1rem;
      }

      .contact-info {
          margin-bottom: 1rem;
          line-height: 1.6;
          color: #666;
      }

      .contact-form {
          display: grid;
          gap: 1rem;
      }

      .form-input {
          padding: 0.8rem;
          border: 1px solid #ddd;
          border-radius: 5px;
      }

      .submit-btn {
          background: #2c3e50;
          color: white;
          padding: 1rem;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          transition: background 0.3s ease;
      }

      .submit-btn:hover {
          background: #34495e;
      }


/* Grid Layout Updates */
.grid {
    display: grid;
    gap: 2rem;
  }
  
  /* Main Products Grid - 4/2/1 columns */
  @media (min-width: 1024px) {  /* lg screens */
    .grid-cols-4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (min-width: 768px) and (max-width: 1023px) {  /* md screens */
    .grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {  /* sm screens */
    .grid-cols-1 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  
  /* Featured Products Grid */
  .featured-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 1024px) {  /* lg screens */
    .featured-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (min-width: 768px) and (max-width: 1023px) {  /* md screens */
    .featured-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {  /* sm screens */
    .featured-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  
  /* Remove any auto-fit or auto-fill */
  @media (min-width: 768px) {
    .featured-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .featured-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }


/*** Section General Styles ***/
.country {
  position: relative;
  background: #f8f9fa;
  padding: 4rem 0;
}



.sub-style {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sub-title {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 3rem;
  margin: 0;
}

.sub-title::before,
.sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 2px;
  background: var(--primary);
}

.sub-title::before { left: 0; }
.sub-title::after { right: 0; }

.display-5 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/*** Country Grid Layout ***/
.row.g-4 {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col-lg-6.col-xl-3 {
  padding: 1rem;
  transition: var(--transition);
}

/* Adjust column widths for different screen sizes */
@media (min-width: 1200px) {
  .col-lg-6.col-xl-3 {
      flex: 0 0 25%;
      max-width: 25%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .col-lg-6.col-xl-3 {
      flex: 0 0 50%;
      max-width: 50%;
  }
}

@media (max-width: 991px) {
  .col-lg-6.col-xl-3 {
      flex: 0 0 100%;
      max-width: 100%;
  }
}

/*** Country Item Styles ***/
.country-item {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  margin-top: 3rem;
}

.country-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
  border-radius: 10px;
  transition: var(--transition);
  z-index: 1;
}

.country-item:hover::after {
  height: 100%;
}

/* Image Container */
.rounded.overflow-hidden {
  position: relative;
  height: 300px;
  border-radius: 10px;
}

.rounded.overflow-hidden img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.country-item:hover .rounded.overflow-hidden img {
  transform: scale(1.2);
}

/* Flag Styles */
.country-flag {
  position: absolute;
  width: 90px;
  height: 90px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: var(--transition);
}

.country-flag img {
  width: 100%;
  height: 100%;
  border: 5px solid var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.country-item:hover .country-flag img {
  transform: rotate(360deg);
}

/* Country Name Styles */
.country-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 3;
  transition: var(--transition);
}

.country-item:hover .country-name {
  opacity: 1;
}

.country-name a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  transition: var(--transition);
}

.country-name a:hover {
  color: var(--white) !important;
  opacity: 0.8;
}

/*** Animation Styles ***/
.wow {
  visibility: hidden;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
  }
  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation: fadeInUp 1s ease-out;
}

/*** Responsive Adjustments ***/
@media (max-width: 1200px) {
  .rounded.overflow-hidden {
      height: 250px;
  }
}

@media (max-width: 991px) {
  .section-title {
      margin-bottom: 3rem;
  }
  
  .display-5 {
      font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .display-5 {
      font-size: 2rem;
  }
  
  .sub-title {
      font-size: 0.9rem;
  }
  
  .rounded.overflow-hidden {
      height: 220px;
  }
}
/*  region icon */
.region-icon {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 5px solid var(--white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.country-item:hover .region-icon {
  transform: rotate(360deg);
}


.country-flag {
  position: absolute;
  width: 90px;
  height: 90px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: var(--transition);
  background: transparent;
}


@keyframes slight-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

.country-item:hover .country-flag {
  animation: slight-bounce 2s ease-in-out infinite;
}
.custom-globe-color {
color: #00AEEF;
font-size: 3.8rem; 
}

/* Footer */

.footer {
  background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-container img {
  height: 48px;
}

.logo-container img + img {
  margin-left: 0.5rem;
}

.section-titles {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list li {
  margin-bottom: 0.5rem;
}

.links-list a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.links-list a:hover {
  color: black;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: white;
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a {
  color: white;
  text-decoration: none;
}

.copyright a:hover {
  color: #93c5fd;
}

#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

#back-to-top:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .logo-section {
    grid-column: span 2;
  }
  
  .contact-section {
    grid-column: span 2;
  }
}

/* Large screens (1024px and up) */
@media (min-width: 1024px) {
  .grid-container {
    grid-template-columns: 4fr 2fr 2fr 4fr;
  }
  
  .logo-section {
    grid-column: span 1;
  }
  
  .contact-sections {
    grid-column: span 1;
  }
  
  .tagline {
    white-space: nowrap;
  }
}
/* Custom cursor to indicate protected content */
.protected-content {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    cursor: default;
}

/*Style for warning message */
#warning-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 8px;
    display: none;
    z-index: 9999;
    text-align: center;
    animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}
/* Success state styles */
.success input,
.success textarea {
    border-color: #10B981 !important; /* Green border for success */
}

/* Error state styles */
.error input,
.error textarea {
    border-color: #EF4444 !important; /* Red border for error */
}

/* Show error message when parent has error class */
.error .error-message {
    display: block !important;
}



/* <!-- Styles for back to top button --> */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color:#2563eb ;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 9999;
}

#back-to-top:hover {
  background-color: #1d4ed8;
  color:white ;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#back-to-top.visible {
  display: flex;
  animation: fadeIn 0.3s ease;
}



        /* Chat Button */
        .chat-button {
          position: fixed;
          bottom: 90px;
          right: 30px;
          width: 60px;
          height: 60px;
          background-color:#25D366;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.137);
          cursor: pointer;
          transition: all 0.3s ease;
          z-index: 1100;
      }

      .chat-button:hover {
          transform: scale(1.1);
          box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      }

      .chat-button a i {
          color: var(--white);
          font-size: 44px;
      }

  

      .contact-option.whatsapp i {
          color: white;
      }

     
