@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: "Poppins", sans-serif;
    font-size: 62.5%;
    scroll-padding-top: 80px; 
    scroll-behavior: smooth; /* Optional: adds a nice sliding effect */
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 6%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
}
.logo img{
    /* width: 140px; */
    height: 70px;
    width: auto;
}
.navbar{
    display: flex;
    gap: 4rem;
}
.navbar a{
    text-decoration: none;
    font-size: 1.6rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}
/* Hover underline effect */
.navbar a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #f06529;
    transition: 0.3s;
}

.navbar a:hover{
    color: #f06529;
}

.navbar a:hover::after{
    width: 100%;
}

/* Ensure the active link stands out */
.navbar a.navLinks.active {
    color: #f06529 !important; /* Your brand orange */
    font-weight: 700;
}

/* Optional: Add a small underline to the active link */
.navbar a.navLinks.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #f06529;
    margin-top: 5px;
}
/* CTA BUTTON */
.cta-btn a{
    background: linear-gradient(135deg, #f06529, #c85030);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block; /* Essential for padding/transform to work correctly */
    white-space: nowrap;
}

.cta-btn a:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 101, 41, 0.3);
}

/* HAMBURGER */
.menu-toggle{
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
}

section{
    padding: 2rem 8%;
}

/* === Hero Section === */
.hero {
    min-height: 100vh; /* changed from height to min-height for content flexibility */
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background-img.jpg') no-repeat center center/cover;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px; /* Space between text and form */
}
.hero-text h1 {
    color: #fff;
    font-size: 3rem; /* Make it bold and clear */
    line-height: 1.4;
    margin-bottom: 1rem;
}
.hero-text h1 span{
    color: #f06529;
}

.hero-text p {
    color: #fff;
    font-size: 1.6rem;
    margin: 2rem 0;
}
.hero-text ul {
    list-style: none;
}
.hero-text ul li {
    color: #fff;
    font-size: 1.6rem;
    margin: 1rem 0;
}

.cta-button{
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.cta-demo{
    text-decoration: none;
    background: linear-gradient(135deg, #f06529, #c85030);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.2rem 2rem;
    color: #fff;
    border-radius: 15px;
    white-space: nowrap;
    transition: 0.3s;
}
.cta-demo:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 101, 41, 0.3);
}
.cta-whats-app{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    background: #008000;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.2rem 2rem;
    color: #fff;
    border-radius: 15px;
    white-space: nowrap;
    transition: 0.3s;
}
.cta-whats-app i{
    font-size: 2rem;
}
.cta-whats-app:hover{
    background: #006400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 0, 0.3);
}
/* Form Styling */
.hero-form {
    flex: 0 0 500px; /* Fixed width for the form */
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-form input {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.4rem;
}

.hero-form .submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0073c6, #005fa3);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.hero-form .submit-btn:hover {
    background: linear-gradient(135deg, #005fa3, #003f6b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 95, 163, 0.3);
}

/*=== Lead Magnet Section ===*/
.leadSection{
    background: #FFF2EB;
    padding: 4rem 8%;
    text-align: center;
}
.lead-container{
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center; /* Center everything */
}
h2{
    font-size: 3.4rem; /* Slightly larger */
    font-weight: 900;  /* Extra bold */
    line-height: 1.4;
    margin-bottom: 3rem;
    color: #222;
    text-align: center;
    letter-spacing: -0.5px
}
h2 span {
    color: #f06529;
    position: relative;
    display: inline-block;
}
.lead-container p{
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #555;
    font-weight: 500;
}
.lead-container ul{
    list-style: none; /* Removes the dots */
    padding: 0;
    margin: 2rem auto;
    max-width: fit-content; /* Centers the list block */
    text-align: left;
}
.lead-container ul li{
    font-size: 1.8rem;
    margin: 1.2rem 0;
    color: #444;
    display: flex;
    align-items: center;
}
.lead-container .cta-demo{ 
    display: block;
    width: fit-content;
    margin: 3rem auto 0; /* Centers it and adds space above */
    padding: 1.4rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f06529, #c85030);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
}

.lead-container .cta-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 101, 41, 0.3);
}

