.navbar-logo {
  height: 50px;
  width: auto;
}

/* Small reset + sensible defaults for cross-browser consistency */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  /* color tokens used throughout the stylesheet - improves cross-browser consistency */
  --white: #ffffff;
  --dark-text: #111827;
  --light-text: #6b7280;
  --primary-color: #16a34a;
  --shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Make images responsive by default */
img, picture, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reduce marquee motion on small screens to avoid overflow and layout shifts */
@media (max-width: 575.98px) {
  .marquee-track { animation-duration: 50s !important; }
  .marquee-wrapper { overflow: visible; }
  .partner-card { min-width: 160px; width: 160px; }
}

/* Responsive typography and hero spacing */
@media (max-width: 991.98px) {
  .hero-section { padding: 110px 0 60px; }
  .hero-content h1 { font-size: clamp(1.6rem, 5vw, 2.8rem); }
}

@media (max-width: 575.98px) {
  .hero-section { padding: 80px 0 40px; }
  .hero-content h1 { font-size: clamp(1.4rem, 7vw, 2.2rem); }
  .warranty-circle-wrapper { width: 160px; height: 160px; }
  .warranty-circle h3 { font-size: 32px; }
  .step-circle { width: 48px; height: 48px; font-size: 1rem; }
  .partner-card { min-width: 140px; width: 140px; }
}

:root {
  --navbar-height: 72px; /* approximate fixed navbar height */
  --section-vertical: 4.5rem; /* standard top/bottom padding for sections */
  --card-padding: 24px; /* unified inner padding for cards */
  --card-radius: 14px;
}

/* Global scroll & layout helpers */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden; /* prevent horizontal overflow from marquees */
}

/* Utility classes / section system */
.section-padding {
  padding: var(--section-vertical) 0;
}

.section-title {
  margin: 0 0 1rem 0;
  line-height: 1.05;
}

/* Ensure anchor targets don't hide behind fixed navbar */
section {
  scroll-margin-top: calc(var(--navbar-height) + 1rem);
}

