/* =================================================================== */
/*                          BASIC RESETS & FONTS                       */
/* =================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #6A5AF9; /* Main Purple/Blue Color */
    --dark-text: #1E2022;
    --light-text: #555;
    --background-color: #FFFFFF;
    --container-width: 1140px;
}

body {
    background-color: var(--background-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}


/* =================================================================== */
/*                          HEADER & NAVBAR                            */
/* =================================================================== */
.header {
    width: 100%;
    background-color: var(--background-color);
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.dropdown.show .dropdown-content {
    display: block;
}
.arrow {
    font-size: 12px;
    margin-left: 5px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}


/* =================================================================== */
/*                  CONTINUOUS BUBBLE ANIMATION BUTTON                 */
/* =================================================================== */
.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button .text {
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(106, 90, 249, 0.4);
}

.cta-button .bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: move-bubble 5s infinite;
    bottom: -30px;
    z-index: 1;
}

@keyframes move-bubble {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

.cta-button .bubble:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-delay: 0s; animation-duration: 4s; }
.cta-button .bubble:nth-child(3) { width: 10px; height: 10px; left: 80%; animation-delay: 1.5s; }
.cta-button .bubble:nth-child(4) { width: 25px; height: 25px; left: 50%; animation-delay: 2.5s; animation-duration: 5s; }
.cta-button .bubble:nth-child(5) { width: 15px; height: 15px; left: 90%; animation-delay: 3s; animation-duration: 3s; }
.cta-button .bubble:nth-child(6) { width: 18px; height: 18px; left: 5%; animation-delay: 4s; }


/* =================================================================== */
/*                     HERO SECTION (FINAL CORRECTED)                  */
/* =================================================================== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0; /* Padding container par denge */
    overflow: hidden;
}

.hero-background-video, .hero-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 12, 23, 0.8) 0%, rgba(45, 23, 71, 0.5) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Text container */
.hero-text-container {
    max-width: 700px;
    margin: 0;
    text-align: left;
}

.hero-text-container .sub-heading {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-text-container h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.hero-text-container h1 span {
    color: var(--primary-color);
}

.hero-text-container .description {
    color: rgba(255, 255, 255, 0.9);
    margin: 25px 0;
    line-height: 1.7;
    max-width: 500px;
}

/* =================================================================== */
/*         HERO SECTION RESPONSIVE & DESKTOP OVERRIDE                  */
/* =================================================================== */

/* DESKTOP PAR CONTAINER KO FULL WIDTH KARNE KE LIYE */
@media (min-width: 992px) {
    .hero-section .container {
        max-width: none; /* 1140px ki limit hatayi */
        width: 100%;
        /* Left se utni hi padding denge jitni baaki content mein hai */
        padding: 0 10%; 
    }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
        justify-content: center; 
        text-align: center;
        padding: 40px 0;
    }
    .hero-text-container {
        max-width: 90%;
        margin: 0 auto; /* Mobile par wapas center mein */
    }
    .hero-text-container h1 {
        font-size: 36px;
    }
    .hero-text-container .description {
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }
}

/* =================================================================== */
/*                           PARTNERS SECTION                          */
/* =================================================================== */
.partners-section {
    padding: 80px 0;
    text-align: center;
}

.partners-section .section-heading {
    margin-bottom: 50px;
}

.partners-section .sub-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.partners-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-text);
}

.logo-slider {
    padding: 20px 0;
}

.logo-item {
    background-color: #F7F7FD;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.logo-item img {
    max-width: 120px;
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =================================================================== */
/*                           SERVICES SECTION                          */
/* =================================================================== */
.services-section {
    padding: 80px 0;
    background-color: #F7F7FD;
}

.services-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.services-heading .sub-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.services-heading h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

.view-all-button {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.view-all-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(106, 90, 249, 0.4);
}

.service-slider {
    padding-bottom: 40px;
}
.service-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.card-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
}

.service-arrow {
    background-color: var(--primary-color);
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: transform 0.3s ease;
}
.service-arrow:hover {
    transform: scale(1.1) rotate(45deg);
}
.service-arrow svg {
    width: 24px;
    height: 24px;
}

.card-description {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
}
.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-slider .swiper-pagination-bullet {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
}


