/* ================================== */
/* GENERAL & VARIABLES */
/* ================================== */
:root {
    --bg: #071127;
    --blue-1: #0b6cf6;
    --blue-2: #3da1ff;
    --card: #0f2038;
    --glass: rgba(255, 255, 255, 0.04);
    --accent: #00ffd1;
    --soft: rgba(255, 255, 255, 0.06);
    --radius: 14px;
    --transition: 350ms cubic-bezier(.2, .9, .3, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg);
    margin: 0;
    color: white;
}

/* ================================== */
/* NAV BAR */
/* ================================== */
.main-header {
    background-color: var(--bg);
    padding: 15px 50px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-logo span {
    color: var(--accent);
}

.dis {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #CBD5E0;
    text-decoration: none;
    font-size: 1.1em;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        justify-content: center;
    }
}

:root {
    --bg: #071127;
    --accent: #00ffd1;
    --card: #0f2038;
    --text-color: #ffffff;
    --light-grey: #a0a0a0;
    --radius: 14px;
}

.about-photokrop-section {
    background-color: var(--bg);
    padding: 80px 20px;
    color: var(--text-color);
    text-align: center;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main-heading {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.logo-container {
    margin-bottom: 20px;
}

.about-logo {
    max-width: 150px;
    height: auto;
    border: 2px solid #00ffd1;
    border-radius: 12px;
}

.about-paragraph {
    font-size: 1.1em;
    color: var(--light-grey);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: bold;
}

.mission-vision-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.mission-box,
.vision-box {
    flex: 1;
    background-color: var(--card);
    padding: 30px;
    border-radius: var(--radius);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mission-vision-heading {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--accent);
    margin-top: 0;
}

.services-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: var(--card);
    padding: 20px;
    border-radius: var(--radius);
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2em;
    color: var(--accent);
}

.service-item h4 {
    font-size: 1.2em;
    margin: 0;
}

.service-item p {
    font-size: 0.9em;
    color: var(--light-grey);
    margin: 0;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hire-us-btn {
    background-color: var(--accent);
    color: var(--bg);
}

.hire-us-btn:hover {
    background-color: #00e6b8;
}

.see-services-btn {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.see-services-btn:hover {
    background-color: var(--accent);
    color: var(--bg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-main-heading {
        font-size: 2em;
    }

    .mission-vision-container {
        flex-direction: column;
    }

    .services-box {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        max-width: 100%;
    }

    .about-buttons {
        flex-direction: column;
        gap: 10px;
    }
}




/* ================================== */
/* ENHANCED COMMITTED SECTION - Revamped */
/* ================================== */
.enhanced-section {
    background-color: var(--bg);
    padding: 80px 20px;
}

.enhanced-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.enhanced-text-left-revamped {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-card {
    background: rgba(255, 255, 255, 0.08);
    /* Semi-transparent white */
    backdrop-filter: blur(10px);
    /* Blur effect */
    border-radius: var(--radius);
    padding: 40px;
    max-width: 500px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
}

.founder-card .dis {
    color: var(--accent);
    font-weight: 600;
}

.founder-name {
    font-size: 2.2em;
    /* Smaller name size */
    font-weight: bold;
    line-height: 1.2;
    margin: 10px 0;
    color: white;
}

.founder-description {
    font-size: 1em;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.founder-social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.5em;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.enhanced-image-container {
    flex-shrink: 0;
    height: 600px;
    width: 400px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius);
}

.enhanced-image-container .committed-image {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(.2, .9, .3, 1);
}

.enhanced-image-container.is-in-view .committed-image {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .enhanced-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .enhanced-text-left-revamped {
        text-align: center;
        width: 100%;
    }

    .founder-card {
        padding: 20px;
        text-align: center;
    }

    .founder-social-icons {
        justify-content: center;
    }

    .founder-name {
        font-size: 1.8em;
    }

    .enhanced-image-container {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 2 / 3;
    }
}

:root {
    --bg: #071127;
    --accent: #00ffd1;
    --green-badge: #55a842;
    --text-color: #ffffff;
    --light-grey: #a0a0a0;
}

.photo-section {
    background-color: var(--bg);
    padding: 80px 20px;
    color: var(--text-color);
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.info-block {
    text-align: left;
}

.main-heading {
    font-size: 3em;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--accent);
}

.experience-tag {
    background-color: var(--green-badge);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.image-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
    min-height: 60vh;
    overflow: hidden;
    margin: 0 auto;
}

.photo-animate {
    position: relative;
    max-width: 100%;
    height: auto;
    transform: translateY(100%);
    /* Image initially niche chhupi rahe */
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
    will-change: transform, opacity;
}

.photo-animate.is-in-view {
    transform: translateY(0);
    /* Jab visible ho, upar slide kar ke dikhe */
    opacity: 1;
}



.stat-block {
    text-align: left;
    padding-left: 20px;
}

.stat-group {
    margin-bottom: 40px;
    text-align: right;
}

.stat-count {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-color);
}

.stat-label {
    display: block;
    font-size: 1em;
    color: var(--light-grey);
    margin-bottom: 5px;
}

.stat-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin-left: auto;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .main-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .info-block,
    .stat-block {
        text-align: center;
    }

    .stat-group {
        text-align: center;
    }

    .stat-divider {
        margin: 10px auto 0;
    }

    .image-showcase {
        min-height: 50vh;
    }
}


:root {
    --bg: #071127;
    --accent: #00ffd1;
    --card: #0f2038;
    --text-color: #ffffff;
    --light-grey: #a0a0a0;
    --radius: 14px;
}

.team-members-section {
    background-color: var(--bg);
    padding: 60px 20px;
    color: var(--text-color);
    text-align: center;
}

.team-members-section h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.team-members-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--accent);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--text-color);
    margin: 0 0 5px;
}

.member-designation {
    font-size: 0.9em;
    color: var(--light-grey);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }
}


:root {
    --bg: #071127;
    --footer-bg: #000000;
    --accent: #00ffd1;
    --text-color: #ffffff;
    --light-grey: #a0a0a0;
}

.main-footer {
    background-color: var(--footer-bg);
    color: var(--light-grey);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
}

.footer-column h4 {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-text {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
}

.footer-social-icons a {
    color: var(--light-grey);
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cta-btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--text-color);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.email-btn {
    background-color: var(--accent);
    color: var(--footer-bg);
}

.email-btn:hover {
    background-color: #00e6b8;
}

.copyright {
    font-size: 0.8em;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-cta .cta-btn {
        margin: 0 auto 15px;
    }
}