:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --primary-gradient: linear-gradient(90deg, #d53af0 0%, #e64dff 100%);
    --secondary-gradient: linear-gradient(135deg, #FF5ACD 0%, #3DA9F5 100%);
    /* Approximation of the logo/text gradient */
    --text-gradient: linear-gradient(90deg, #d345f8, #ff6699);
    --surface-color: #111111;
    --border-color: #333;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Navbar - Floating Pill Style */
.navbar {
    position: fixed;
    top: 20px;
    /* Space from top */
    left: 50%;
    transform: translateX(-50%);
    /* Start centered */
    width: 95%;
    /* Responsive width */
    max-width: 1200px;
    /* Max width for large screens */
    z-index: 1000;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.nav-container {
    background: rgba(30, 30, 30, 0.95);
    /* Dark grey background */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    /* Pill shape */
    padding: 10px 30px;
    /* Padding inside the pill */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0 auto;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #d53af0;
    text-shadow: 0 0 10px rgba(213, 58, 240, 0.5);
}

.nav-links li a i {
    font-size: 11px;
    opacity: 0.7;
    transition: transform 0.3s;
}

/* Dropdown Styling */
.dropdown-parent {
    position: relative;
    padding-bottom: 5px;
    /* Increase hover area */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 180px;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 10px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    display: block;
}

.dropdown-parent:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #aeaeae;
    font-size: 14px;
    border-radius: 8px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #111;
    color: #fff;
    text-shadow: none;
}

.btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 0;
    /* reset margin */
    white-space: nowrap;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main {
    background: linear-gradient(90deg, #d946ef 0%, #a855f7 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

.btn-muted {
    background: #f1f5f9;
    color: #0f172a;
    border: none;
    font-weight: 600;
}

.btn-muted:hover {
    background: #e2e8f0;
}

.mobile-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}


.backed-by {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid #222;
    font-size: 12px;
    color: #888;
    z-index: 5;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: #333;
    background: #161616;
}

.feature-icon {
    font-size: 30px;
    color: #d53af0;
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.why-center {
    max-width: 400px;
    margin: 0 auto;
    display: none;
    /* Hiding image for now as grid is cleaner */
}

/* Process Section */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.flow-step {
    text-align: center;
    max-width: 200px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.flow-step:hover .step-icon {
    border-color: #d53af0;
    background: #d53af0;
}

.flow-line {
    flex: 1;
    height: 2px;
    background: #333;
    min-width: 50px;
    max-width: 100px;
    margin-top: -50px;
    /* Adjust based on alignment */
}

/* Request Form */
.request-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: #050505;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #d53af0;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.form-actions .btn {
    flex: 1;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.3s;
}

.tech-item i {
    font-size: 24px;
}

.tech-item:hover {
    border-color: #d53af0;
    color: #fff;
    transform: translateY(-5px);
}

.tech-item:hover i {
    color: #d53af0;
}

/* Sections General */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    /* Content above background */
}

.section-label {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.section-title .gradient-text {
    background: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Partners Real */
.partners-section {
    text-align: center;
    padding-top: 40px;
}

.sub-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 10px;
}

.sub-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
}

.partners-grid-real {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.partner-badge {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    /* Reduced specific width for responsiveness or keep flexible */
    height: 80px;
}

.partner-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Learn Section (MERN Redesign) */
.learn-section {
    background: #000;
}

.mern-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 0;
    /* Reset padding for full flex layout */
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.course-content {
    flex: 1;
    padding: 50px;
    z-index: 2;
    min-width: 300px;
}

.badge-pill {
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px;
    margin-bottom: 20px;
    display: inline-block;
}

.course-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}

.course-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.course-features {
    margin-bottom: 30px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #dedede;
}

.course-features li i {
    color: #fff;
    /* White check icon */
    font-size: 12px;
}

.mern-image {
    flex: 1;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 1) 0%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    overflow: hidden;
}

.mern-image img {
    max-width: 80%;
    position: relative;
    z-index: 1;
    transform: translateY(20px);
}

/* Overlay Text on Image Side */
.mern-overlay-text {
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.logo-text-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffd700;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.small-badges {
    position: absolute;
    width: 100%;
    height: 300px;
    /* Rough area for flying badges */
    top: 50px;
    left: 0;
    pointer-events: none;
}

.badg-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    color: #ccc;
    font-size: 10px;
}

.b1 {
    top: 20%;
    left: 10%;
}

.b2 {
    top: 50%;
    right: 10%;
}

.b3 {
    bottom: 20%;
    left: 20%;
}

/* Services Grid New */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-dark {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-dark:hover {
    border-color: #333;
    transform: translateY(-5px);
    background: #111;
}

.service-card-dark h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card-dark p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.check-now-btn {
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    width: fit-content;
    transition: 0.3s;
}

.check-now-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.check-now-btn:hover {
    color: #d53af0;
    border-bottom-color: #d53af0;
}

.check-now-btn:hover i {
    transform: translate(2px, -2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .mern-card {
        flex-direction: column-reverse;
    }

    .mern-overlay-text {
        position: relative;
        top: 0;
        padding-top: 20px;
    }

    .small-badges {
        display: none;
    }
}

/* Stats Section */
.stats-section {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.stats-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #eee;
}

.stats-counter {
    display: inline-flex;
    align-items: center;
    background: #111;
    border: 1px solid #222;
    padding: 20px 40px;
    border-radius: 50px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-item .count {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #333;
}

.globe-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(30, 30, 30, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
    /* In a real scenario, this would be a world map image */
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
}

/* Mobile Adjustments - Specific Overrides */
@media (max-width: 768px) {

    /* Navbar Mobile Fix - Reset floating pill to full width bar */
    .navbar {
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
        border-radius: 0;
        background: rgba(5, 5, 5, 0.95);
        padding: 15px 20px;
        max-width: 100%;
        backdrop-filter: blur(15px);
    }

    .nav-container {
        border: none;
        border-radius: 0;
        padding: 0;
        /* Remove internal pill padding */
        background: transparent;
        box-shadow: none;
        width: 100%;
    }

    .nav-links {
        display: none;
        /* Hide desktop menu */
        /* Use JS to toggle mobile menu overlay instead */
    }

    .nav-btn {
        display: none;
        /* Hide contact button on heavy mobile */
    }

    .mobile-toggle {
        display: block;
        font-size: 24px;
        color: #fff;
        margin-left: auto;
    }

    /* MERN Card Mobile */
    .mern-card {
        flex-direction: column-reverse;
        /* Image on top, text below */
        padding: 0;
        max-width: 100%;
    }

    .course-content {
        padding: 30px 20px;
        min-width: 0;
        width: 100%;
        text-align: center;
    }

    .course-content h3 {
        font-size: 1.5rem;
    }

    .course-features li {
        justify-content: center;
    }

    .mern-image {
        min-height: 250px;
    }

    .mern-overlay-text {
        position: relative;
        top: 0;
        padding-top: 20px;
    }

    .small-badges {
        display: none;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .footer-links-col {
        width: auto;
        flex: auto;
        max-width: 100%;
        text-align: left;
    }

    .contact-details p {
        justify-content: flex-start;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        padding: 20px 20px 0;
    }

    /* Grids */
    .features-grid,
    .services-grid-new,
    .process-flow {
        grid-template-columns: 1fr;
        /* Single column for cards */
        display: grid;
    }

    .process-flow {
        gap: 40px;
    }

    .flow-line {
        display: none;
        /* Hide connecting lines on mobile */
    }

    .rating-item {
        width: 45%;
    }

    .ratings-grid {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Ratings */
.ratings-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rating-item {
    text-align: center;
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 5px;
}

.rating-item p {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

/* SEO Section */
.seo-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.seo-content {
    flex: 1;
}

.seo-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.seo-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.seo-stats {
    display: flex;
    gap: 30px;
}

.seo-stat {
    display: flex;
    flex-direction: column;
}

.seo-stat .val {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-stat .lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.seo-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.seo-image img {
    max-width: 100%;
    border-radius: 10px;
    /* optional glow */
}

/* Footer */
.footer {
    background: #000;
    /* Pure black as per image */
    border-top: 1px solid #111;
    padding: 80px 0 30px;
    font-size: 14px;
    color: #aeaeae;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-col {
    flex: 2;
    min-width: 300px;
    max-width: 400px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.company-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-info {
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-details span {
    color: #fff;
}

.footer-links-col {
    flex: 1;
    min-width: 150px;
}

.footer-links-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: #888;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    padding-left: 10px;
}

.footer-links-col ul li a::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 10px;
    color: #555;
}

.footer-links-col ul li a:hover {
    color: #d53af0;
    padding-left: 15px;
}

.footer-bottom {
    text-align: center;
    color: #555;
    padding-top: 30px;
    border-top: 1px solid #111;
    font-size: 12px;
    line-height: 1.8;
}

.legal-details {
    color: #444;
    margin-top: 5px;
}

.iso-text {
    color: #666;
    margin-top: 5px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .seo-card {
        flex-direction: column;
        text-align: center;
    }

    .seo-stats {
        justify-content: center;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    text-decoration: none;
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide for now, needs JS for toggle */
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

}

/* About Page Styles */
.about-hero {
    padding: 150px 0 30px;
    text-align: center;
}

.subtitle-caps {
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-heading {
    font-family: 'Urbanist', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
    /* Fallback */
    background-image: linear-gradient(to bottom, #f3f4f6 0%, #d1d5db 50%, #4b5563 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(rgba(0, 0, 0, 0.15) 0px 4px 4px);
    font-weight: 700;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #aeaeae;
    font-size: 1.1rem;
    line-height: 1.8;
}

.founders-section {
    padding: 0 0 80px;
    text-align: center;
    background: #050505;
    /* Slightly different dark */
}

.section-desc {
    color: #888;
    max-width: 700px;
    margin: 20px auto 50px;
    line-height: 1.6;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.founder-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    width: 380px;
    max-width: 100%;
    text-align: center;
    transition: 0.3s;
}

.founder-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.founder-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    /* Removed border to match live site */
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.founder-card:hover .founder-img {
    transform: scale(1.1);
}

.founder-card h3 {
    color: #fce7f3;
    /* Off-white / light pinkish tint from reference or just white */
    color: #fcfcfc;
    margin-bottom: 0;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 600;
}

.founder-card .designation {
    color: #cbef44;
    /* Vivid Green/Lime */
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

.story-section {
    padding: 100px 0;
}

.story-content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.story-content-block p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-text {
    color: #fff !important;
    font-weight: 600;
    font-style: italic;
    font-size: 1.2rem !important;
}

/* Make a Difference / Principles */
.difference-section {
    padding: 80px 0 100px;
    text-align: center;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.principle-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
}

.principle-icon {
    font-size: 24px;
    color: #d53af0;
    margin-bottom: 20px;
}

.principle-card h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.principle-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

.section-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
}