/* GLOBAL */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

span {
    color: #f97316;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #f97316;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ea580c;
}

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


.hero-section {
    padding: 120px 20px 60px; /* top spacing navbar sathi */
    background: linear-gradient(to right, #f5f2ee, #efd8c3);
    text-align: center;
}



.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 25px;
}

.hero-title span {
    color: #f97316;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: #f97316;
    color: #fff;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.25);
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #ea580c;
}


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

.impact-section {
    padding: 40px 20px;
    background: #f3f4f6;
    text-align: center;
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.impact-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 70px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.impact-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.impact-card h3 {
    font-size: 42px;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 12px;
}

.impact-card p {
    font-size: 18px;
    color: #6b7280;
}

/* Responsive */

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= PREMIUM SERVICES SECTION ================= */

.services-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #ffffff, #fff4e8);
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
}

.services-header h2 span {
    color: #f97316;
}

.services-header p {
    font-size: 18px;
    color: #6b7280;
    margin-top: 15px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* CARD */
.service-card {
    position: relative;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 360px;
}

/* ICON */
.service-icon {
    width: 90px;
    height: 90px;
    background: #f97316;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(249,115,22,0.3);
}

/* TITLE */
.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

/* SHORT TEXT */
.short-desc {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
}

/* ================= HOVER OVERLAY ================= */

.service-hover-content {
    position: absolute;
    inset: 0;
    background: #f97316;
    color: #ffffff;
    padding: 60px 45px;
    border-radius: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.service-hover-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-hover-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #ffffff;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 45px 100px rgba(0,0,0,0.15);
    z-index: 10;
}

.service-card:hover .service-hover-content {
    opacity: 1;
    transform: scale(1);
}

/* Hide default content on hover */
.service-card:hover .service-icon,
.service-card:hover .short-desc,
.service-card:hover > h3 {
    opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

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

.why-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #fff7ed, #ffffff);
}

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

.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
}

.section-heading h2 span {
    color: #f97316;
}

.section-heading p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
}

/* Grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Card */

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

/* Icon */

.why-card .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #f97316;
    color: #ffffff;
    font-size: 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Text */

.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111827;
}

.why-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

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

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 28px;
    }
}
/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 40px 20px;
    background: #ffffff;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */

.about-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111827;
}

.about-content h2 span {
    color: #f97316;
}

.about-content p {
    text-align: justify !important;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    
}

/* Highlights */

.about-highlights {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-highlights li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.about-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: #f97316;
    border-radius: 50%;
}

/* Vision Card */

.vision-card {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    padding: 50px;
    border-radius: 30px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.vision-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.vision-card p {
    text-align: justify !important;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 5px;
}

/* Responsive */

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 28px;
    }

    .vision-card {
        padding: 30px;
    }
}
/* ================= EXACT SCREENSHOT 2 FOUNDER ================= */
.founder-section {
    padding: 40px 20px;
    background: #ffffff;
}
.founder-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 100px; /* More breathing space */
}

/* LEFT SIDE BIGGER */
.founder-left {
    width: 480px;
    flex-shrink: 0;
}

/* IMAGE CARD */
.profile-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 35px 70px rgba(0,0,0,0.08);
    text-align: center;
}

.profile-card img {
    width: 100%;
    height: 420px;        /* 🔥 Fixed height for perfect ratio */
    object-fit: cover;    /* Maintain proper crop */
    border-radius: 22px;
    margin-bottom: 25px;
}

/* RIGHT SIDE SLIGHTLY COMPACT */
.founder-right {
    width: 620px;
}

.founder-right h2 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 35px;
}

.founder-right p {
    text-align: justify !important;
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 28px;
}


/* LEFT SIDE */
.founder-left {
    width: 420px;
    flex-shrink: 0;
}

.profile-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 30px;

    /* 🔥 Premium Soft Shadow */
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.08),
        0 15px 30px rgba(0, 0, 0, 0.05);

    text-align: center;
    transition: 0.4s ease;
}



.profile-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 25px;
}

.profile-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.profile-card .designation {
    color: #f97316;
    font-size: 16px;
    font-weight: 500;
}

/* RIGHT SIDE */
.founder-right {
    width: 650px;
}

.founder-right h2 {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.founder-right h2 span {
    color: #f97316;
}

.founder-right p {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 24px;
}

/* QUOTE */
.founder-quote {
    margin: 40px 0;
    padding-left: 25px;
    border-left: 5px solid #f97316;
    font-style: italic;
    font-size: 20px;
    color: #334155;
}

/* BUTTON */
.linkedin-btn {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(249,115,22,0.3);
    transition: 0.3s ease;
}

.linkedin-btn:hover {
    background: #ea580c;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .founder-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: justify;
        text-justify: inter-word;
    }
}



/* ================= PREMIUM TESTIMONIALS SECTION ================= */

.testimonials-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

/* Section Heading */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: #f97316;
}

/* Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Premium Card */
.testimonial-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    padding: 50px 45px;
    border-radius: 30px;

    /* Premium layered shadow */
    box-shadow:
        0 20px 40px rgba(0,0,0,0.06),
        0 10px 20px rgba(0,0,0,0.04);

    transition: all 0.4s ease;
    overflow: hidden;
}