/* ===== NAVBAR ===== */
.custom-navbar {
  background: white;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.top-icon {
    width: 40px;
    height: 30px;
    margin-right: 8px;
    object-fit: contain;
}


/* ===== TOP STRIP ===== */
.top-strip {
    background-color:#198754; /* or dark color */
    color: #fff;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    z-index: 1051; /* above navbar */
}

.top-strip .top-left,
.top-strip .top-right {
    white-space: nowrap;
}

/* ===== NAVBAR OFFSET ===== */
.navbar-offset {
    margin-top: 40px; /* same as top strip height */
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .top-strip {
        font-size: 12px;
        height: 35px;
        line-height: 35px;
    }
    .navbar-offset {
        margin-top: 35px;
    }
}



/* ================= MOBILE SIDEBAR ================= */
.mobile-sidebar {
    width: 300px;
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form-card .form-control {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 12px;
}

/* Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}



/* Header */
.mobile-sidebar .offcanvas-header {
  margin-top: 1rem;
    padding: 20px 20px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Logo */
.mobile-sidebar .navbar-logo {
    height: 40px;
}

/* Body Centering */
.mobile-sidebar .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

/* Menu list */
.mobile-sidebar .navbar-nav {
    width: 100%;
    text-align: center;
}

/* Menu item spacing */
.mobile-sidebar .nav-item {
    margin: 6px 0;
}

/* Links */
.mobile-sidebar .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #212529;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Hover / Active */
.mobile-sidebar .nav-link:hover,
.mobile-sidebar .nav-link:focus {
    background: rgba(255, 193, 7, 0.15);
    color: #000;
    transform: translateY(-1px);
}

/* CTA Button */
.mobile-sidebar .btn-warning {
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(255, 193, 7, 0.35);
}

/* Close button tweak */
.mobile-sidebar .btn-close {
    transform: scale(1.1);
}

/* ================= SAFE MOBILE TOUCH ================= */
@media (max-width: 575.98px) {
    .mobile-sidebar .nav-link {
        font-size: 1.05rem;
    }
}

/* Sidebar width */
.offcanvas {
    width: 280px;
}

/* Sidebar links */
.offcanvas .nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 2px solid;
}

/* Improve tap experience */
.offcanvas .nav-item {
    padding: 4px 0;
}


.navbar-brand {
  font-size: 1.4rem;
}

.nav-link {
  font-weight: 500;
  color: #1f2937 !important;
}

.nav-link.active,
.nav-link:hover {
  color: #16a34a !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;            /* vertical center */
    justify-content: center;        /* horizontal center */

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("/assets/frontend/images/banner.png") center / cover no-repeat;

    padding: 120px 15px 60px;       /* prevents navbar overlap */
    box-sizing: border-box;
}

/* Container full height support */
.hero-section .container {
    width: 100%;
}

/* Row alignment */
.hero-section .row {
    align-items: center;
}

/* Text spacing safety */
.hero-content h1 {
    line-height: 1.2;
}

.hero-content p {
    max-width: 600px;
}

/* Card responsiveness */
.hero-form-card {
    max-width: 480px;
    margin-left: auto;
}

/* ---------- TABLET (≤ 991px) ---------- */
@media (max-width: 991px) {

    .hero-section {
        padding-top: 140px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form-card {
        margin: 0 auto;
    }
}

/* ---------- MOBILE (≤ 576px) ---------- */
@media (max-width: 576px) {

    .hero-section {
        min-height: auto;
        padding: 130px 15px 50px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-form-card {
        width: 100%;
        max-width: 100%;
    }
}

/* ---------- LARGE SCREENS (≥ 1400px) ---------- */
@media (min-width: 1400px) {

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    .hero-form-card {
        max-width: 520px;
    }
}



/* FLOAT EFFECT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}



/* BENEFITS SECTION */
.benefits-section {
  padding: var(--section-vertical) 0;
}

.benefit-card {
  border-radius: var(--card-radius);
  background: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  will-change: transform, opacity;
}

.benefit-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ICON CIRCLE */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* COLOR HELPERS */
.text-purple {
  color: #6f42c1;
}

.bg-purple-subtle {
  background-color: #f1e9ff;
}

.border-purple-subtle {
  border-color: #e0d4ff !important;
}

/* WARRANTY HIGHLIGHT */
/* ===== WARRANTY SECTION ===== */
.warranty-highlight {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

/* SUBTLE PATTERN */
.warranty-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.25;
}

/* CIRCLE WRAPPER */
.warranty-circle-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

/* ROTATING RING */
.warranty-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.6);
  animation: spin 12s linear infinite;
}

/* INNER CIRCLE */
.warranty-circle {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #ffffff;
  color: #166534;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7);
  animation: pulse 2.5s infinite;
}

/* ICON */
.warranty-circle i {
  font-size: 30px;
  color: #16a34a;
  margin-bottom: 4px;
}

/* NUMBER */
.warranty-circle h3 {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

/* LABEL */
.warranty-circle span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ANIMATIONS */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(250,204,21,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(250,204,21,0); }
  100% { box-shadow: 0 0 0 0 rgba(250,204,21,0); }
}


/* TIMELINE */
.timeline-section {
  background: linear-gradient(to bottom, #eff6ff, #ffffff);
  padding: var(--section-vertical) 0;
}

.timeline-step {
  position: relative;
}

/* CARD */
.step-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  will-change: transform, opacity;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* CIRCLE */
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* TEXT */
.timeline-step p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  margin: 0;
}

/* ARROW */
.step-arrow {
  position: absolute;
  top: 45%;
  right: -14px;
  font-size: 22px;
  color: #9ca3af;
  font-weight: bold;
}

/* CUSTOM COLORS */
.bg-purple { background: #7c3aed; }
.bg-pink { background: #ec4899; }
.bg-indigo { background: #6366f1; }
.bg-success-dark { background: #15803d; }
.bg-orange { background: #f97316; }
.bg-teal { background: #14b8a6; }


/* CAPACITY PLANS */
.capacity-section {
  padding: var(--section-vertical) 0;
}

.capacity-card {
  border-radius: var(--card-radius);
  background: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  padding: var(--card-padding);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  will-change: transform, opacity;
}

.capacity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* POPULAR CARD */
.popular-card {
  background: linear-gradient(to bottom, #ecfdf5, #ffffff);
}

/* BADGE */
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

/* PRICE */
.price-symbol {
  font-size: 3rem;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 4px;
}

/* COLOR HELPERS */
.text-purple {
  color: #6f42c1;
}
.border-purple {
  border-color: #d8b4fe !important;
}


/* ===== SYSTEM SPECS ===== */
.specs-section {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  padding: var(--section-vertical) 0;
}

/* CARD */
.spec-box {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  will-change: transform, opacity;
}

.spec-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* ICON */
.spec-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* TEXT */
.spec-box h4 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.spec-box p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

/* CUSTOM COLORS */
.bg-purple { background: #7c3aed; }
.bg-teal { background: #14b8a6; }


/* FLOAT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* ================= PARTNERS SECTION ================= */
.partners-section {
    overflow: hidden; /* CRITICAL */
}

/* Wrapper controls overflow */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Track */
.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

/* Partner card */
.partner-card {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 200px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Images */
.partner-card img {
    max-width: 100%;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* Text */
.partner-card span {
    font-size: 14px;
    white-space: nowrap;
}

/* ================= RESPONSIVE FIXES ================= */
@media (max-width: 991.98px) {
    .partner-card {
        min-width: 150px;
        padding: 12px;
    }

    .partner-card img {
        height: 34px;
    }
}

@media (max-width: 575.98px) {
    .marquee-track {
        gap: 16px;
    }

    .partner-card {
        min-width: 130px;
        padding: 10px;
    }

    .partner-card span {
        font-size: 13px;
    }
}



/* MARQUEE */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
}

/* LEFT TO RIGHT */
.marquee-left {
  animation: marquee-left 30s linear infinite;
  animation-timing-function: linear;
}

/* RIGHT TO LEFT */
.marquee-right {
  animation: marquee-right 30s linear infinite;
  animation-timing-function: linear;
}


/* CARD */
.partner-card {
  margin-bottom: 1rem;
  min-width: 220px;
  width: 220px;
  background: #ffffff;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



/* LOGO */
.partner-card img {
  height: 60px;
  max-width: 160px;
  margin-bottom: 10px;
  object-fit: contain;
  display: block;
}

/* NAME */
.partner-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f2937;
}

/* KEYFRAMES */
@keyframes marquee-left {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

@keyframes marquee-right {
  0% { transform: translate3d(-50%,0,0); }
  100% { transform: translate3d(0,0,0); }
}

/* Ensure rows holding cards stretch to equal heights */
.benefits-section .row,
.specs-section .row,
.capacity-section .row {
  align-items: stretch;
}

/* Section headings: reduce unexpected margins from bootstrap defaults */
.benefits-section h2,
.specs-section h2,
.capacity-section h2,
.partners-section h2,
.timeline-section h2 {
  margin-bottom: 1rem;
}

/* Make animated elements GPU-accelerated and avoid layout shifts */
.hero-content h1, .hero-content p, .spec-box, .benefit-card, .capacity-card, .step-card {
  will-change: transform, opacity;
}



/* MODI IMAGE */
.modi-image-wrapper {
  max-width: 260px;
  margin: 0 auto;
}

.modi-image {
    max-width: 200px;
    border-radius: 0px;
    margin-left: 10%;
    margin-top: -2rem;
}


/* ===== SECTION ===== */


.section-title {
  font-weight: 800;
  color: #111827;
}

.section-text {
  color: #4b5563;
  line-height: 1.7;
}

/* Vision / Mission Cards */
.vm-card {
  background: white;
  border-left: 3px solid #ffc107;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.vm-title {
  font-weight: 700;
  color: #16a34a;
}

.vm-text {
  color: #4b5563;
  line-height: 1.6;
}

.vm-list {
  color: #4b5563;
  padding-left: 20px;
}

.vm-list li {
  margin-bottom: 10px;
}
.about-text {
  text-align: justify;        /* clean left + right edges */
  text-justify: inter-word;   /* better word spacing */
  line-height: 1.8;
  color: #4b5563;
}

/* Improve last line alignment */
.about-text {
  text-align-last: left;
}



/* FAQ SECTION */
.faq-section {
  background: #f8fafc;
}

/* FAQ Section */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button {
  background: var(--white);
  color: var(--dark-text);
  font-weight: 600;
  padding: 1.5rem;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button i {
  margin-right: 0.5rem;
}

.accordion-body {
  padding: 1.5rem;
  background: var(--white);
  color: var(--dark-text);
  line-height: 1.8;
}

.testimonials-section{
     background: linear-gradient(135deg, #e8f5e9 0%, #fff3e0 100%);
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.testimonial-author h5 {
  margin: 0;
  color: var(--dark-text);
  font-size: 1.1rem;
}

.testimonial-author p {
  margin: 0;
  color: var(--light-text);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e67e22 100%);
}

.cta-card {
  color: var(--white);
}

.cta-card h2 {
  color: var(--white);
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cta-feature {
  text-align: center;
}

.cta-feature i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.cta-feature h5 {
  color: var(--white);
  font-size: 1.1rem;
}
/* ================= CONTACT SECTION ================= */
/* CONTACT SECTION */
.contact-section {
  background: #f8fafc;
}

/* CARD STYLE */
.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* FORM */
.contact-form .form-control {
  border-radius: 10px;
  padding: 12px;
}

.contact-form .form-control:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

/* MAP */
.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* CTA ICON BUTTON */
.cta-icon-btn {
  border-radius: 30px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

/* Hover Effect */
.cta-icon-btn:hover {
  transform: translateY(-2px);
}

/* Capacity Card Upgrade */
.capacity-card {
  border-radius: 20px;
  transition: all 0.3s ease;
}

.capacity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}



/* =========================
   FOOTER BASE
========================= */
.footer {
    background-color: #111;
    width: 100%;
    overflow-x: hidden;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    white-space: nowrap;
}

/* =========================
   TEXT BLOCKS
========================= */
.footer-text {
    max-width: 340px;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
    word-break: break-word;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.3s ease,
                background-color 0.3s ease,
                color 0.3s ease;
}

.social-icon:hover {
    background-color: #f9b233;
    color: #000;
    transform: translateY(-4px);
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Large screens */
@media (min-width: 1200px) {
    .footer-text {
        max-width: 390px;
        font-size: 1rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .footer {
        text-align: center;
    }

    .footer-text {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .footer h5 {
        text-align: center;
    }

    .footer-text {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }

    .social-links {
        justify-content: center;
        gap: 12px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

/* =========================
   CROSS-BROWSER FIXES
========================= */
img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

i {
    line-height: 1;
}


/* ===== QUOTE SECTION BORDER ===== */
.quote-section {
    position: relative;
    padding: 80px 0;
    background:#f8e7b4;
   /* your existing dark bg */
}

/* MAIN BORDER */
.quote-section .container {
    position: relative;
    border: 4px solid #5bb43c;
    border-radius: 22px;
    padding: 40px 30px;
    background: transparent;
}

/* CORNER DOTS */
.quote-section .container::before,
.quote-section .container::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #5bb43c;
    border-radius: 50%;
}

.quote-section .container::before {
    top: -6px;
    left: 30px;
}

.quote-section .container::after {
    bottom: -6px;
    right: 30px;
}

/* QUOTE MARKS */
.quote-mark {
    position: absolute;
    font-size: 70px;
    font-family: serif;
    color: #5bb43c;
    background: #f8e7b4; /* match section bg */
    padding: 0 10px;
    z-index: 5;
}

.quote-mark.start {
    top: -38px;
    left: 20px;
}

.quote-mark.end {
    bottom: -55px;
    right: 20px;
}

/* IMAGE STYLING */
.modi-image {
    max-width: 200px;
    border-radius: 12px;
}

/* QUOTE TEXT */
.quote-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.quote-author {
    margin-top: 10px;
    font-weight: 600;
    text-align: right;
    color: #dcdcdc;
}

/* POPUP BACKDROP */
.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* CARD */
.success-card {
    background: #fff;
    padding: 30px 35px;
    border-radius: 18px;
    text-align: center;
    animation: popupScale 0.4s ease;
}

/* CHECK ICON */
.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.checkmark svg {
    width: 100%;
    height: 100%;
}

.checkmark-circle {
    stroke: #28a745;
    stroke-width: 4;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: drawCircle 0.6s ease forwards;
}

.checkmark-check {
    stroke: #28a745;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.4s 0.6s ease forwards;
}

/* ANIMATIONS */
@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

@keyframes popupScale {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* FULL SCREEN PRELOADER */
#sitePreloader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* CENTER CONTENT PROPERLY */
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;

    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* BIG LOGO */
.preloader-logo {
    width: 200px;
    max-width: 90%;
    animation: logoPulse 1.6s ease-in-out infinite;
}

/* LOADER LINE */
.preloader-line {
    width: 200px;
    height: 5px;
    background: rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}



/* TEXT */
.preloader-content p {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #fff;
    opacity: 0.9;
    margin: 0;
}

/* ANIMATIONS */
@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.preloader-line::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 100%;
    background: #ffc107;
    animation: loadingLine 1.2s ease-in-out infinite;
}

@keyframes loadingLine {
    0% { left: -40%; }
    100% { left: 100%; }
}