/* =================================================================== */
/*                          PORTFOLIO SECTION                          */
/* =================================================================== */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.portfolio-heading .sub-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-heading h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card {
    display: block;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-image-wrapper {
    background-color: #F7F7FD;
    padding: 30px;
    border-radius: 24px 24px 0 0;
}

.card-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.card-text {
    padding: 30px;
}

.card-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.card-text p {
    color: var(--light-text);
    line-height: 1.7;
}


/* =================================================================== */
/*                        CERTIFICATIONS SECTION                       */
/* =================================================================== */
.certifications-section {
    padding: 80px 0;
    background-color: #F7F7FD;
}

.certifications-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.certifications-section .sub-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.certifications-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-text);
}

.certifications-slider {
    padding: 10px 0;
}

.cert-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.cert-card-link:hover .cert-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cert-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card img {
    max-height: 45px;
    max-width: 130px;
    margin-bottom: 15px;
}
.cert-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}
.cert-card p {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.4;
}


/* =================================================================== */
/*                           CONTACT SECTION                           */
/* =================================================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #d4f9e8 0%, #ffffff 80%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
    background-size: 60px 60px;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}
.contact-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}
.contact-header p {
    font-size: 18px;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 90, 249, 0.2);
}
.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    border: none;
    background: linear-gradient(90deg, #2c3e50, #1e2022);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}
.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.4);
}


/* =================================================================== */
/*                                FOOTER                               */
/* =================================================================== */
.footer {
    background-color: #1E2022;
    color: #a9a9a9;
    padding: 80px 0 30px 0;
    position: relative;
    overflow: hidden;
}
.footer-bg-pattern {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M 50 0 L 100 50 L 50 100 L 0 50 Z' fill='none' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}
.footer-description {
    max-width: 280px;
    line-height: 1.7;
}
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.footer-socials a:hover {
    background-color: var(--primary-color);
}
.footer-socials svg {
    fill: #fff;
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul a {
    text-decoration: none;
    color: #a9a9a9;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-links ul a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}
.footer-bottom .template-link {
    display: none;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}


/* ################################################################### */
/* ######################### RESPONSIVE DESIGN ######################### */
/* ################################################################### */

/* ======================= TABLET VIEW (<= 992px) ======================= */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ======================= MOBILE VIEW (<= 768px) ======================= */
@media (max-width: 768px) {
    /* --- Navbar --- */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
    }
    .nav-menu.active { left: 0; }
    .nav-item { padding: 15px 0; width: 100%; border-bottom: 1px solid #f0f0f0; }
    .dropdown { width: 100%; }
    .dropdown-content { position: static; display: none; box-shadow: none; background-color: #fafafa; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-cta { display: none; }
    
    /* --- Hero Section --- */
    .hero-section {
        height: 80vh;
        min-height: 500px;
        justify-content: center; 
        text-align: center;
    }
    .hero-text-container {
        max-width: 90%;
    }
    .hero-text-container h1 {
        font-size: 36px;
    }
    .hero-text-container .description {
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }

    /* --- Partners Section --- */
    .partners-section h2 {
        font-size: 32px;
    }
    
    /* --- Services Section --- */
    .services-heading {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .services-heading h2 {
        font-size: 36px;
    }

    /* --- Portfolio Section --- */
    .portfolio-heading {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .portfolio-heading h2 {
        font-size: 36px;
    }

    /* --- Contact Section --- */
    .contact-header h2 {
        font-size: 36px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form {
        padding: 30px;
    }
    
    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-about {
        grid-column: 1 / 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-description {
        max-width: 100%;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-content .footer-column:nth-child(4) {
        grid-column: 1 / 3;
    }
    .footer-links {
        text-align: left;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer-bottom .template-link {
        display: inline-block;
    }
}

/* =================================== */
/* Page Header / Banner Section Styles */
/* =================================== */

.page-header {
    position: relative;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
    background-size: cover;
    background-position: center;
    
    /* IMPORTANT: Yahan apni background image ka sahi path daalein */
    background-image: url('../images/your-about-us-banner-image.jpg'); /* <-- PATH BADALNA NA BHOOLEIN */
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay (Aap iski transparency 0.6 se kam ya zyada kar sakte hain) */
    background-color: rgba(21, 21, 31, 0.7); 
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2; /* Overlay ke upar content laane ke liye */
}

.page-header h1 {
    font-size: 3.5rem; /* 56px */
    font-weight: 700;
    margin-bottom: 1.5rem; /* 24px */
}

/* Breadcrumb Styling */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape ke liye */
    list-style: none;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.25); /* Thoda transparent background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px); /* Peeche halka sa blur effect */
}

/* Yeh gradient border banane ki trick hai */
.breadcrumb {
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), 
        linear-gradient(90deg, #9f55ff, #ff4785); /* Aapka gradient color */
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 1rem; /* 16px */
    font-weight: 500;
}

.breadcrumb a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb .separator {
    margin: 0 12px;
}

.breadcrumb .separator svg {
    fill: #ff4785; /* Gradient ke end color se match karein */
}


/* =================================== */
/* Responsive Styles for Mobile        */
/* =================================== */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0;
    }

    .page-header h1 {
        font-size: 2.5rem; /* 40px */
    }

    .breadcrumb {
        padding: 8px 18px;
    }

    .breadcrumb li {
        font-size: 0.875rem; /* 14px */
    }
    
    .breadcrumb .separator {
        margin: 0 8px;
    }
}
/* =================================== */
/* About Intro Section Styles          */
/* =================================== */

.about-intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Do barabar columns */
    align-items: center;
    gap: 60px; /* Columns ke beech mein space */
}

.about-image-column img {
    max-width: 100%;
    height: auto;
}

.about-content-column .sub-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8c52ff; /* Purple color */
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-content-column .sub-heading svg {
    background-color: #f2e9ff; /* Light purple */
    padding: 4px;
    border-radius: 4px;
}

.about-content-column h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-content-column .description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Tabs Styling */
.tabs-nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.tab-link {
    background: none;
    border: none;
    padding: 15px 0;
    margin-right: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-link.active {
    color: #8c52ff; /* Purple color */
}

.tab-link::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Border ke upar aane ke liye */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #8c52ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-link.active::after {
    transform: scaleX(1);
}

.tab-pane {
    display: none; /* Default mein sabhi panes hide rahenge */
    align-items: flex-start;
    gap: 20px;
}

.tab-pane.active {
    display: flex; /* Active pane dikhega */
}

.tab-pane-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #8c52ff;
}
.tab-pane-icon svg { width: 28px; height: 28px; }

.tab-pane p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* CTA Row Styling */
.about-cta-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap; /* Choti screen par wrap ho jayega */
}

.cta-button.primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-image: linear-gradient(90deg, #8c52ff, #ff3b7b);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(140, 82, 255, 0.3);
}
.cta-button.primary .arrow-icon { display: flex; align-items: center; width: 20px; height: 20px; }


.phone-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.phone-icon {
    width: 45px;
    height: 45px;
    background-color: #f2e9ff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #8c52ff;
}
.phone-icon svg { width: 20px; height: 20px; }

.phone-info .label {
    display: block;
    font-size: 0.9rem;
    color: #777;
}

.phone-info .phone-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}


/* =================================== */
/* Responsive Styles                   */
/* =================================== */
@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr; /* Mobile par 1 column */
        gap: 40px;
    }
    .about-image-column {
        order: 2; /* Image ko content ke neeche bhej denge */
    }
    .about-content-column {
        order: 1;
    }
    .about-content-column h2 {
        font-size: 2.2rem;
    }
}
/* ================================================== */
/* Founder Section v2 - Elegant & Professional Design */
/* ================================================== */

