/* ================= GLOBAL ================= */
body {
  font-family: 'Segoe UI', sans-serif;
}
html {
  scroll-padding-top: 80px; /* adjust this to navbar height */
  scroll-behavior: smooth;
}

/* ================= NAVBAR ================= */
.custom-navbar {
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.brand-icon {
  font-size: 1.8rem;
  color: #0d6efd;
}

.brand-text {
  font-weight: 700;
  color: #0d6efd;
  font-size: 1.2rem;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #0d6efd !important;
}

.cta-btn {
  border-radius: 10px;
  padding: 8px 22px;
}

/* Add a border under active nav-link */
.navbar-nav .nav-link.active {
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px; /* distance from link text */
  left: 0;
  width: 100%;
  height: 3px; /* thickness of line */
  background: #0d6efd; /* your brand blue */
  border-radius: 2px;
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(13,110,253,0.75),
    rgba(0,0,0,0.65)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 20px 0 30px;
  animation: fadeUp 1.3s ease forwards;
}

.hero-buttons a {
  border-radius: 30px;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE TWEAKS ================= */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
}

.about-section {
  background: #ffffff;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0d6efd;
}

.section-title span {
  color: #20c997;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.about-visual {
  min-height: 420px;
}

.about-blob {
  position: absolute;
  width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.about-image {
  width: 90%;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.about-icon {
  position: absolute;
  font-size: 2rem;
  color: #20c997;
  animation: float 3s ease-in-out infinite;
}

.icon-a { top: 0%; left: 0%; }
.icon-b { bottom: 20%; right: 15%; }
.icon-c { top: 30%; right: 20%; }


.services-section {
  background: linear-gradient(180deg,#ffffff 0%,#f7faff 50%,#ffffff 100%);
}

.service-card.premium {
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 40px 30px;
  border: 1px solid rgba(13,110,253,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.45s ease;
  position: relative;
}

.service-card.premium::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  border-radius: 10px;
  opacity: 0.6;
}

.service-card.premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.12);
  border-color: rgba(32,201,151,0.4);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #20c997);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-wrap i {
  font-size: 1.8rem;
  color: #fff;
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #0d6efd;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* QUOTE MODAL */
.quote-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1050;
  overflow-y: auto;
}
.quote-modal-content {
  background: #fff;
  max-width: 550px;
  margin: 100px auto 50px auto;
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  position: relative;
  transition: all 0.4s ease;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0d6efd;
}
.form-success {
  display: none;
  margin-top: 15px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(90deg,#0d6efd,#20c997);
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.quote-modal form input,
.quote-modal form textarea,
.quote-modal form select {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 10px 15px;
  transition: all 0.3s ease;
}
.quote-modal form input:focus,
.quote-modal form textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 8px rgba(13,110,253,0.3);
  outline: none;
}


.why-section {
  background: #ffffff;
}

.why-visual {
  min-height: 420px;
}

.why-blob {
  position: absolute;
  width: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.18;
}

.why-image {
  width: 90%;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.why-icon {
  position: absolute;
  font-size: 2.2rem;
  color: #0d6efd;
  animation: float 3s ease-in-out infinite;
}

.icon-1 { top: 18%; left: 20%; }
.icon-2 { bottom: 20%; right: 18%; }

/* WHY CARDS */
.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(13,110,253,0.1);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
  height: 100%;
}

.why-card i {
  font-size: 1.8rem;
  color: #20c997;
  margin-bottom: 10px;
}

.why-card h6 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #0d6efd;
}

.why-card p {
  font-size: 0.92rem;
  color: #555;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.approach-section {
  background: #ffffff;
}

.approach-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1rem;
}

.approach-visual {
  min-height: 420px;
}

.approach-blob {
  position: absolute;
  width: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
}

.approach-image {
  width: 80%;
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.approach-icon {
  position: absolute;
  font-size: 2.2rem;
  color: #20c997;
  animation: float 3s ease-in-out infinite;
}

.icon-a { top: 20%; left: 20%; }
.icon-b { bottom: 20%; right: 10%; }

.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.2rem 1.5rem;
  background: #ffffff;
  color: #0d6efd;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #0d6efd, #20c997);
  color: #ffffff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  background: #ffffff;
  padding: 1.5rem;
}

/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 80px 0;
}

