/* Modern Color Scheme */
:root {
    --primary: #0066ff;
    --secondary: #ff7900;
    --dark: #002366;
    --light: #f8f9fa;
    --accent: #00c853;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: #333;
    padding-top: 80px;
}

/* 1. Reset default spacing */
body {
  margin: 0;
  padding: 0;
}

/* 2. Header styling (adjust values to match yours) */
header {
  height: 80px; /* Example height - change to your actual */
  position: relative; /* or fixed/sticky if you're using that */
  z-index: 100;
}

/* 3. Hero slider adjustments */
.hero-slider {
  height: calc(100vh - 80px); /* Must match header height */
  margin-top: 0;
  position: relative;
}

/* 4. If using fixed header */
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

body.with-fixed-header {
  padding-top: 80px; /* Same as header height */
}
/* Header */
header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.cta-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    margin-left: 1rem;
    transition: all 0.3s;
    display: inline-block;
    font-weight: 600;
}

.cta-nav:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
}

/* Improved select dropdown styling */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2337517e'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 40px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .form-group select {
        font-size: 16px; /* Larger font for mobile */
        padding: 15px; /* More padding for touch targets */
    }
    
    /* Make sure the placeholder is visible */
    select:required:invalid {
        color: #6c757d;
    }
    
    option[value=""][disabled] {
        display: none;
    }
    
    option {
        color: #000;
    }
}
/* Hero Slider - Refined */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px); /* Increased top gap */
    overflow: hidden;
    margin-top: 20px; /* Added space between header and hero */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 102, 0.5); /* Darker overlay for better text contrast */
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px; /* Reduced max-width for better text flow */
    margin: 0 auto;
}

.slide h1 {
    font-size: 2.5rem; /* Reduced from 3rem */
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    font-weight: 700;
}

.slide p {
    font-size: 1.1rem; /* Reduced from 1.2rem */
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-controls {
    position: absolute;
    bottom: 50px; /* Moved dots higher */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px; /* Added gap between dots */
}

.slider-dot {
    width: 10px; /* Smaller dots */
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2); /* Slight scale effect for active dot */
}

/* CTA Button - Added styling */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #ff8500;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: calc(100vh - 100px);
    }
    
    .slide h1 {
        font-size: 2rem;
    }
    
    .slide p {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .slider-controls {
        bottom: 30px;
    }
}

/* Call Now Button Styling */
.cta-button.call-now {
  background: #28a745; /* Green color for high visibility */
  animation: pulse 2s infinite; /* Attention-grabbing effect */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cta-button.call-now:hover {
  background: #218838;
  transform: translateY(-2px);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Phone icon styling */
.fa-phone-alt {
  font-size: 1.1em;
}
/* Franchise Plans */
.franchise-plans {
    background: var(--light);
}

.plan-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    border-top: 5px solid var(--secondary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 20px 0;
}

.plan-card ul {
    list-style: none;
    margin: 25px 0;
}

.plan-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.plan-card ul li i {
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* Buttons */
.cta-button {
    background: var(--secondary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e56a00;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Section Styling */
.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
    font-size: 1.1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #4CAF50;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #0066ff;
    margin-bottom: 15px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-card ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0066ff;
    position: absolute;
    left: 0;
}

.service-cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-cta p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.btn-primary {
    background: #0066ff;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0052cc; /* Slightly darker blue for hover */
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.2); /* Subtle glow effect */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Franchise Section */
.franchise {
    background: var(--light);
}

.franchise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.franchise-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.franchise-text ul {
    list-style: none;
    margin: 20px 0;
}

.franchise-text ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.franchise-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
}

.franchise-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* How We Work Section */
.how-we-work {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Why Choose Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* FAQ Section */
.faq {
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: white;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    background: white;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    padding: 30px;
    background: var(--light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 20px;
    color: var(--primary);
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: #fff;
}

.contact-details h4 {
    padding: 0 0 0 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details p {
    padding: 0 0 10px 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--gray);
}

.contact-social {
    margin-top: 30px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.contact-form {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.loading, 
.error-message, 
.sent-message {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 600;
}

.loading {
    background: #fff;
    text-align: center;
}

.loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--success);
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.error-message {
    color: #fff;
    background: var(--danger);
    text-align: left;
}

.sent-message {
    color: #fff;
    background: var(--success);
    text-align: center;
}

.cta-button {
    background: var(--primary);
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.cta-button:hover {
    background: var(--primary-dark);
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #6c757d;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.3rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: white;
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .franchise-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .franchise-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .cta-nav {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    
    .close-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.secondary {
        margin-left: 0;
    }
}


/* Unified CTA Button Styles */
.cta-button {
    background: var(--primary);
    color: white !important; /* Force white text */
    padding: 12px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.2);
}

.cta-button:hover {
    background: #0052cc; /* Darker blue */
    color: white !important; /* Maintain white text */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 102, 255, 0.3);
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
}

.content {
  height: 2000px;
  background: linear-gradient(to bottom, #f5f5f5, #ccc);
  padding: 20px;
}

/* Back to Top Button Styles */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #270949;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
}

.back-to-top:hover {
  animation: bounce 0.6s;
  background: #3b0f63;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  60%  { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/* Remove any conflicting hover styles */
.cta-button:hover, 
.cta-nav:hover, 
.btn-primary:hover {
    color: white !important;
}
@media (max-width: 576px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hero {
        height: auto;
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.quarterly-price {
    color: #666;
    font-size: 16px;
    margin: 5px 0 15px;
    font-weight: 500;
}
/* WhatsApp Button Styles */
.whatsapp-icon {
  font-family: 'Font Awesome 5 Brands';
  font-size: 40px;
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  left: 20px;
  z-index: 9999;
}

.whatsapp-float a {
  display: block;
  background-color: green;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float a:hover {
  background-color: #25d366;
  animation: none; /* Stops animation on hover */
}
