/* ========================= assets/css/styles.css ========================= */
:root{
  --bg: #ffffff;
  --surface: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --radius: 12px;
  --container: 1100px;
  --gap: 24px;
  --shadow: 0 8px 24px rgba(16,24,40,0.08);
  --glass: rgba(255,255,255,0.6);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}
html{
    scroll-behavior: smooth;
}

/* ================= Improved Navigation ================= */
/* .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 40px;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}




.site-header.scrolled {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
} */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding:0% 0%;
  border-bottom:1px solid rgba(15,23,42,0.04);
  background:transparent;
   /* background: rgba(255, 255, 255, 0.1);  */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  z-index: 1000;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.main-nav {
  display: flex;
  gap: 40px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.site-header.scrolled .main-nav a {
  color: #0f172a;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #006489, #79D900, #00AEEF);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: inherit;
}

/* === Mobile Menu === */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

.site-header.scrolled .menu-toggle {
  color: #0f172a;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .main-nav a {
    color: #0f172a !important;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.top-header {
  position: relative;
  overflow: hidden;
  height: 100vh;/* Full screen hero height */
  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
}

.top-header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  object-fit: none; /* Keeps video proportions while filling area */
  z-index: -1; /* Pushes video behind the header content */
}

.top-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 51, 0.5); /* Optional dark overlay for better text readability */
  z-index: -1;
}

.span-text {
  background: linear-gradient(90deg, #006489, #79D900, #00AEEF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Chrome, Safari */
  background-clip: text;
  font-weight: 700px;
  font-size:60px;
  size:72px;
}
.gradient-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #0066ff, #00e6b8);
  color: #fff;
  font-size: 18px;
  font-family:poppins;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  gap: 10px;
  min-width:200px;
}
.gradient-btn .icon {
  background-color: #fff;
  color: #00bfa6;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.gradient-btn:hover {
  opacity: 0.9;
}
.spannn{
    color:white;
    font-weight: 500px;
    font-size: 50px;
}
.speed-simplicity {
  background: #0b0f1e;
  color: white;
  padding: 50px 20px;
  border-radius: 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-family: poppins;
  
}

.speed-simplicity h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.speed-simplicity p {
  color: #c8c8c8;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.speed-features {
  display: flex;
  color:#0d1a36;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
   /* background: #162033; */
}
.featuree-card {
  padding: 5px 10px;
  box-shadow: 0px 4px 10px #00aaff;
  width: 600px;
  border-radius: 10px;
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
}

.featuree-card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.featuree-card span {
  font-size: 0.9rem;
  color: #aaa;
}

.blue-text {
  color: #00aaff;
}

.green-text {
  color: #00cc66;
}

.pink-text {
  color: #ff33cc;
}

.orange-text {
  color: #ff8800;
}

/* Responsive */
@media (max-width: 600px) {
  .featuree-card {
    max-width: 100%;
  }
}