/* Header Styling */
.contact-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}

.contact-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* CONTACT INFO */
.contact-info h5 {
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
  display: flex;
  align-items: center;
}

.contact-info p i {
  font-size: 1.5rem;
  color: #20c997;
  margin-right: 12px;
}

.contact-info a {
  color: #20c997;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* TRUST ITEMS */
.contact-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #0d6efd;
  font-size: 1rem;
  gap: 10px;
}

.trust-item i {
  font-size: 1.7rem;
  color: #20c997;
}

/* CONTACT FORM */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 25px 80px rgba(0,0,0,0.16);
  transform: translateY(-5px);
}

/* FORM CONTROLS */
.contact-form .form-control {
  border-radius: 15px;
  border: 1px solid rgba(13,110,253,0.2);
  padding: 18px 20px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 15px rgba(13,110,253,0.25);
  outline: none;
}

.contact-form textarea.form-control {
  resize: none;
  min-height: 150px;
}

/* BUTTON STYLING */
.contact-form button {
  background: linear-gradient(90deg, #0d6efd, #20c997);
  border: none;
  color: #fff;
  padding: 15px 35px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* FORM MESSAGE */
#formMessage {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  display: none;
}

#formMessage.text-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
}

#formMessage.text-danger {
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-trust {
    justify-content: start;
  }
}

.footer-section {
  background: linear-gradient(135deg, #0d6efd, #20c997);
  color: #fff;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #e0f7fa;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #20c997;
}

hr {
  border-color: rgba(255,255,255,0.3);
}

.footer-section .small {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.divider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 15px 0 10px 0;
  line-height: 0;
}

.divider svg {
  display: block;
  max-width: 260px; /* keeps original proportion */
  width: 80%; /* responsive */
  height: 24px;
}

/* Optional: add hover or animation per section */
.divider-services path {
  transition: stroke 0.3s ease;
}

.divider-services path:hover {
  stroke: #20c997;
}

.divider-approach path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawLine 1s forwards;
}

.divider-faq path {
  stroke-width: 5;
}

.divider-contact path {
  stroke-width: 3;
}

.floating-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1100;
}

/* Base style for all icons */
.float-icon {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
  cursor: pointer;
}

/* Individual colors and bounce */
.float-icon.whatsapp { 
  background: #25D366; 
  animation: bounce 2.5s infinite; 
}
.float-icon.email { 
  background: #0d6efd; 
  animation: bounce 3s infinite 0.3s; 
}
.float-icon.top { 
  background: #20c997; 
  display: none; 
  opacity: 0; 
}

/* Hover stops bounce and adds lift */
.float-icon.whatsapp:hover,
.float-icon.email:hover {
  animation-play-state: paused;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Scroll to top hover effect */
.float-icon.top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Bounce keyframes */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ================= PREMIUM TOOLTIP ================= */
.float-icon .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(12px);

  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  box-shadow: 
    0 8px 25px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.08);

  transition: 
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Tooltip Arrow */
.float-icon .tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(20, 20, 20, 0.85);
}

/* Show Tooltip */
.float-icon:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.float-icon.whatsapp:hover .tooltip {
  box-shadow:
    0 8px 25px rgba(0,0,0,0.25),
    0 0 18px rgba(37, 211, 102, 0.4);
}

.float-icon.email:hover .tooltip {
  box-shadow:
    0 8px 25px rgba(0,0,0,0.25),
    0 0 18px rgba(13,110,253, 0.4);
}

.float-icon.top:hover .tooltip {
  box-shadow:
    0 8px 25px rgba(0,0,0,0.25),
    0 0 18px rgba(32,201,151, 0.4);
}
.designer-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.designer-link:hover {
  color: #0d6efd;
  text-decoration: underline;
}

/* ================= DESIGNER MODAL ================= */
.designer-modal {
  border-radius: 22px;
  border: none;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 30px 90px rgba(0,0,0,0.18);
}

.designer-icon {
  font-size: 3rem;
  color: #0d6efd;
}

.modal-title {
  font-weight: 700;
  color: #0d6efd;
}