/* === what you will get ==== */
.whatWillYouDo{
    padding: 4rem 8%;
    background-color: #fff;
}
.what-container{
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.what-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}
.what-card{
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    min-height: 200px; /* Keeps all cards uniform */
    border: 1px solid transparent;
}
.what-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 115, 198, 0.15);
}
.what-card i{
    font-size: 4.2rem;
    color: #0073c6;
}
.what-card h3{
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
}

/* === pricing section === */
.pricing {
    padding: 8rem 8%;
    background: #f4f8fb;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-header p {
    font-size: 1.8rem;
    color: #555;
}

/* Layout */
.pricing-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Card */
.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 115, 198, 0.2);
}

/* Featured */
.pricing-card.featured {
    border: 2px solid #f06529;
    box-shadow: 0 20px 40px rgba(240, 101, 41, 0.2);
}

/* Tag */
.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f06529;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Price */
.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 15px 0;
}

/* Description */
.desc {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 10px;
}

.trust {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 15px;
}

/* Lists */
.pricing-card h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    max-width: 250px;
    margin: 0 auto 2rem; /* Centers the list and adds space below */
}

/* .pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    width: 100%; 
} */

.pricing-card ul li {
    display: flex;
    align-items: center; 
    gap: 12px;
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 12px;
    text-align: left;
}
.pricing-card ul li i {
    width: 20px;       /* fixed width */
    min-width: 20px;   /* prevents shrinking */
    text-align: center;
    color: #f06529;
}
/* Button */
.price-btn {
    margin-top: auto;
    padding: 12px;
    background: linear-gradient(135deg, #0073c6, #005fa3);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    transition: 0.3s;
}

.featured .price-btn {
    background: linear-gradient(135deg, #f06529, #c85030);
}

.price-btn:hover {
    opacity: 0.9;
}

/* Urgency */
.urgency {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f06529;
}


/* === Benefits Section === */
.benefits-section {
    background-color: #faf3ed;
    padding: 4rem 8%;
}
.benefit-container{
    max-width: 1500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 4rem 3rem;
}
.benefits-content {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.benefits-left, .benefits-right {
    flex: 1;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.benefits-left h3, .benefits-right h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.benefits-left ul, .benefits-right ul {
    list-style: none;
}

.benefits-left ul li, .benefits-right ul li {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #555;
}
.benefits-left:hover, .benefits-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 115, 198, 0.15);
}
.highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #0073c6;
}

/* testimonial section */
.testimonials {
    padding: 8rem 5%;
    background-color: #fdfdfd; /* Off-white for better card contrast */
    text-align: center;
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.testimonial-grid {
    display: grid;
    /* responsive grid that handles 1, 2, or 3 columns automatically */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 4rem auto;
    align-items: stretch; /* Forces equal height for all cards in a row */
}

.test-card {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 20px;
    border-left: 6px solid #0073c6;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.031);/* Softer, more modern shadow */
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s ease;
}

.test-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 115, 198, 0.08);
}

.test-card h4 {
    font-size: 1.6rem;
    color: #212121;
    margin-bottom: 8px;
    text-transform: capitalize; /* Fixes "pooja mangale" casing */
}

/* Quote Icon & Styling */
.review-text {
    font-size: 1.2rem;
    line-height: 1.7; /* Increased spacing for easier reading */
    color: #555;
    font-style: italic;
    position: relative;
    margin-top: 1rem;
    flex-grow: 1; /* Pushes the card height if content is long */
}

/* View All Reviews Link
.load-more {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #f06529;
    color: #fff;
    text-decoration: none;
    border-radius: 50px; 
    font-weight: 700;
    transition: 0.3s;
    font-size: 1.5rem;
}

.load-more:hover {
    background: #d45622;
    transform: scale(1.05);
} */