/* Header */
/* .site-header{background-color:white;position:fixed;width:100%;top:0;z-index:40;padding:0% 0%;border-bottom:1px solid rgba(15,23,42,0.04)} */
.header-inner{display:flex;align-items:center;max-width:100%;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text)}
.brand-logo{padding-left:2px;height:70px;object-fit:contain}
.brand-text{font-weight:700;color:#006489}
.main-nav{display:flex;gap:50px;justify-content: flex-end;padding-right: 60px;width: 100%;font-family: poppins;font-size: 18px;}
.main-nav a {
  color: rgba(0, 0, 0, 1.837);
  text-decoration: none;
  font-weight: 600;
}

.header-actions{display:flex;gap:12px}
.btn{padding:10px 16px;border-radius:10px;border:1px solid transparent;font-weight:600;cursor:pointer}
.btn-ghost{background:transparent}
.btn-primary{background:var(--primary);color:white;border-radius:10px}

/* Hero */
.hero{padding:54px 0}
.hero-grid{grid-template-columns:1fr 460px;gap:40px;align-items:center}
/* .hero-title{padding-top:140px;font-size:63px;margin:0 0 16px;  margin-left: -70px;} */
.hero-title{padding-top:130px;font-size:55px;text-align: center;font-family: poppins;}

/* .hero-lead{color:whitesmoke;margin:0 0 22px;margin-left:-70px;font-weight: 400;} */
.hero-lead{color:whitesmoke;font-weight: 250;text-align: center;font-size: 20px; margin-top: -40px;font-family: poppins;}
.hero-cta{margin-bottom:22px;justify-items: center;}
.hero-slide {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  height: 100vh;             /* match parent height */
  text-align: center;        /* center text */
}
.forsol{
  color:#00AEEF;
}
.stats{list-style:none;padding:0;display:flex;gap:22px;margin:18px 0 0}
.stats li{display:flex;flex-direction:column; color:#ffffff}
.hero-visual{display:flex;justify-content:center;height:600px}
.device-mock{width:100%;max-width:420px;border-radius:18px;box-shadow:var(--shadow);overflow:hidden}
.device-mock img{display:block;width:100%;height:auto}

.performance-section {
  background-color:#EFF7FE;
  text-align: center;
  padding: 50px 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: poppins;
}
.blurcolor{
    background-color: #f0f8ff;
}
.gradient-text {
  background: linear-gradient(90deg, #2ecc71, #00aaff);
  font-size: 60px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.icon-circle img {
  width: 32px;
  height: 32px;
}
.html {
  scroll-behavior: smooth;
}
.green { background-color: #e0f4e8; }
.orange { background-color: #fff3e0; }
.blue { background-color: #e0ecff; }
.purple { background-color: #f3e8ff; }

.stat {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
}

.green-text { color: #1f9d55; }
.orange-text { color: #f57c00; }
.blue-text { color: #1e40af; }
.purple-text { color: #7e22ce; }

.stat-card h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 5px 0 10px;
}

.stat-card p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 992px) {
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-cards {
    grid-template-columns: 1fr;
  }
}
.features-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  padding: 15px 40px;
  justify-self: center;
  margin-top: 20px;
  background-color: #f0f8ff;
  border-radius: 12px;
  align-items: start;
  box-sizing: border-box; /* ensures padding doesn't push content out */
  max-width: 100%; /* prevent overflow */
  overflow-x: hidden;
}

.features-section * {
  max-width: 100%; /* force inner elements to shrink */
  word-wrap: break-word; /* break long words */
  box-sizing: border-box;
}

/* Tablet view */
@media (max-width: 768px) {
  .features-section {
    grid-template-columns: 1fr;
    padding: 15px 20px;
    padding-left: 20px;
  }
}
/* Mobile view */
@media (max-width: 480px) {
  .features-section {
    padding: 10px;
    gap: 8px;
  }
}
.features-section .feature-card {
  flex: 0 0 calc(50% - 20px); /* each takes ~half width with small gap */
}
.feature-card {

  background:white;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
  padding: 12px;
  width: 600px; /* shrink width */
  height: auto;
  transition: transform 0.2s ease;
}

.background-header {
  z-index: 10000;
  height: 13vh !important;
  position: fixed !important;
  top: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(14, 14, 14, 0.374) !important;
  nav ul li a {
    color: white !important;
  }
}
.feature-card:hover {
  transform: translateY(-3px);
}

.feature-card .icon {
  font-size: 24px;
  /* background: #fff7e6; */
  padding: 8px;
  border-radius: 8px;
}

.feature-card:nth-child(2) .icon {
  /* background: #e6f4ff; light blue */
}

.feature-card:nth-child(3) .icon {
  /* background: #fff0f0; light red/pink */
}

.feature-card:nth-child(4) .icon {
  /* background: #f3f3f3; light gray */
}

.feature-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.feature-card p {
  margin: 5px 0 0;
  color: #555;
  font-size: 14px;
}
/* 
.why-choose {
  scroll-margin-top: 70px;
  font-family: poppins;
  display: flex;
  gap: 30px;
  background: 
    linear-gradient(rgba(0, 10, 51, 0.859), rgba(0, 10, 51, 0.859)),
    url("../Port\ 2.jpg") center/cover no-repeat;
  padding: 40px 60px;
  border-radius: 20px;
  color: white;
  box-sizing: border-box;
  max-width: 1205px;
  margin: 0 auto;
}

.image-box {
    align-content: center;
  padding-right: 0;
}
.why-choose .content {
  flex: 1;
  padding: left 40px;
  font-size: 10px;
  color:whitesmoke;
}

.why-choose h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.highlight {
  color: white;
}

.blue-title {
  font-family: poppins;
  color: #00aaff;
  font-weight: bold;
  font-size: 15px;
  margin-top: 15px;
}

.orange-title {
  font-family:poppins;
  color: #ff7b00;
  font-weight: bold;
  font-size: 15px;
  margin-top: 15px;
}

.green-title {
  font-family:poppins;
  color: #79d900;
  font-weight: bold;
  font-size: 15px;
  margin-top: 15px;
}
.tect{
  font-family: poppins;
  font-size: 13px; 
  color:whitesmoke;
}
.why-choose p {
  margin: 5px 0;
}

.image-box {
  flex: 1;
  position: relative;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.info-overlay {
  position: absolute;
  bottom: 145px;
  left: 15px;
  right: 15px;
  background: rgba(0, 200, 255, 0.85);
  display: flex;
  justify-content: space-around;
  padding: 5px;
  border-radius: 15px;
}

.info-item {
  text-align: center;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(26, 35, 126, 0.5), 0 0 20px rgba(26, 35, 126, 0.3);
  }
  to {
    box-shadow: 0 0 20px rgba(26, 35, 126, 0.8), 0 0 30px rgba(26, 35, 126, 0.5);
  }
}

.info-number {
  display: block;
  font-size: 20px;
  font-weight: bold;
}

.info-text {
  font-size: 14px;
} */

/* Features */
.features{padding:48px 0}
.section-title{font: size 50px;margin-bottom:18px}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.card{background:var(--surface);padding:18px;border-radius:12px;box-shadow:var(--shadow);min-height:140px}
.card-icon{font-size:28px;margin-bottom:8px}

/* Content & Pricing */
.content-section{padding:48px 0}
.two-col{display:grid;grid-template-columns:1fr 320px;gap:28px;align-items:start}
.price-card{background:white;border-radius:14px;padding:20px;box-shadow:var(--shadow);text-align:center}
.price{font-weight:800;font-size:20px;margin:6px 0 12px}
.price-features{list-style:none;padding:0;margin:12px 0 18px}

/* Footer */
.site-footer{border-top:1px solid rgba(15,23,42,0.04);padding:18px 0;margin-top:40px}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.footer-inner a{color:var(--muted);text-decoration:none;margin-left:12px}

/* Responsive */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .header-inner{gap:10px}
  .main-nav{display:none}
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 24px;
    line-height: 1.3;
    padding-top: 80px; /* reduce top padding */
    text-align: center;
    margin: 0 10px; /* space from left/right edges */
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin: 0 15px;
  }
  .hero-cta {
    justify-items:center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  }
.text{
    color:black;
}
.text-muted{color:var(--muted)}


.stats-section {
  display: flex;
  justify-content: center;
  background: #f8f9fa;
  padding: 50px 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: #f2f2f2;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 250px;
  border-radius: 8px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #008080, #32cd32, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00a651;
  margin: 10px 0;
}

.stat-text {
  font-size: 1rem;
  color: #333;
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
  }
}
.port-footer {
  font-family: Arial, sans-serif;
  color: #fff;
}
.fullcolor{
   background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.footer-background {
  background: url('../Footer\ img.png') center/cover no-repeat;
  position: relative;
}

.footer-overlay {
  /* background: rgba(0, 35, 90, 0.8);  */
  padding: 40px 0;
}

.footer-content {
  font-family: poppins;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0 20px;
}

.footer-content h2 {
  font-family:poppins;
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-content p {
  font-family:poppins;
  font-size: 16px;
  opacity: 0.9;
}

.footer-search {
  font-family:poppins;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-search input {
  font-family:poppins;
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.footer-search button {
  font-family:poppins;
  background: #6cc04a;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.schedule-demo {
  font-family:poppins;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 20px;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  text-align: left;
}

.schedule-demo h3 {
  font-family:poppins;
  margin: 0 0 5px 0;
}

.schedule-demo p {
  font-family:poppins;
  font-size: 14px;
  opacity: 0.9;
}

.demo-btn {
  font-family:poppins; 
  background: white;
  color: black;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
}

.footer-columns {
 font-family:poppins;  
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: left;
  margin-top: 40px;
  gap: 30px 60px ;
}

.footer-left {
  flex: 1 1 200px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-col {
  flex: 1 1 150px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
    white-space: nowrap;
}

.footer-col ul li a:hover {
  opacity: 1;
}

.social-icons a {
   font-family:poppins;
  color: white;
  margin-right: 10px;
  font-size: 18px;
}

.footer-bottom {
   font-family:poppins;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}
.footer-search {
   font-family:poppins;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.search-wrapper {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 5px 0 0 5px;
  padding-left: 10px;
  flex: 1;
}

.search-logo {
  height: 20px; /* adjust size */
  margin-right: 8px;
}

.search-wrapper input {
  font-family:poppins;
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.footer-search button {
  font-family:poppins;
  background: #6cc04a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
@media (max-width: 600px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-left,
  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-col ul li a {
    white-space: normal; /* allow wrapping on small screens */
  }

  .footer-bottom {
    text-align: center;
    font-size: 12px;
  }

  .footer-search {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-search button {
    border-radius: 0 0 5px 5px;
    margin-top: 5px;
  }

  .search-wrapper {
    border-radius: 5px;
  }
}


/* AI Add-Ons Section */
.ai-addons-section {
  font-family:poppins;
  padding: 80px 20px;
  background: #f9f9fc;
  font-family: 'Segoe UI', sans-serif;
}

.ai-addons-section .container {
  font-family:poppins;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family:poppins;
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.section-subtitle {
  font-family:poppins;
  font-size: 1.2em;
  margin-bottom: 50px;
  color: #555;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.addon-card {
  font-family:poppins;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.addon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.addon-icon {
  font-size: 2.5em;
  color: #0057d8;
  margin-bottom: 15px;
}

.addon-card h3 {
  font-family:poppins;
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #333;
}

.addon-card p {
  font-family:poppins;
  font-size: 1em;
  color: #666;
  min-height: 60px;
}

.toggle-btn {

  font-family: poppins;
  margin-top: 15px;
  background: #0057d8;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.toggle-btn:hover {
  background: #003ea8;
}

.addon-details {
  margin-top: 20px;
  text-align: left;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.addon-details ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 30px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
  margin-top: 20px;
}

.carousel-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #555;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-dots .active {
  background: #00AEEF;
}

    .whatsapp-icon {
        position: fixed;   /* Fixes the icon in place */
        bottom: 20px;      /* Distance from the bottom of the page */
        right: 20px;       /* Distance from the right side of the page */
        z-index: 9999;     /* Ensures the icon stays on top of other elements */
    }
    
    .whatsapp-icon:hover {
        color: #128C7E;  /* Change color on hover */
    }

@keyframes fade {
  from {opacity: 0.4;}
  to {opacity: 1;}
}
