/* ===========================
   Base Styles
=========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}


/* Logo container */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-svg {
  height: 44px;          /* adjusts overall logo size */
  width: auto;
  display: block;
  transition: transform .2s ease;
}

.logo:hover .logo-svg {
  transform: translateY(-1px);
}

/* For very small screens, shrink a bit */
@media (max-width: 360px) {
  .logo-svg { height: 38px; }
}



.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ===========================
   Header / Nav
=========================== */
.header { background:#fff; box-shadow:0 2px 6px rgba(0,0,0,0.1); position:sticky; top:0; z-index:1000; }
.nav { display:flex; justify-content:space-between; align-items:center; padding:1rem 0; }
.logo { font-size:1.5rem; font-weight:bold; color:#2193b0; }

.nav-links { list-style:none; display:flex; gap:2rem; }
.nav-links li a { text-decoration:none; color:#333; font-weight:500; position:relative; transition:color .3s; }
.nav-links li a::after { content:""; position:absolute; width:0; height:2px; bottom:-5px; left:0; background:#2193b0; transition:width .3s; }
.nav-links li a:hover { color:#2193b0; }
.nav-links li a:hover::after { width:100%; }

/*.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; }*/
/*.burger span { width:25px; height:3px; background:#333; transition:.3s; }*/
/*.burger.toggle span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }*/
/*.burger.toggle span:nth-child(2){ opacity:0; }*/
/*.burger.toggle span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }*/

/* ===========================
   Hero
=========================== */
.hero {
  position:relative; height:100vh; overflow:hidden;
  display:flex; justify-content:center; align-items:center; text-align:center; color:#fff;
  background: linear-gradient(-45deg, #2193b0, #6dd5ed, #3498db, #2c3e50);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
#particles-js { position:absolute; inset:0; z-index:1; }
.hero-content { position:relative; z-index:2; max-width:700px; padding:0 1rem; opacity:0; transform:translateY(30px); animation:fadeInUp 1.2s ease forwards .5s; }
@keyframes fadeInUp { to{opacity:1; transform:translateY(0);} }
.hero h1 { font-size:2.8rem; margin-bottom:1rem; }
.hero p { margin-bottom:2rem; font-size:1.2rem; }
.btn { display:inline-block; padding:.8rem 1.5rem; background:#fff; color:#2193b0; border-radius:30px; text-decoration:none; font-weight:bold; transition:.3s; }
.btn:hover { background:#f4f4f4; }

/* ===========================
   Services
=========================== */
.services { text-align:center; padding:4rem 0; }
.services h2 { margin-bottom:2rem; font-size:2rem; }
.service-cards { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:2rem; }
.card { background:#fff; padding:2rem; border-radius:15px; box-shadow:0 4px 10px rgba(0,0,0,0.1); transition:transform .3s, box-shadow .3s; text-align:center; }
.card:hover { transform:translateY(-10px); box-shadow:0 6px 20px rgba(0,0,0,0.15); }
.icon { margin-bottom:1rem; color:#2193b0; }
.card h3 { margin-bottom:1rem; color:#2193b0; }
.card p { margin-bottom:1.5rem; }
.card a { display:inline-block; padding:.7rem 1.2rem; background:#2193b0; color:#fff; border-radius:8px; text-decoration:none; transition:.3s; }
.card a:hover { background:#176d82; }



/* ===========================
   Projects
=========================== */
/* Projects Section */
.projects {
  text-align: center;
  padding: 4rem 0;
}

.projects h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #2193b0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  aspect-ratio: 4/3; /* was 16/9, now taller */
}


.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ✅ ensures image fills without stretching */
  display: block;
  transition: transform 0.5s ease;
}


.project-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(33, 147, 176, 0.9);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.overlay p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.overlay .btn {
  padding: 0.6rem 1.2rem;
  background: #fff;
  color: #2193b0;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.overlay .btn:hover {
  background: #f4f4f4;
  color: #176d82;
}

/* Coming Soon card (slight dim effect) */
.project-card.coming-soon img {
  filter: none !important;
}


/* ===========================
   Contact
=========================== */
.contact { padding:4rem 0; text-align:center; }
.contact h2 { margin-bottom:1rem; font-size:2rem; }
.contact p { margin-bottom:2rem; color:#555; }

.contact-form { max-width:600px; margin:0 auto; display:flex; flex-direction:column; gap:1rem; text-align:left; }
.contact-form label { font-weight:500; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding:.8rem; border:1px solid #ccc; border-radius:8px; font-size:1rem; font-family:'Poppins',sans-serif; width:100%;
}
.contact-form textarea { resize:vertical; }
.contact-form .btn { align-self:flex-start; background:#2193b0; color:#fff; border:none; cursor:pointer; }
.contact-form .btn:hover { background:#176d82; }

/* optional appear animation */
.card.appear, .project-card.appear { animation: fadeInUp .6s ease both; }





/* ===========================
   Footer
=========================== */
/*.footer { background:#2c3e50; color:#ddd; padding:3rem 1rem; margin-top:3rem; }*/
/*.footer-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:2rem; }*/
/*.footer h3, .footer h4 { margin-bottom:1rem; color:#fff; }*/
/*.footer a { color:#ddd; text-decoration:none; transition:.3s; }*/
/*.footer a:hover { color:#fff; }*/
/*.socials a { margin-right:10px; font-size:1.3rem; transition:.3s; }*/
/*.socials a:hover { color:#fff; }*/
/*.footer-bottom { text-align:center; margin-top:2rem; font-size:.9rem; color:#aaa; }*/

/* ===========================
   Footer (Stylish)
=========================== */
.footer {
  position: relative;
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
  overflow: hidden;
}

/* Add subtle overlay shapes */
.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer h3, .footer h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.footer a:hover {
  color: #000;
}

.socials a {
  margin-right: 15px;
  font-size: 1.4rem;
  transition: transform 0.3s, color 0.3s;
}
.socials a:hover {
  transform: scale(1.2);
  color: #000;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}







/* ===========================
   Responsive
=========================== */
@media (max-width: 768px){
  .nav-links{
    position:absolute; top:70px; right:-100%;
    flex-direction:column; width:220px; background:#fff; padding:2rem;
    box-shadow:0 4px 10px rgba(0,0,0,0.1); transition:right .3s ease-in-out;
  }
  .nav-links.active{ right:10px; }
  .burger{ display:flex; }
}

/* Feature Section */
.feature {
  padding: 4rem 0;
}

.feature-grid {
  display: flex;                /* use flexbox */
  align-items: center;          /* vertical centering */
  gap: 2rem;                    /* spacing between image and text */
}

.feature-grid.reverse {
  flex-direction: row-reverse;  /* swap sides */
}

.feature-image {
  flex: 1;                      /* take equal space */
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2193b0;
}

.feature-text p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.feature-text .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #2193b0;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.feature-text .btn:hover {
  background: #176d82;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;     /* stack vertically on small screens */
    text-align: center;
  }
  .feature-grid.reverse {
    flex-direction: column;     /* no reverse on mobile */
  }
  .feature-text {
    margin-top: 1rem;
  }
}

/* Hero for project pages */
.small-hero {
  height: 40vh;
  background: linear-gradient(to right, #2193b0, #6dd5ed);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.small-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.small-hero p {
  font-size: 1.2rem;
}

/* Project Info Sections */
.project-info {
  padding: 4rem 0;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-block.reverse {
  flex-direction: row-reverse;
}

.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2193b0;
}

.info-text p {
  color: #555;
  line-height: 1.6;
}

.info-image {
  flex: 1;
}

.info-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;      /* ✅ limit very tall images */
  object-fit: contain;    /* ✅ show full image without cropping */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  background: #fff;       /* ✅ adds padding look if extra space */
  padding: 10px;          /* ✅ breathing room for portrait images */
}


/* Responsive */
@media (max-width: 768px) {
  .info-block {
    flex-direction: column;
  }
  .info-block.reverse {
    flex-direction: column;
  }
}


/* CTA Section */
.cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #2193b0, #6dd5ed);
  border-radius: 12px;
  margin: 4rem auto;
  color: #fff;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cta .btn {
  background: #fff;
  color: #2193b0;
  font-weight: 600;
  border-radius: 30px;
}

.cta .btn:hover {
  background: #f4f4f4;
}

/* Process Stepper */
:root{
  --brand:#2193b0;
  --brand2:#6dd5ed;
  --ink:#2c3e50;
  --muted:#555;
  --card:#ffffff;
  --ring:rgba(33,147,176,.15);
}

.process{ padding:4rem 0; }
.process h2{ font-size:2.2rem; text-align: center; margin-bottom:.75rem; color:var(--brand); }
.process-intro{ max-width:760px; margin:0 auto 2rem; color:var(--muted); font-size:1.05rem; }

/* Stepper bar */
.stepper{
  position:relative;
  display:flex;
  gap:.75rem;
  overflow-x:auto;
  padding:.75rem .5rem 2.25rem;
  border-radius:14px;
  background:rgba(255,255,255,.9);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  scrollbar-width:none;
}
.stepper::-webkit-scrollbar{ display:none; }

.step{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.6rem .9rem;
  background:#f7fbfd;
  border:1px solid transparent;
  border-radius:999px;
  cursor:pointer;
  white-space:nowrap;
  transition:.25s ease;
  outline:none;
}
.step .step-index{
  width:28px; height:28px; border-radius:50%;
  display:inline-grid; place-items:center;
  font-weight:700; color:#fff;
  background:linear-gradient(90deg,var(--brand),var(--brand2));
}
.step .step-label{ color:var(--ink); font-weight:600; font-size:.95rem; }
.step:is(:hover,:focus-visible){
  border-color:var(--ring);
  box-shadow:0 0 0 4px var(--ring);
}
.step.is-active{
  background:#fff;
  border-color:rgba(33,147,176,.25);
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}
.step.is-complete .step-index{
  background:linear-gradient(90deg,#27ae60,#6dd5ed);
}

/* Progress line under the chips */
.progress{
  position:absolute; left:12px; right:12px; bottom:12px; height:6px;
  background:linear-gradient(90deg,#ecf7fb,#f2fbff);
  border-radius:999px; overflow:hidden;
}
.progress-bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,var(--brand),var(--brand2));
  border-radius:999px;
  transition:width .35s ease;
}

/* Content card */
.step-card{
  margin-top:1.25rem;
  background:var(--card);
  border:1px solid rgba(33,147,176,.12);
  border-radius:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  padding:1.5rem;
  animation:cardIn .35s ease both;
}
@keyframes cardIn{ from{opacity:0; transform:translateY(8px)} to{opacity:1; transform:translateY(0)} }
.step-title{ font-size:1.5rem; color:var(--ink); margin-bottom:.5rem; }
.step-text{ color:var(--muted); margin-bottom:.75rem; }
.step-points{ margin:0 0 1rem 1.1rem; color:var(--muted); }
.step-points li{ margin:.25rem 0; }

.step-actions{
  display:flex; gap:.75rem; align-items:center; flex-wrap:wrap;
}
.btn-ghost{
  background:#eef7fb; color:var(--brand);
  border-radius:30px; padding:.7rem 1.1rem; text-decoration:none; border:none; cursor:pointer;
}
.btn-secondary{
  background:#fff; color:var(--brand); border:1px solid var(--brand);
  border-radius:30px; padding:.7rem 1.1rem; text-decoration:none;
}
.btn-ghost:disabled{ opacity:.5; cursor:not-allowed; }

@media (max-width:768px){
  .step .step-label{ font-size:.9rem; }
  .step-card{ padding:1.25rem; }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  /* Stepper: make it horizontal scrollable with snap */
  .stepper {
    justify-content: flex-start;
    padding-bottom: 2.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .step {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
  .step .step-index {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
  .step .step-label {
    font-size: 0.85rem;
  }

  /* Progress bar closer to steps */
  .progress {
    bottom: 6px;
  }

  /* Card content: bigger tap targets and spacing */
  .step-card {
    padding: 1rem;
    border-radius: 12px;
  }
  .step-title {
    font-size: 1.25rem;
  }
  .step-text {
    font-size: 0.95rem;
  }
  .step-points {
    font-size: 0.95rem;
    margin-left: 1rem;
  }

  /* Buttons: stack if needed */
  .step-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .step-actions .btn,
  .step-actions .btn-ghost,
  .step-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}


/* Ultra Responsive Stepper */
@media (max-width: 600px) {
  /* Stack vertically instead of trying to squeeze */
  .stepper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }

  .step {
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    width: 100%;
  }

  .step .step-index {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .progress {
    display: none; /* hide long horizontal progress bar */
  }

  /* Add a mini inline progress feel */
  .step.is-active {
    border-color: var(--brand);
    box-shadow: 0 2px 8px rgba(33,147,176,0.2);
  }

  .step-card {
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 0.95rem;
  }
}


/* Desktop nav */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

/* Mobile nav (hidden by default) */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4rem 2rem;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0,0,0,.15);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin-bottom: 1.2rem;
  }

  .burger {
    display: block;
  }
}

/* Burger base */
.burger {
  cursor: pointer;
  z-index: 1100;
  display: none; /* keep hidden on desktop by default */
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background: #2c3e50;
  border-radius: 3px;
  transition: all 0.35s ease-in-out;
}

/* Show burger only on mobile */
@media (max-width: 768px) {
  .burger {
    display: block;
  }
}

/* Animate into X */
.burger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 7px);
}
.burger.toggle span:nth-child(2) {
  opacity: 0;
}
.burger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* === Nav & Burger Fix === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* helps with positioning */
}

.burger {
  margin-left: auto; /* push it to far right */
}


/* Rotating text (height handled by JS now) */
.rotating-text {
  display: block;
  position: relative;
  line-height: 1.4;
  overflow: hidden;
  text-align: center;
}

.rotating-text span {
  position: absolute;
  width: 100%;
  opacity: 0;
  color:black;
  animation: fadeRotate 20s infinite;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.rotating-text span:nth-child(1) { animation-delay: 0s; }
.rotating-text span:nth-child(2) { animation-delay: 4s; }
.rotating-text span:nth-child(3) { animation-delay: 8s; }
.rotating-text span:nth-child(4) { animation-delay: 12s; }
.rotating-text span:nth-child(5) { animation-delay: 16s; }

@keyframes fadeRotate {
  0%, 15%   { opacity: 1; transform: translateY(0); }
  20%, 100% { opacity: 0; transform: translateY(1.5em); }
}


#file-list {
  margin-top: 10px;
  list-style: none;
  padding: 0;
}
#file-list li {
  font-size: 14px;
  margin-bottom: 5px;
}


#file-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  background: #f1f1f1;
  border-radius: 4px;
  margin-bottom: 5px;
}

.remove-btn {
  background: transparent;
  border: none;
  color: #e74c3c;
  font-size: 14px;
  cursor: pointer;
}

.remove-btn:hover {
  color: #c0392b;
}

.footer-credit {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover,
.footer-credit a:focus {
  color: #e0e0e0;
  text-decoration: underline;
}


.drop-zone {
  position: relative;
  border: 2px dashed #2193b0; /* use site color */
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  background: #f9f9f9;
  transition: background 0.3s, border-color 0.3s;
}

.drop-zone.dragover {
  background: #e0f7fa;
  border-color: #6dd5ed; /* lighter gradient color when dragging */
}

.drop-zone .browse {
  color: #2193b0;   /* matches site color */
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.drop-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;       /* invisible but clickable */
  cursor: pointer;
}


.whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      border-radius: 50%;
      text-align: center;
      box-shadow: 2px 2px 3px #999;
      z-index: 100;
    }

    .whatsapp-float img {
      margin-top: 5px;
    }
    
/* Reviews */
.reviews {
  margin: 4rem auto;
  text-align: center;
}

.reviews .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2c3e50; /* matches other headings */
}

.review-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 10px;
  font-style: italic;
  text-align: left;
}

.review-card h4 {
  margin-top: 1rem;
  font-weight: 600;
  color: #2193b0; /* uses your brand gradient start colour */
}

/* Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-controls button {
  background: #2193b0;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-controls button:hover {
  background: #176d82;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.carousel-dots button.active {
  background: #2193b0;
}


/* Section heading above features */
.feature .section-heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;   /* match other h2s */
  font-weight: 600;  /* consistent with theme */
}

/* Pricing Section */
.pricing {
  text-align: center;
  margin: 4rem auto;
}
.pricing-intro {
  margin-bottom: 2rem;
  color: #555;
}
.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2193b0;
}
.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}
.price-card ul {
  text-align: left;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}
.price-card ul li {
  margin: 0.6rem 0;
  display: flex;
  align-items: center;
}
.price-card ul li i {
  color: #27ae60;
  margin-right: 0.5rem;
}
.price-card .btn {
  display: block;
  margin-top: 1rem;
}

/* Highlight "Most Popular" */
.price-card.popular {
  border: 2px solid #2193b0;
}
.price-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #2193b0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
}



/* Contact Form Labels */
.contact-form label {
  color: #2193b0;   /* website theme blue */
  font-weight: 600; /* make it stand out */
  margin-bottom: 0.3rem;
  display: inline-block;
}


.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form select:focus + label {
  color: #6dd5ed; /* lighter gradient shade */
}


/* Modern Dropdown */
.contact-form select {
  appearance: none;         /* remove default arrow */
  -webkit-appearance: none; /* Safari fix */
  -moz-appearance: none;    /* Firefox fix */
  
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%232193b0' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 0.75rem center;
  background-size: 1rem;
  
  border: 2px solid #2193b0;
  border-radius: 8px;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

/* On focus */
.contact-form select:focus {
  outline: none;
  border-color: #6dd5ed;
  box-shadow: 0 0 6px rgba(109, 213, 237, 0.5);
}

/* Dropdown caret spacing fix */
.contact-form select option {
  padding: 0.5rem;
}


.hero-font {
  font-family: "Boogaloo", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height:1.1;
  
}


/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0; /* light background */
}
::-webkit-scrollbar-thumb {
  background-color: #2193b0; /* your brand color */
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2193b0 #f0f0f0;
}

/* ================================
   Privacy Policy Page
================================ */
.privacy-policy {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
  line-height: 1.8;
  color: #2c3e50;
}

.privacy-policy h1 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #2193b0, #6dd5ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-policy p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.privacy-policy h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 0.8rem;
  color: #2193b0;
  border-left: 4px solid #6dd5ed;
  padding-left: 0.6rem;
}

.privacy-policy ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}

.privacy-policy ul li {
  margin-bottom: 0.6rem;
  position: relative;
}

.privacy-policy ul li::before {
  content: "•";
  color: #2193b0;
  font-weight: bold;
  position: absolute;
  left: -1rem;
}

.privacy-policy a {
  color: #2193b0;
  font-weight: 500;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* SEO Internal Links Box */
.seo-links {
  margin-top: 2rem;
  line-height: 1.8;
}

.seo-link {
  display: block;
  color: #2193b0;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.2s ease-in-out;
}

.seo-link:hover {
  color: #125f70;
  text-decoration: underline;
}

.seo-link i {
  margin-right: 6px;
  color: #6dd5ed;
}