/* Subtle glass border */
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(249,115,22,0.4), transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.08),
        0 20px 40px rgba(249,115,22,0.15);
}

/* Quote Text */
.testimonial-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

/* Decorative Quote Mark */
.testimonial-card p::before {
    content: "“";
    position: absolute;
    top: -25px;
    left: -10px;
    font-size: 60px;
    color: rgba(249,115,22,0.15);
    font-weight: 800;
}

/* Author Name */
.testimonial-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #111827;
}

/* Author Role */
.testimonial-card span {
    font-size: 15px;
    color: #f97316;
    font-weight: 500;
}

/* Responsive */

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }
}
/* ================= PREMIUM BLOG SECTION ================= */

.blog-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* Section Heading */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: #f97316;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* Card */
.blog-card {
    background: #ffffff;
    border-radius: 32px;
    min-height: 600px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.06),
        0 10px 20px rgba(0,0,0,0.04);

    transition: all 0.4s ease;
}

/* Hover Lift */
.blog-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.08),
        0 20px 40px rgba(249,115,22,0.15);
}

/* Image Wrapper */
.blog-card img {
    width: 100%;
    height: 280px;            /* Bigger visible image */
    object-fit: cover;        /* Proper cropping */
    display: block;
    transition: transform 0.5s ease;
}

/* Smooth Zoom */
.blog-card:hover img {
    transform: scale(1.06);
}

/* Content */
.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 25px 15px;
    color: #111827;
    line-height: 1.4;
}

.blog-card p {
    margin: 0 25px 20px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

/* Read More */
.read-more {
    display: inline-block;
    margin: 0 25px 30px;
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    letter-spacing: 1px;
}

/* View All Button */
.view-all {
    text-align: center;
    margin-top: 90px;
}

.btn-primary {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(249,115,22,0.25);
    transition: 0.3s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }
}

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

.contact-section {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #fff7ed, #ffffff);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Success Message */
.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

/* Contact Form Card */
.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Row */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

/* Textarea */
.contact-form textarea {
    resize: none;
}

/* Button */
.form-center {
    text-align: center;
    margin-top: 10px;
}

/* Reuse btn-primary if already added */
/* If not, use this: */

.btn-primary {
    background: #f97316;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249,115,22,0.3);
    transition: 0.3s ease;
}

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

/* Responsive */

@media (max-width: 768px) {

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

    .contact-form {
        padding: 35px;
    }
}
/* ================= PREMIUM FOOTER ================= */

.footer {
    background: #0f172a;
    color: #9ca3af;
    padding: 60px 0 0;   /* 🔥 Reduced top spacing */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;   /* 🔥 Reduced bottom spacing */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;   /* 🔥 Reduced gap for compact premium look */
}

/* Column Titles */
.footer-col h3 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 600;
}

/* About Text */
.footer-about {
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 260px;
}

/* CIN */
.footer-cin {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 10px;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 14px;
}

/* Links */
.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* Contact Info */
.contact-info li {
    margin-bottom: 12px;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    font-size: 16px;
    margin-right: 12px;
    color: #9ca3af;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 18px 0;   /* 🔥 Compact */
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ================= ASSOCIATED COMPANIES ================= */

.associated-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.associated-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.associated-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(229,231,235,.7);
    box-shadow: var(--shadow-sm);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.associated-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Logo wrapper */
.associated-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.associated-logo img {
    max-height: 100px;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

/* Zoom on hover */
.associated-card:hover .associated-logo img {
    transform: scale(1.08);
}

/* Company Name */
.associated-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 5px;
}

.associated-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    margin: 0;
}

/* Smooth orange glow line on hover */
.associated-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--brand-primary);
    transition: width 0.4s ease;
}

.associated-card:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .associated-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .associated-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   RESPONSIVE FIXES (NON-DESTRUCTIVE)
   Add this at bottom only
===================================================== */


/* ================== LARGE TABLET ================== */
@media (max-width: 1200px) {

    .founder-container {
        gap: 60px;
        padding: 0 20px;
    }

    .founder-left {
        width: 380px;
    }

    .founder-right {
        width: 100%;
    }

}


/* ================== TABLET ================== */
@media (max-width: 992px) {

    /* HERO */
    .hero-title {
        font-size: 48px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* WHY */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* TESTIMONIALS */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* BLOG */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FOUNDER STACK */
    .founder-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-left,
    .founder-right {
        width: 100%;
    }

}


/* ================== MOBILE ================== */
@media (max-width: 768px) {

    /* HERO */
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* IMPACT */
    .impact-grid {
        grid-template-columns: 1fr;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* WHY */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* TESTIMONIALS */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* BLOG */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* CONTACT */
    .form-row {
        flex-direction: column;
    }

}


/* ================== SMALL MOBILE ================== */
@media (max-width: 480px) {

    .hero-section {
        padding: 80px 20px;
    }

    .services-section,
    .why-section,
    .about-section,
    .testimonials-section,
    .blog-section,
    .contact-section {
        padding: 70px 20px;
    }

}