/* Stars Styling */
.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #f06529;
    font-size: 1.2rem;
    margin-right: 2px;
}
/* === why Choose Us === */
.why-choose-us{
    background-color: #eef8ff;
    padding: 4rem 8%;
}
.choose-container{
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.choose-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.choose-container ul {
    flex: 1;
}

.choose-container ul li {
    font-size: 1.6rem;
    /* background: #f8fbff; */
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.choose-container ul li:hover {
    transform: translateX(8px);
}
.choose-container ul li::before {
    content: "✔";
    min-width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0073c6, #299ff3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.choose-image {
    flex: 1;
    text-align: center;
}

.choose-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}
.limited-seats{
    text-align: center;
    margin-top: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #f06529;

}

/* === Urgency Section === */
.urgency-section{
    background: #212121;
}
.urgency-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}
.urgency-container h2{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.urgency-container p{
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #ddd;
}
.btn-urgent{
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #f06529, #c85030);
    color: #fff;
    text-decoration: none;
    border-radius: 50px; /* Pill shape is trending for buttons */
    font-weight: 700;
    transition: 0.3s;
    font-size: 1.4rem;
}
.btn-urgent:hover {
    background: linear-gradient(135deg, #c85030, #f06529);
    transform: scale(1.05);
}
/* === Location Section === */
.location-section {
    padding: 5rem 5%;
    background: #fdfdfd;
    text-align: center;
}
.location-grid {
    font-size: 1.6rem;
    color: #555;
    margin-top: 2rem;
    font-weight: 600;
}
.divider {
    color: #f06529; 
    margin: 0 10px;
}

/* === Final CTA ===*/
.final-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/working.jpeg) no-repeat center center/cover;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
}
.final-cta h2{
    font-size: 4rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4rem;
}
.final-cta span {
    color: #f06529;
    position: relative;
    display: inline-block;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-demo {
    background: linear-gradient(135deg, #0073c6, #005fa3);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: .3s ease;
}
.btn-demo:hover {
    background: linear-gradient(135deg, #299ff3, #0073c6);
    transform: scale(1.05);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: .3s ease;
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1DA851, #25D366);
    transform: scale(1.05);
}
.btn-whatsapp i {
    font-size: 3rem;
}
/* === Final Form === */
/*
.final-form-section {
    padding: 8rem 5%;
    background: #FFF2EB; 
.form-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
}
.form-card h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
}
.form-card p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #555;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}
.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    font-size: 1.2rem;
    transform: translateY(-50%);
    color: #005fa3;
}
.lead-form input {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.4rem;
}
.submit-btn {
    width: 100%;
    padding: 1.8rem;
    background: linear-gradient(135deg, #f06529, #c85030);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    background: linear-gradient(135deg, #c85030, #f06529);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 101, 41, 0.3);
}


/* ==== Contact Section Styling ==== */
.contact-section {
    background-color: #1a1a1a; /* Dark charcoal background */
    padding: 80px 10%;
    color: #ffffff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Panel Styling */
.contact-info-panel {
    flex: 1;
}

.contact-info-panel h2 {
    font-size: 3rem;
    color: #f06529; /* Techkraftiers Orange */
    margin-bottom: 20px;
}

.contact-info-panel p {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1.4rem;
}

.info-item {
    display: flex;
    align-items: flex-start; /* 🔥 change from center to flex-start */
    gap: 15px;
    margin-bottom: 20px;
}
.icon-box {
    /* width: 55px;
    height: 55px; */
    min-width: 55px;   /* prevents shrinking */
    height: 55px;
    flex-shrink: 0;    /* 🔥 important for mobile */
    background-color: rgba(240, 101, 41, 0.1); /* Subtle orange glow */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box i {
    color: #f06529;
    font-size: 2rem;
}
.text-box{
    max-width: 300px;
}
.text-box h4 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.text-box span {
    color: #ccc;
    font-size: 1.4rem;
}

/* Right Panel Form Styling */
.contact-form-panel {
    flex: 1;
    background-color: #242424; /* Slightly lighter dark for the card */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-top: 2rem;
}

.contact-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form-panel h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}
.contact-form-panel h3 span {
    color: #f06529;
}
.contact-form-panel input, 
.contact-form-panel textarea {
    background-color: #333;
    border: 1px solid #444;
    padding: 1.2rem;
    font-size: 1.4rem;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}
.input-group {
    position: relative;
    margin-bottom: 2rem;
}
.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    font-size: 1.2rem;
    transform: translateY(-50%);
    color: #fff;
}
.lead-form input {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.4rem;
}
.contact-form-panel input:focus, 
.contact-form-panel textarea:focus,
.contact-form-panel select:focus {
    border-color: #f06529;
}
.contact-form-panel select{
    width: 100%;
    padding: 1.2rem; /* Adjust to match your input padding */
    background-color: #333; /* Matches your dark input background */
    color: #999; /* Matches the placeholder color in your inputs */
    border: 1px solid #444; /* Standardizes the border */
    border-radius: 8px; /* Matches your input corners */
    font-size: 1.4rem; /* Ensures consistent text size */
    font-family: inherit; /* Inherits the site's primary font */
    outline: none;
    /* Removes default browser styling (important for the arrow) */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-form-panel button {
    background-color: #f06529;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-panel button:hover {
    background-color: #d44b1d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 101, 41, 0.6);
}

/* === Footer ==== */
.footer-content{
    background-color: #212121;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 8%;
} 
.footer-content p{
    font-size: 1.2rem;
    max-width: 300px;
}
.social-links{
    display: flex;
    gap: 15px;
}
.social-links a {
    color: #fafafa;;
    font-size: 2rem;
    text-decoration: none;
    font-weight: 500;
}
.social-links a:hover {
    color: rgb(52, 95, 171);
}

.scroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #f06529; /* Matches your new earning section */
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background-color: #fae3d9; /* Matches your site header color */
    color: #333;
    transform: translateY(-5px);
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
}

/* === animation === */
/* 1. The starting state for all cards you want to animate */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* 2. The state when the card becomes visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger the "What You Will Do" grid cards */
.what-card:nth-child(2) { transition-delay: 0.1s; }
.what-card:nth-child(3) { transition-delay: 0.2s; }
.what-card:nth-child(4) { transition-delay: 0.3s; }
.what-card:nth-child(5) { transition-delay: 0.4s; }

/* Stagger the pricing cards */
.pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing-card:nth-child(2) { transition-delay: 0.3s; }
.pricing-card:nth-child(3) { transition-delay: 0.5s; }

/* === popup === */
/* Modal Background */
.custom-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    overflow-y: auto; /* Allows scrolling if image is tall */
}

/* Container for Image */
.modal-wrapper {
    position: relative;
    margin: 50px auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;   /* 🔥 reduce size */
    background: #fff;
    border-radius: 15px;
    text-align: center;
    animation: slideUp 0.4s ease;
}

/* The Flyer Image */
.modal-body img {
    max-width: 100%;
    max-height: 70vh;   /* 🔥 limits height */
    object-fit: cover;
    border-radius: 8px;
}

/* Close Button */
.close-trigger {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-trigger:hover {
    color: #f06529;
}

.modal-footer {
    padding: 20px 0;
}
.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #f06529, #c85030);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 101, 41, 0.3);
}
/* Animation */
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .modal-wrapper {
        width: 90%;
        margin: 30px auto;
        padding: 10px;
    }
}

/* === Media Queries === */
@media (max-width: 1090px){
    html{
        font-size: 62.5%; /* slightly smaller for tablets */
    }
    header {
        padding: 1.5rem 4%; /* Reduce side padding to give more room */
    }
    .navbar {
        gap: 2rem; /* Reduce gap between links earlier */
    }
    .navbar a {
        font-size: 1.7rem; /* Slightly smaller text */
    }
}

/* Change from 768px to 968px */
@media (max-width: 968px) {
    .hero {
        padding: 150px 0 40px; /* Adjust padding for smaller screens */
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .hero-text h1 {
        font-size: 3.2rem; /* Scale down the title slightly */
    }

    .hero-text ul {
        display: inline-block; /* Keeps checkmarks aligned while centered */
        text-align: left;
    }

    .cta-button {
        justify-content: center;
    }

    .hero-form {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px; /* Keeps form from getting too wide on tablets */
    }
    /* .pricing-card.featured {
        transform: scale(1); 
        margin: 2rem 0;
    } */
     .pricing {
        padding: 6rem 5%;
    }

    .pricing-header h2 {
        font-size: 2.4rem;
    }

    .pricing-box {
        gap: 20px;
    }

    .pricing-card {
        max-width: 100%;
        flex: 1 1 45%; /* 2 cards per row */
    }
    .benefits-content {
        flex-direction: column;
    }
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px){
    html{
        font-size: 55%; /* slightly smaller for mobile */
    }

    body{
        padding: 0;
    }
    .menu-toggle{
        display: block;
    }
    header{
        padding: 1.2rem 2rem;
    }

    .logo img{
        height: 70px;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2rem 0;
        transition: 0.3s;
    }

    .navbar.active{
        left: 0;
    }

    .navLinks{
        font-size: 2rem;
        padding: 1.4rem 1rem;
        width: 100%;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: 0.3s;
        border-radius: 8px;
    }

    .navLinks:hover{
        background: rgba(240, 101, 41, 0.08);
        color: #f06529;
        padding-left: 1.5rem;
    }
    .cta-btn{
        display: none; /* hide button in mobile (optional) */
    }
    .leadSection {
        padding: 4rem 2rem;
    }
    
    .lead-container {
        padding: 3rem 1.5rem; /* Less padding on small screens */
    }
    .lead-container p{
        font-size: 2rem;
    }

    .lead-container ul {
        display: block; /* Allows list to take full width */
        width: 100%;
    }

    .lead-container ul li {
        font-size: 1.6rem;
    }
    .choose-content {
        flex-direction: column;
        text-align: left;
    }

    .choose-container ul li {
        font-size: 1.6rem;
    }
    /* pricing */
    .pricing-box {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
        padding: 2.5rem 2rem;
    }

    .pricing-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .pricing-header p {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-card ul li {
        font-size: 1.4rem;
    }

    .price-btn {
        font-size: 1.4rem;
        padding: 10px;
    }
    .cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;    /* Center them */
        gap: 15px;              /* Space between buttons */
        padding: 0 20px;        /* Side padding for the container */
    }

    .btn-demo, 
    .btn-whatsapp {
        width: 100%;            /* Forces equal width */
        max-width: 300px;       /* Keeps them from getting too wide on large phones */
        height: 55px;           /* Standardizes height */
        padding: 0;             /* Reset padding since height/width are fixed */
        font-size: 1.6rem;      /* Slightly larger for readability */
    }

    .btn-whatsapp i {
        font-size: 2.2rem;      /* Adjust icon size to match text better */
        margin-right: 8px;      /* Space between icon and text */
    }
    /*Contact From*/
    .contact-container {
        display: flex; /* Flex is more reliable for simple vertical stacks */
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .contact-info-panel, .contact-form-panel {
        width: 100%;
        text-align: left; /* Ensures contact text stays left-aligned */
    }
    
    .info-item {
        align-items: flex-start;
    }

    .text-box {
        max-width: 100%;
    }
    /*Footer*/
    
    /* Footer section */
    .footer-content{
        flex-direction: column;
        align-items: center;
        gap: 1.4rem;
        padding: 2rem 10%;
        font-size: 1.2rem;
    } 

    .social-links{
        display: flex;
        gap: 15px;
    }
    .social-links a {
        color: #fafafa;;
        font-size: 2rem;
        text-decoration: none;
        font-weight: 500;
    }
}
@media (max-width: 480px) {
    html {
        font-size: 50%; /* Further reduce font size for very small phones */
    }
    .lead-container h2 {
        font-size: 2.2rem;
    }
    
    .lead-container .cta-btn-link {
        width: 100%; /* Full width button on very small phones */
        text-align: center;
    }
    /* pricing */
    .pricing {
        padding: 5rem 4%;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-header h2 {
        font-size: 1.8rem;
    }

    .pricing-header p {
        font-size: 1.3rem;
    }

    .price {
        font-size: 2.2rem;
    }

    .pricing-card h3 {
        font-size: 1.6rem;
    }
}