.founder-section-v2 {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.founder-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Content ko thoda zyada space */
    align-items: center;
    gap: 5%; /* Responsive gap */
}

.founder-image-container {
    position: relative;
    height: 500px; /* Ek fixed height denge container ko */
}

/* Yeh hai background ka geometric shape */
.founder-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background-image: linear-gradient(135deg, #f3eaff, #e8f4ff); /* Light, soft gradient */
    border-radius: 12px;
    transform: translateX(-101%);
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth reveal animation */
}

/* Asli photo ka container */
.founder-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko stretch hone se bachayega */
    object-position: top center; /* Ensure the top of the image is visible */
}

.founder-content-v2 {
    position: relative;
    padding-left: 40px;
}

/* Yeh hai content ke side wali decorative line */
.content-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0; /* Initially height 0 */
    background-image: linear-gradient(to bottom, #8c52ff, #ff3b7b);
    border-radius: 2px;
    transition: height 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.8s;
}

.founder-content-v2 .sub-heading,
.founder-content-v2 .founder-name,
.founder-content-v2 .founder-title,
.founder-content-v2 .founder-bio,
.founder-content-v2 .founder-socials {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.founder-content-v2 .sub-heading { color: #8c52ff; font-weight: 600; margin-bottom: 8px; transition-delay: 1s; }
.founder-content-v2 .founder-name { font-size: 3rem; font-weight: 700; color: #111; margin-bottom: 4px; transition-delay: 1.1s; }
.founder-content-v2 .founder-title { font-size: 1.1rem; color: #555; margin-bottom: 24px; transition-delay: 1.2s; }
.founder-content-v2 .founder-bio { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 32px; transition-delay: 1.3s; }
.founder-content-v2 .founder-socials { transition-delay: 1.4s; display: flex; gap: 15px; }

/* Purani social icon ki styling yahan bhi kaam aayegi */
.founder-socials a {
    width: 45px; height: 45px; background-color: #f8f9fa; border: 1px solid #e9ecef;
    border-radius: 50%; display: grid; place-items: center; color: #333; transition: all 0.3s ease;
}
.founder-socials a:hover {
    transform: translateY(-5px); background-color: #8c52ff; color: #fff; border-color: #8c52ff;
    box-shadow: 0 10px 15px -3px rgba(140, 82, 255, 0.2);
}
.founder-socials svg { width: 22px; height: 22px; }

/* ================================================== */
/* Scroll Animation - The Magic Happens Here          */
/* ================================================== */
.founder-section-v2.is-visible .founder-bg-shape { transform: translateX(0); }
.founder-section-v2.is-visible .founder-photo { opacity: 1; transform: scale(1); }
.founder-section-v2.is-visible .content-accent-line { height: 80px; }
.founder-section-v2.is-visible .sub-heading,
.founder-section-v2.is-visible .founder-name,
.founder-section-v2.is-visible .founder-title,
.founder-section-v2.is-visible .founder-bio,
.founder-section-v2.is-visible .founder-socials {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================== */
/* Responsive Design (Updated & Fixed)              */
/* ================================================== */
@media (max-width: 992px) {
    .founder-grid-v2 {
        grid-template-columns: 1fr;
        gap: 40px; /* Thoda gap kam kiya mobile ke liye */
    }

    /* === YAHAN SE FIX SHURU HOTA HAI === */

    .founder-image-container {
        height: auto; /* IMPORTANT: Fixed height ko auto kar diya */
        max-width: 350px; /* Thoda chota kiya taaki padding achi lage */
        margin: 0 auto;
    }
    
    .founder-bg-shape {
        /* Mobile par background shape ki zaroorat nahi, simpler is better */
        display: none; 
    }

    .founder-photo {
        position: relative; /* IMPORTANT: Absolute se relative kiya */
        width: 100%;
        height: auto; /* Height ko auto kiya */
        bottom: auto; /* Reset kiya */
        right: auto; /* Reset kiya */
    }
    
    /* === YAHAN PAR FIX KHATAM HOTA HAI === */

    .founder-content-v2 {
        padding-left: 0;
        text-align: center;
    }
    
    .content-accent-line {
        display: none; 
    }
    
    .founder-socials {
        justify-content: center;
    }
    
    .founder-name { 
        font-size: 2.5rem; 
    }
}

/* ======================================= */
/* Contact Page - Info Cards Section Styles */
/* ======================================= */

.contact-details-cards {
    padding-top: 100px;
    /* Is section ko form section se thoda upar overlap karwayenge, for a nice effect */
    margin-bottom: -70px; 
    position: relative;
    z-index: 5;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.info-card {
    text-align: center;
}

.info-card-icon {
    width: 64px;
    height: 64px;
    background-color: #8c52ff;
    color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(140, 82, 255, 0.3);
}

.info-card-icon svg {
    width: 30px;
    height: 30px;
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.info-card-detail {
    display: block;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card-detail:hover {
    color: #8c52ff;
}

/* Adjusting the section below it */
.contact-page-section {
    padding-top: 170px; /* Badha diya taaki card overlap ho sake */
    background-color: #f8f9fa; /* ہلکا سا different background */
}


/* Responsive Styles for the Cards */
@media (max-width: 992px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .contact-details-cards {
        margin-bottom: 0;
    }

    .contact-page-section {
        padding-top: 60px; /* Normal padding */
    }
}
/* ======================================= */
/* All Services Page - The "Best" Design */
/* ======================================= */

.all-services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    /* Desktop par 3 columns, Tablet par 2, Mobile par 1 */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card-v2 {
    position: relative;
    display: block;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* This is for the 3D tilt effect */
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-v2:hover {
    transform: perspective(1000px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-v2:hover .card-bg-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay from bottom to top */
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 20%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    /* This is for the 3D tilt effect */
    transform: translateZ(50px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}
.card-icon svg { width: 28px; height: 28px; }

.service-card-v2:hover .card-icon {
    transform: translateY(-5px);
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.card-content p {
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: #e2e8f0; /* Light text color */
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.1s;
}

.card-link-button {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.2s;
}

/* Hover effects for the text content */
.service-card-v2:hover .card-content p,
.service-card-v2:hover .card-link-button {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .all-services-section {
        padding: 80px 0;
    }
    .services-grid {
        gap: 30px;
    }
    .service-card-v2 {
        height: 400px;
    }
    .card-content h3 {
        font-size: 1.6rem;
    }
}
/* ======================================= */
/* Service Detail Page Styles (e.g., Web Dev) */
/* ======================================= */

/* --- Introduction Section --- */
.service-intro-section { padding: 100px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-content .sub-heading { color: #8c52ff; font-weight: 600; margin-bottom: 1rem; display: block; }
.intro-content h2 { font-size: 2.8rem; margin-bottom: 1.5rem; }
.intro-content p { color: #555; line-height: 1.8; }
.intro-image img { width: 100%; border-radius: 12px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

/* --- Tech Stack Section --- */
.tech-stack-section { padding: 100px 0; background-color: #f8f9fa; }
.section-heading.text-center { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.tech-category h4 { font-size: 1.5rem; margin-bottom: 20px; border-bottom: 2px solid #8c52ff; padding-bottom: 10px; }
.tech-items { display: flex; flex-wrap: wrap; gap: 20px; }
.tech-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 15px; background: #fff; border-radius: 8px; width: 100px; text-align: center; transition: transform 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.tech-item:hover { transform: translateY(-8px); }
.tech-item img { height: 40px; }
.tech-item span { font-weight: 500; font-size: 0.9rem; }

/* --- CTA Banner Section --- */
.cta-banner-section { padding: 80px 0; background-image: linear-gradient(90deg, #8c52ff, #ff3b7b); color: white; text-align: center; }
.cta-banner-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-banner-section .cta-button { background: #fff; color: #8c52ff; }

/* --- Process Section --- */
.process-section { padding: 120px 0; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; margin-top: 40px; }
/* The connecting line */
.process-timeline::before { content: ''; position: absolute; top: 32px; left: 5%; width: 90%; height: 4px; background-color: #e9ecef; z-index: 1; }
.process-step { position: relative; z-index: 2; }
.step-number { width: 64px; height: 64px; background-color: #fff; border: 4px solid #e9ecef; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; font-weight: 700; color: #8c52ff; margin-bottom: 20px; transition: all 0.3s ease; }
.process-step:hover .step-number { background-color: #8c52ff; color: #fff; border-color: #8c52ff; transform: scale(1.1); }
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: #555; line-height: 1.7; }

/* --- Final CTA Section --- */
.final-cta-section { padding: 100px 0; background-color: #0f172a; /* Dark Blue */ color: white; text-align: center; }
.final-cta-content { max-width: 600px; margin: 0 auto; }
.final-cta-content h3 { font-size: 2.8rem; margin-bottom: 1rem; }
.final-cta-content p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 2.5rem; }
.final-cta-content .hero-cta { margin: 0 auto; /* Center the button */ }

/* --- Responsive Styles for Service Detail Page --- */
@media (max-width: 992px) {
    .intro-grid { grid-template-columns: 1fr; }
    .intro-image { order: -1; margin-bottom: 30px; }
    .tech-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr 1fr; row-gap: 50px; }
    .process-timeline::before { display: none; /* Hide line on tablet */ }
}
@media (max-width: 768px) {
    .process-timeline { grid-template-columns: 1fr; }
    .step-number { margin-left: auto; margin-right: auto; }
    .process-step { text-align: center; }
}
/* ======================================= */
/* Service Detail Hero v2 - Dynamic Blueprint */
/* ======================================= */

.hero-section-v2 {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* The subtle background grid pattern */
.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(230, 237, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 237, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.9fr; /* Text ke liye thoda zyada space */
    align-items: center;
    gap: 60px;
}

.hero-content .sub-heading {
    color: #8c52ff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-image-wrapper {
    position: relative;
    min-height: 450px; /* To maintain space */
}

/* Decorative shape behind the image */
.hero-image-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background-image: linear-gradient(135deg, #f3eaff, #e8f4ff);
    border-radius: 12px;
    transform: rotate(-5deg);
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Page Load Animations for Hero v2 --- */
.hero-content .sub-heading,
.hero-content h1,
.hero-content .subtitle,
.hero-content .cta-button,
.hero-image-wrapper > div {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideUpFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.hero-content h1 { animation-delay: 0.2s; }
.hero-content .subtitle { animation-delay: 0.4s; }
.hero-content .cta-button { animation-delay: 0.6s; }
.hero-image-wrapper .hero-image-bg { animation-delay: 0.5s; }
.hero-image-wrapper .hero-image { animation-delay: 0.7s; }

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-wrapper {
        margin-top: 50px;
        min-height: 400px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}
/* ======================================= */
/* Web Design Service Page Styles */
/* ======================================= */

/* --- Design Hero Section --- */
.design-hero-section {
    padding: 120px 0 0 0;
    text-align: center;
    overflow: hidden;
}
.design-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.design-hero-content .sub-heading { color: #8c52ff; font-weight: 600; margin-bottom: 1rem; }
.design-hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.design-hero-content h1 span {
    background: linear-gradient(90deg, #8c52ff, #ff3b7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.design-hero-content p { font-size: 1.2rem; color: #555; max-width: 650px; margin: 0 auto 2.5rem auto; }
.design-hero-showcase {
    margin-top: 50px;
    transform: translateY(20%); /* Image ko neeche se start karenge */
    animation: floatUp 1s ease-out forwards;
}
@keyframes floatUp { to { transform: translateY(0); } }
.design-hero-showcase img { max-width: 80%; border-radius: 12px 12px 0 0; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }

/* --- Design Philosophy Section --- */
.design-philosophy-section { padding: 120px 0; background-color: #f8f9fa; }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.philosophy-item { text-align: center; padding: 30px; }
.philosophy-item .item-icon { width: 60px; height: 60px; background: #fff; border: 1px solid #e9ecef; border-radius: 50%; display: grid; place-items: center; color: #8c52ff; margin: 0 auto 20px auto; }
.philosophy-item .item-icon svg { width: 28px; height: 28px; }
.philosophy-item h3 { margin-bottom: 15px; }
.philosophy-item p { color: #555; line-height: 1.7; }

/* --- Design Tools Section --- */
.design-tools-section { padding: 100px 0; }
.tools-logo-cloud { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 60px; margin-top: 60px; }
.tool-logo { text-align: center; }
.tool-logo img { height: 50px; opacity: 0.6; filter: grayscale(100%); transition: all 0.3s ease; }
.tool-logo:hover img { opacity: 1; filter: grayscale(0%); transform: scale(1.1); }
.tool-logo span { display: block; margin-top: 15px; font-weight: 500; color: #777; }

/* --- Design Process Section (Interactive) --- */
.design-process-section { padding: 120px 0; background-color: #f8f9fa; }
.process-interactive-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.process-steps .step { padding: 25px; border-left: 3px solid #e9ecef; cursor: pointer; transition: all 0.3s ease; }
.process-steps .step.active { border-left-color: #8c52ff; background-color: #fff; }
.process-steps .step h4 { font-size: 1.3rem; margin-bottom: 5px; }
.process-steps .step p { color: #555; }
.process-visuals { position: relative; height: 450px; }
.process-visuals .visual { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; opacity: 0; transition: opacity 0.5s ease; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.process-visuals .visual.active { opacity: 1; }

/* --- Responsive Styles for Design Page --- */
@media (max-width: 992px) {
    .design-hero-content h1 { font-size: 3.5rem; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .process-interactive-wrapper { grid-template-columns: 1fr; }
    .process-visuals { margin-top: 40px; height: 350px; }
}
@media (max-width: 768px) {
    .design-hero-content h1 { font-size: 2.8rem; }
}
/* ==================================================== */
/* App Dev Page - Bright & Light 'Crystal UI' Theme     */
/* ==================================================== */

.app-dev-page-light {
    background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
}

/* --- Hero Section --- */
.app-hero-section-light {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.app-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.app-hero-content .sub-heading { color: #007aff; font-weight: 600; margin-bottom: 1rem; }
.app-hero-content h1 { font-size: 3.8rem; line-height: 1.2; margin-bottom: 1.5rem; color: #1d2b48; }
.app-hero-content p { font-size: 1.1rem; color: #5b6a8a; max-width: 500px; margin-bottom: 2.5rem; }
.phone-mockup { position: relative; width: 300px; margin: 0 auto; filter: drop-shadow(0 20px 25px rgba(0, 85, 170, 0.15)); }
.phone-mockup > img { width: 100%; position: relative; z-index: 2; }
.phone-screen { position: absolute; top: 13px; left: 14px; right: 14px; bottom: 13px; z-index: 1; border-radius: 25px; overflow: hidden; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }

/* --- App Types Section (Glassmorphism Light) --- */
.app-types-section-light { padding: 100px 0; }
.app-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.app-type-card-light {
    padding: 40px;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s ease;
}
.app-type-card-light:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px 0 rgba(31, 38, 135, 0.15);
}
.app-type-card-light .card-icon img { height: 60px; }
.app-type-card-light h3 { margin: 20px 0 15px 0; color: #1d2b48; }
.app-type-card-light p { color: #5b6a8a; line-height: 1.7; }

/* --- Core Features Section --- */
.core-features-section-light { padding: 120px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.feature-card { text-align: center; color: #1d2b48; }
.feature-icon-v2 {
    width: 70px; height: 70px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, #4da1ff, #007aff);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}
.feature-icon-v2 svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.feature-card p { color: #5b6a8a; line-height: 1.7; }

/* --- Final CTA Section --- */
.final-cta-section-light {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #e0f7ff, #d1eaff);
}
.final-cta-content { max-width: 600px; margin: 0 auto; color: #1d2b48; }
.final-cta-content h3 { font-size: 2.8rem; margin-bottom: 1rem; }
.final-cta-content p { font-size: 1.1rem; color: #5b6a8a; margin-bottom: 2.5rem; }

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .app-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .app-hero-content p { margin: 0 auto 2.5rem auto; }
    .app-hero-visual { order: -1; margin-bottom: 40px; }
    .app-types-grid, .features-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .app-hero-content h1 { font-size: 2.8rem; }
}
/* ======================================= */
/* Digital Marketing Page - CORRECTED & COMPLETE CSS */
/* ======================================= */
.dm-page-light {
    background-color: #f8faff;
}

/* --- DM Hero Section --- */
.dm-hero-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
    overflow: hidden;
}
.dm-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.dm-hero-content { animation: fadeInRight 0.8s ease-out forwards; }
.dm-hero-content .sub-heading { color: #007aff; font-weight: 600; margin-bottom: 1rem; }
.dm-hero-content h1 { font-size: 3.8rem; line-height: 1.2; margin-bottom: 1.5rem; color: #1d2b48; }
.dm-hero-content p { font-size: 1.1rem; color: #5b6a8a; max-width: 500px; margin-bottom: 2.5rem; }

/* FIX: GIF/Image/Video ko responsive banane ke liye rule */
.dm-hero-visual .hero-video {
    width: 100%;
    max-width: 100%; 
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 85, 170, 0.15);
    animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInRight { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); }}
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); }}

/* --- Full Suite of Services (Accordion) --- */
.dm-full-services-section { padding: 100px 0; }
.section-heading.text-center { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.dm-services-accordion { max-width: 800px; margin: 60px auto 0; }
.accordion-item {
    background-color: #fff; border: 1px solid #eaf2ff;
    border-radius: 10px; margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 85, 170, 0.05);
    transition: all 0.3s ease;
}
.accordion-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px; cursor: pointer;
}
.accordion-header h3 { margin: 0; font-size: 1.4rem; color: #1d2b48; }
.accordion-icon {
    width: 20px; height: 20px; position: relative; transition: transform 0.3s ease;
}
.accordion-icon::before, .accordion-icon::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 16px; height: 2px; background-color: #007aff;
    transform: translate(-50%, -50%);
}
.accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.active .accordion-icon { transform: rotate(135deg); }
.accordion-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.accordion-item.active .accordion-content { max-height: 500px; }
.accordion-content p { padding: 0 25px; margin-top: 0; color: #5b6a8a; }
.accordion-content ul {
    list-style: none; padding: 0 25px 25px 25px; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.accordion-content li { position: relative; padding-left: 25px; color: #5b6a8a; }
.accordion-content li::before {
    content: '✓'; color: #007aff; font-weight: bold;
    position: absolute; left: 0;
}

/* --- Mid-Page CTA Section --- */
.cta-banner-section {
    padding: 80px 0; background-image: linear-gradient(135deg, #e0f7ff, #d1eaff);
    text-align: center; color: #1d2b48;
}
.cta-banner-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-banner-section p { max-width: 600px; margin: 0 auto 2rem auto; color: #5b6a8a; }

/* --- "Our Process" Section Styling --- */
.dm-process-section { padding: 120px 0; background-color: #f8faff; }
.dm-process-timeline { position: relative; max-width: 700px; margin: 60px auto 0; }
.dm-process-timeline::before {
    content: ''; position: absolute; top: 25px; bottom: 25px;
    left: 24px; width: 2px; background-color: #e0e6f3;
}
.dm-process-step {
    position: relative; display: flex; align-items: flex-start;
    gap: 30px; padding-left: 80px; margin-bottom: 40px;
    opacity: 0; transform: translateY(30px);
    transition: all 0.5s ease-out;
}
.dm-process-step.is-visible { opacity: 1; transform: translateY(0); }
.dm-process-step:nth-child(2).is-visible { transition-delay: 0.1s; }
.dm-process-step:nth-child(3).is-visible { transition-delay: 0.2s; }
.dm-process-step:nth-child(4).is-visible { transition-delay: 0.3s; }

.step-number {
    position: absolute; left: 0; top: 0; width: 50px; height: 50px;
    background-color: #fff; border: 2px solid #e0e6f3; border-radius: 50%;
    display: grid; place-items: center; font-size: 1.2rem;
    font-weight: 700; color: #8c52ff;
}
.dm-process-step h3 { color: #1d2b48; margin-bottom: 10px; }
.dm-process-step p { color: #5b6a8a; line-height: 1.7; }

/* =================================== */
/* Responsive Styles with FIXES        */
/* =================================== */
@media (max-width: 768px) {
    .dm-hero-section { padding: 80px 0; }
    .dm-hero-grid { grid-template-columns: 1fr; text-align: center; }
    
    /* FIX: Mobile ke liye heading ka font size chota kiya gaya hai */
    .dm-hero-content h1 {
        font-size: 2.5rem; /* Pehle 3.8rem tha, ab chota ho gaya */
    }

    .dm-hero-content p { margin-left: auto; margin-right: auto; }
    .dm-hero-visual { order: -1; margin-bottom: 40px; }
    .accordion-header h3 { font-size: 1.2rem; }
    .dm-process-timeline { padding-left: 0; }
    .dm-process-step {
        padding-left: 0; flex-direction: column;
        align-items: center; text-align: center;
    }
    .dm-process-timeline::before { display: none; }
    .step-number {
        position: static; margin-bottom: 20px; transform: none;
    }
}