@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Quicksand:wght@300..700&display=swap');     
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito Sans', sans-serif;
        }

body {
    font-family: 'Quicksand', 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(to bottom right, #f9fafb, #e5e7eb, #dbeafe);
    padding-top: 80px; /* ← ADD THIS LINE! */
}

/* STICKY HEADER WITH SCROLL-UNDER EFFECT */
.header {
    background: rgba(255, 255, 255, 0.95); /* Semi-transparent */
    backdrop-filter: blur(10px); /* Blur effect */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.icon {
    font-size: 2rem;
    color: #3b82f6;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3b82f6;
}
/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Default Hidden */
.dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  background-color: #fff;
  min-width: 240px;
  box-shadow: 0 6px 16px rgba(2, 1, 1, 0.1);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  z-index: 1000;
}

/* Desktop Hover */
@media (min-width: 768px) {
  .dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

/* Mobile Active State (via JS) */
.dropdown-content.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  position: relative;
  box-shadow: none;
}

/* Links */
.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}
/* larger screens only*/
/* ==============================
   Desktop Navigation Dropdown
   ============================== */
@media (min-width: 768px) {

  /* Dropdown container */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  /* Services button */
  .dropbtn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .dropbtn:hover {
    background-color: #f7f7f7;
    color: #000;
  }

  /* Dropdown content */
  .dropdown-content {
    position: absolute;
    top: 100%; /* Appear just below the button */
    left: 50%; /* Start from center of parent */
    transform: translateX(-50%); /* Center align it perfectly */
    display: none;
    flex-direction: column;
    background-color: #fff;
    min-width: 280px;
    padding: 10px;
    margin-top: 6px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  /* Dropdown links */
  .dropdown-content a {
    text-decoration: none;
    color: #333;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
  }

  .dropdown-content a:hover {
    background-color: #f4c542; /* Matches your Get Started button */
    color: #111;
    font-weight: 600;
  }
}



.whatsapp-button {
    background: #10b981 !important;
    color: white !important;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background: #059669 !important;
}

/* Mobile Menu Button - Hidden on desktop */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1f2937;
    background: none;
    border: none;
    padding: 0.5rem;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #3b82f6;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.close-menu-btn {
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.close-menu-btn:hover {
    color: #1f2937;
}

/* Mobile Menu Links */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-menu-link {
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.2s, color 0.2s;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background-color: #f3f4f6;
    color: #3b82f6;
    border-left-color: #3b82f6;
}

.mobile-menu-link.whatsapp-mobile {
    margin: 1rem 1.5rem;
    padding: 0.875rem 1.25rem;
    background: #10b981;
    color: white;
    border-radius: 50px;
    text-align: center;
    border-left: none;
}

.mobile-menu-link.whatsapp-mobile:hover {
    background: #059669;
    color: white;
}
.scrollable{
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 100vh;
  background-color: white;
  overflow-y: auto; /* ✅ allows vertical scroll */
  -webkit-overflow-scrolling: touch; /* ✅ smooth scrolling on iOS */
  z-index: 9999;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: #10b981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #3b82f6, #1e40af);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
}
.hero-text{
    flex: 1;
    min-width: 50%;
}

.hero-text h1 {
    font-size: 2.7rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f3f3f3;
}

.highlight {
    color: #f4c542;
}

.subheadline {
    font-size: 1.25rem;
    color: #f3f3f3;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #f3f3f3;
}
.feature span {
    font-size: 1.5rem;
    color: #f3f3f3;
}

.check-icon {
    color: #10b981;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #f3f3f3;
}

.hero-image {
    flex: 1;
    position: relative;
    width: 450px;
    height: 370px;
    border-radius: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.carousel{
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}
.carousel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.star-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: #fbbf24;
    font-size: 2rem;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background: white;
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.profile-card {
    background: linear-gradient(to bottom right, #3b82f6, #1e40af);
    padding: 3rem 2rem;
    border-radius: 1rem;
    color: white;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.profile-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.profile-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.credentials {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.education {
    font-size: 0.875rem;
    color: #d1d5db;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
}

.qualifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom right, #f9fafb, #e5e7eb, #dbeafe);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom right, #3b82f6, #1e40af);
    padding: 5rem 0;
}

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

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #6b7280;
}

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

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info strong {
    display: block;
    color: #1f2937;
}

.author-info span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* FAQs Section */
.faqs {
    background: linear-gradient(to bottom right, #f9fafb, #e5e7eb, #dbeafe);
    padding: 5rem 0;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
   background: linear-gradient(to bottom right, #3b82f6, #1e40af);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background: white;
    color: #10b981;
}

.cta-section .btn-primary:hover {
    background: #f3f4f6;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #10b981;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info .brand {
    color: white;
}

.footer-info p {
    color: #9ca3af;
    max-width: 400px;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #6b7280;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 1% auto;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #6b7280;
}

.close:hover {
    color: #1f2937;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Forms */
.form-group {
    margin-bottom: 0.1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Request Page */
.page-content {
    padding: 2rem 0 5rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
}

.back-link:hover {
    color: #1e40af;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.page-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.request-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.request-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-card.urgent {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
}

.info-card.guarantee {
    background: linear-gradient(to right, #3b82f6, #1e40af);
    color: white;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.info-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.info-card.urgent li::before,
.info-card.guarantee li::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.request-section{
    background: linear-gradient(to bottom right, #3b82f6,#1e40af);
    padding: 4rem 1rem;
    color: #f3f3f3;
}

.request-container{
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.request-image{
    flex: 1;
    display: flex;
    justify-content: center;
}
.request-image img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.request-content {
  flex: 1.2;
}
.request-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.request-content h2 span {
  color: #facc15; /* Yellow highlight */
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

input, select, textarea {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1f2937;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #facc15;
  background-color: #fff;
}

textarea {
  resize: none;
}

.btn-primary {
  background-color: #ef4444;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 1px;
}

.btn-primary:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

.additional-content {
    margin-top: 1rem;
}
.additional-content p{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #f3f3f3;
    line-height: 1.6;
}

.services-grid {
  display: flex;
  justify-content: center; /* Centers all cards in the middle */
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.services-grid .service-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.service-card:hover {
  background: #f5faff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  motion: smooth;
  cursor: pointer;
}

.service-card a {
    text-decoration: none;
    color: inherit;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e3a8a;
}

.service-card p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
}
.divider {
  width: 2px;
  background: rgba(255, 255, 255, 0.5);
  align-self: stretch;
  position: relative;
}

.divider::before {
  content: "★";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #facc15;
}

.push-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem; /* nice spacing between button and text */
  text-align: center;
}

.push-center button, .push-center a {
  display: inline-block; /* resets the unwanted flex */
  margin: 0 auto;
}

.btn btn-primary{
    background-color: #ef4444;
   margin-top: 10px;
}



/* Responsive layout */
@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .divider {
    display: none;
  }

  .services-grid .service-card {
    max-width: 90%;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content,
    .about-content,
    .footer-content,
    .request-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
    .form-group{
        margin-bottom: 0.3rem;
        font-size: 10px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        margin: 3px 0;
    }

    .modal-content {
        width: 95%;
        margin: 0.5% auto;
        padding: 0.55rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services,
    .testimonials,
    .faqs,
    .cta-section {
        padding: 3rem 0;
    }

    .modal-content {
        margin: 5% auto;
    }

    .mobile-menu {
        width: 85%;
        right: -85%;
    }
    
    .brand {
        font-size: 1.2rem;
    }
    
    .icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-content{
        flex-direction: column;
        padding: 10px;
        font-size: 1.4rem;
    }

    .hero-text{
        min-width: 100%;
        flex: 1 1 100%;
    }
    .hero-text h1{
        font-size: 1.9rem;
    }
    .features span{
        font-size: 1.2rem;
    }
    .hero-image{
        display: none;
    }
    
}

/* ✅ Mobile Responsive */
@media (max-width: 900px) {
  .request-container {
    flex-direction: column;
  }

   .request-image img {
    width: 100%;
    height: 280px;
    border-radius: 7px; /* slight round for mobile */
  }

  .request-content {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .btn-primary {
    align-self: center;
  }
}



/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}


/* Left “Inquire” Bubble
.inquire-bubble {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 2s infinite;
}
.inquire-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.inquire-bubble img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.inquire-text {
  font-size: 0.95rem;
  font-weight: 900;
  color: #1e3a8a;
} */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  font-size: 28px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* Needed for badge positioning */
  overflow: visible; /* allow glow to extend outside */
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Live indicator pulse */
.live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGlow 1.8s infinite;
}

/* Animations */
@keyframes pulseGlow {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8),
                0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0),
                0 0 0 20px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0),
                0 0 0 0 rgba(34, 197, 94, 0);
  }
}

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

/* Responsive tweak: smaller on phones */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .inquire-bubble {
    padding: 6px 10px;
  }

  .inquire-text {
    font-size: 0.85rem;
  }
}


  .message.success {
    color: #0f9d58;
    font-weight: 500;
  }
  .message.error {
    color: #d93025;
    font-weight: 500;
  }


