/* --- HERO SECTION CSS --- */
.about-hero-section {
    position: relative;
    width: 100%;
    height: 500px;
   
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darkens the background */
    z-index: 1;
}

.about-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.about-hero-section .hero-title {
    font-family: 'Teko', sans-serif;
    font-size: 80px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    line-height: 1;
}

.about-hero-section .hero-breadcrumb {
    font-family: sans-serif;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 8px 30px;
    border-radius: 30px;
}

.about-hero-section .hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.about-hero-section .hero-breadcrumb span {
    color: #D33333; /* Red highlight */
}
.about-hero-section .hero-breadcrumb .sep {
    color: #ffffff;
    margin: 0 5px;
}

/* --- STATS SECTION CSS --- */
.stats-counter-section {
    padding: 60px 20px;
    background-color: #d33333;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box .stat-number {
    font-family: 'Teko', sans-serif;
    font-size: 65px; /* Size requested by you */
    color: #fff; /* Theme Red */
    line-height: 1;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.stat-box .stat-text {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}
/* --- INFO & QUOTE SECTION CSS --- */
.info-quote-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-content .info-text {
    font-family: sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-box {
    border: 2px solid #D33333; /* Theme Red Border */
    padding: 30px;
    text-align: center;
    position: relative;
    background: #ffffff;
}

.quote-box .quote-icon {
    font-family: Georgia, serif;
    font-size: 80px;
    color: #D33333;
    line-height: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.quote-box .quote-text {
    font-family: 'Teko', sans-serif;
    font-size: 35px;
    color: #000000;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

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

/* --- VIDEO BANNER SECTION CSS --- */
.video-banner-section {
    position: relative;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* Creates the wide red block behind the image */
.video-bg-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%; /* Covers top portion like in screenshot */
    background-color: #D33333; /* Theme Red */
    z-index: 1;
}

.video-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-radius: 5px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-triangle {
    width: 0; 
    height: 0; 
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #D33333; /* Red triangle */
    margin-left: 5px; /* Visual centering */
}

/* --- MODAL CSS --- */
.yt-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.yt-modal.active {
    display: block;
}

.yt-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.yt-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    z-index: 10000;
}

.yt-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- MY STORY SECTION CSS --- */
.my-story-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: sans-serif;
}

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

.story-header {
    text-align: center;
    margin-bottom: 50px;
}

.story-header .sub-title {
    color: #d33333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.story-header .main-title {
    font-family: 'Teko', sans-serif;
    font-size: 55px;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.story-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.story-col p {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* --- LONG TERM TRANSFORMATION CSS --- */
.transformation-section {
    background-color: #111111;
    padding: 90px 20px;
    color: #ffffff;
    font-family: sans-serif;
}

.container-transform {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Left Side */
.transform-left .sub-title {
    color: #d33333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.transform-left .main-title {
    font-family: 'Teko', sans-serif;
    font-size: 60px;
    color: #ffffff;
    line-height: 1;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.transform-text p {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features */
.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    background-color: #d33333;
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-family: 'Teko', sans-serif;
    font-size: 30px;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1;
    text-transform: uppercase;
}

.feature-content p {
    color: #888888;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Right Side */
.quote-box {
    background-color: #1a1a1a;
    border: 1px solid #331515; /* Subtle dark red border */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.quote-text {
    color: #cccccc;
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.quote-author {
    color: #d33333;
    font-size: 13px;
    margin: 0;
}

.transform-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .container-transform {
        grid-template-columns: 1fr;
    }
}
/* --- CREDENTIALS SECTION CSS --- */
.credentials-section {
    background-color: #fafafa;
    padding: 80px 20px;
    font-family: sans-serif;
}

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

.cred-header {
    text-align: center;
    margin-bottom: 50px;
}

.cred-header .sub-title {
    color: #d33333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.cred-header .main-title {
    font-family: 'Teko', sans-serif;
    font-size: 55px;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

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

.cred-card {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.cred-card:hover {
    transform: translateY(-5px);
}

/* Image Icon Styling */
.cred-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cred-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.cred-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 26px;
    color: #000000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.cred-card p {
    color: #777777;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

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

@media (max-width: 576px) {
    .cred-grid {
        grid-template-columns: 1fr;
    }
}
 /* --- CONTACT & TRANSFORM SECTION CSS --- */
.contact-transform-section {
    /* WordPress me image dynamic karne ke liye inline style de sakte hain, par CSS me demo de raha hu */
   
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 20px;
    font-family: sans-serif;
}

/* Dark overlay matching screenshot */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.85); /* Dark black/grey transparent overlay */
    z-index: 1;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column Styling */
.contact-info-col .sub-title {
    color: #d33333; /* Theme Red */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.contact-info-col .main-title {
    font-family: 'Teko', sans-serif;
    font-size: 70px;
    color: #ffffff;
    line-height: 1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.contact-info-col .desc-text {
    color: #dcdcdc;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-details .icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details .icon svg {
    width: 100%;
    height: 100%;
}

.contact-details span,
.contact-details a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
}

/* Bold styling for Action Links (Video/eBook) */
.contact-details li.action-link span,
.contact-details li.action-link a {
    font-weight: bold;
    transition: color 0.3s;
}

.contact-details li.action-link a:hover {
    color: #d33333;
}

/* Right Column Form Styling */
.form-box {
    background: rgba(0, 0, 0, 0.4); /* Transparent dark background inside box */
    border: 1px solid #d33333; /* Red thin border */
    border-radius: 10px;
    padding: 40px;
}

.form-title {
    font-family: 'Teko', sans-serif;
    font-size: 45px;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Full width for textarea row */
.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.form-box input,
.form-box textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #ffffff; /* White thin border for inputs */
    border-radius: 6px;
    padding: 15px;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: #999999;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: #d33333; /* Focus state red border */
}

.form-box textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr; /* Stack inputs on small screens */
    }
    .form-box {
        padding: 25px;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR ALL SECTIONS (Tablets & Mobile Devices)
   ========================================================================== */

/* --- TABLETS & SMALL LAPTOPS (Max Width: 992px) --- */
@media (max-width: 992px) {
    /* Transformation & Contact Sections Grid */
    .container-transform,
    .contact-container {
        grid-template-columns: 1fr; /* 2 Column se 1 Column */
        gap: 40px;
    }

    /* Credentials Grid */
    .cred-grid {
        grid-template-columns: repeat(2, 1fr); /* 4 Column se 2 Column */
    }

    /* Typography Adjustments for Tablet */
    .contact-info-col .main-title {
        font-size: 55px; /* 70px se reduce kiya */
    }
    
    .transform-left .main-title {
        font-size: 50px; 
    }
}

/* --- MOBILE DEVICES (Max Width: 768px) --- */
@media (max-width: 768px) {
    /* Common Padding Reduction for Mobile */
    .about-hero-section,
    .video-banner-section,
    .contact-transform-section {
        padding: 60px 20px;
    }
    
    .my-story-section,
    .transformation-section,
    .credentials-section,
    .info-quote-section {
        padding: 50px 20px;
    }

    /* Grids to 1 Column */
    .story-content-grid,
    .info-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr); /* Stats 4 se 2 column me */
        row-gap: 30px;
    }

    /* Typography - Scaling down massive fonts for mobile */
    .about-hero-section .hero-title {
        font-size: 50px;
    }

    .stat-box .stat-number {
        font-size: 45px;
    }

    .story-header .main-title,
    .cred-header .main-title {
        font-size: 40px;
    }

    .quote-box .quote-text {
        font-size: 26px;
    }

    .form-title {
        font-size: 35px;
    }

    /* Hero Section Height Adjustment */
    .about-hero-section {
        height: 350px;
    }

    /* Video Banner Red Background height fix for mobile */
    .video-bg-block {
        height: 50%; 
    }
    
    /* Play Button Scaling */
    .play-button {
        width: 60px;
        height: 60px;
    }
    .play-triangle {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 16px solid #D33333;
    }
}

/* --- SMALL MOBILE PHONES (Max Width: 576px) --- */
@media (max-width: 576px) {
    /* Credentials & Stats to Full 1 Column */
    .cred-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }

    /* Contact Form Inputs Stack */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Smaller Padding for tiny screens */
    .form-box {
        padding: 20px;
    }

    /* Final Typography Tweaks for very small screens */
    .about-hero-section .hero-title {
        font-size: 40px;
    }

    .contact-info-col .main-title,
    .transform-left .main-title {
        font-size: 40px;
    }

    .stat-box .stat-number {
        font-size: 40px;
    }

    .feature-content h3 {
        font-size: 24px;
    }
    
    .cred-card h3 {
        font-size: 22px;
    }

    /* Feature Icon Adjustments */
    .feature-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        margin-right: 15px;
    }
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
}