@charset "utf-8";

/* --- GLOBAL VARIABLES & BASE --- */
:root {
    --pta-navy: #002d5b;
    --pta-gold: #ffc107;
    --pta-blue-light: #007AFF;
    --text-gray: #64748b;
    --hud-glass: rgba(0, 15, 30, 0.10);
}

body, html {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #333;
}


.ins-cta h2{ color:#fff}

/* --- SECTION 1: AI HERO CARD (Top) --- */
.ai-hero-card {
    background: #003366;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--pta-blue-light) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 90px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--pta-gold);
}

.hero-slogan {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-slogan::before, .hero-slogan::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #cbd5e1;
}

/* --- SECTION 2: INTEL REVEAL CARDS (3 Column) --- */
.reveal-section {
    background: #003366;
    padding: 30px 0 60px 0px;
}

.reveal-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-hud-frame {
    width: 90px;
    height: 90px;
    background: rgba(3, 124, 209, 0.05);
    border-radius: 15px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-hud-frame i {
    font-size: 3rem;
    color: var(--pta-gold);
}

.hud-corner-tl, .hud-corner-br {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--pta-gold);
}

.hud-corner-tl { top: -5px; left: -5px; border-bottom: 0; border-right: 0; }
.hud-corner-br { bottom: -5px; right: -5px; border-top: 0; border-left: 0; }

.reveal-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 15px; }
.reveal-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; }

/* --- SECTION 3: VIDEO DUAL HUD --- */
#hero-dual-hud {
    position: relative;
    width: 100%;
    height: 93vh;
    overflow: hidden;
}

#hero-dual-hud video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.left-side-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 30%, transparent 60%);
    z-index: 1;
}

.control-btn {
   
    bottom: 30px; right: 30px;
    z-index: 50;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

/* --- SECTION 4: TOGGLE SWITCH --- */
.toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 80px 0 60px;
}

.switch-container {
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    display: flex;
    position: relative;
  width: 870px;
    box-shadow: 0 10px 25px rgba(4, 47, 96, 0.1);
    border: 1px solid #e2e8f0;
}

.switch-btn {
    flex: 1;
    padding: 15px 0;
    cursor: pointer;
    text-align: center;
    font-weight: 800;
    font-size:20px;
    color: var(--pta-navy);
    z-index: 2;
}

.switch-btn.active { color: #fff; }

.slider {
    position: absolute;
    top: 6px; left: 6px;
    width: calc(50% - 6px); height: calc(100% - 12px);
    background: var(--pta-navy);
    border-radius: 50px;
    transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    z-index: 1;
}

.switch-container.instructor-active .slider { left: 50%; }

/* --- SECTION 5: HUD FEATURE CARDS (Student/Instructor) --- */
.content-section { display: none; animation: slideFade 0.5s ease forwards; }
.content-section.active { display: block; }

.pta-hud-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    padding: 40px 30px;
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
    text-align: left;border-radius: 10px;
    overflow: hidden;
}

.pta-hud-card::before {
    content: '';
    position: absolute;
    left: 0; top: 20%;
    height: 60%; width: 4px;
    background: var(--pta-gold);
}

.pta-hud-card:hover {
    transform: translateY(-10px);
    border-color: var(--pta-gold);
    box-shadow: 0 30px 60px rgba(0, 26, 53, 0.12);
}

.icon-box { font-size: 2.2rem; color: var(--pta-navy); margin-bottom: 25px; }
.pta-hud-card h5 { font-weight: 700; color: var(--pta-navy); text-transform: uppercase; margin-bottom: 15px; }
.feature-text { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }

.scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--pta-gold), transparent);
    opacity: 0;
}

.pta-hud-card:hover .scan-line { animation: scan 2s linear infinite; opacity: 1; }

/* --- SECTION 6: DODU INTRO BOX --- */
.dodu-saas-box {
    background: #fff;
    border-radius: 10px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.dodu-intro-badge {
    background: rgba(255, 193, 7, 0.1);
    color: var(--pta-navy);
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 700;
    border: 2px solid rgba(255, 193, 7, 0.5);
    display: inline-block;
    margin-bottom: 35px;
}

.dodu-saas-box h2 { font-size: 29px; font-weight: 700; color: var(--pta-navy); }
.highlight { color: var(--pta-gold); background: rgba(255, 193, 7, 0.05); padding: 0 10px; border-radius: 8px; }

/* --- SECTION 7: ORGANIC LISTING ROWS --- */
.pta-row-spacer { margin-bottom: 120px; }
.hud-shape-wrapper {
    position: relative;
    width: 250px; height: 250px;
    display: inline-flex; align-items: center; justify-content: center;
}

.organic-blob {
    position: absolute;
    inset: 0;
    
    border-radius: 30px;
}

.out-tab{ margin:0px 0px 100px 0px}
.section-icon { font-size: 90px; color: var(--pta-gold); z-index: 3; }

.btn-pta-nav {
    background-color: var(--pta-navy);
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 12px;
    transition: 0.3s;
}

.btn-pta-nav:hover { background-color: var(--pta-gold); color: var(--pta-navy); transform: translateY(-3px); }

/* --- SECTION 8: GET STARTED CTA --- */
.cta-box {
    background: linear-gradient(135deg, #042f60 0%, #0a192f 100%);
    padding: 50px 30px;
    color: #ffffff;
    margin-top: 120px;
}

.cta-icon { font-size: 3rem; color: var(--pta-gold); margin-bottom: 15px; }
.cta-title { font-size: 32px; font-weight: 800; color: #fff; }
.btn-pta-primary {
    background-color: var(--pta-gold);
    color: var(--pta-navy);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}

/* --- ANIMATIONS --- */
@keyframes scan { 0% { top: 0; } 100% { top: 100%; } }
@keyframes slideFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .switch-container { width:100%; }
    .pta-hud-card { padding: 30px 20px; }
    .cta-title { font-size: 26px; }
	.switch-btn{font-size: 10px;}
	.ai-hero-card{    padding: 10px 10px;}
	.hero-slogan{font-size: 10px;}
	.sub-heading{ text-align:center}
	.main-heading{font-size: 22px;}
	
}





















.content-col h3 {
    color: #042f60;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 28px;
}


.content-col p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}


.hud-shape-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}



.organic-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: 1;
    transition: all 0.5s ease;
}

.organic-blob::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.3) 100%);
    border-radius: 30px;
    z-index: 2;
}

.hud-shape-wrapper .bi-sliders {
    animation: iconFloat 4s ease-in-out infinite;
}
.hud-shape-wrapper .section-icon {
    position: relative;
    z-index: 3;
    font-size: 90px;
    color: #ffc107;
    background: transparent;
    padding: 0;
    margin: 0;
}













  :root {
            --pta-navy: #042f60;
            --pta-gold: #ffc107;
            --text-gray: #5a6d80;
            --bg-light: #f4f7fa;
        }

        body {
           
        }

        .pta-student-container {
           
            margin: 0 auto;
            background: #ffffff;
            border-radius: 10px;
            padding: 80px 50px;
            box-shadow: 0 40px 100px rgba(0, 45, 91, 0.06);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 45, 91, 0.03);
            text-align: center; margin-bottom:90px;width: 99%;
        }

        /* Large Background Watermark */
        .pta-student-container::before {
            content: "PTA";
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 280px;
            font-weight: 900;
            color: rgba(4, 47, 96, 0.02);
            pointer-events: none;
            letter-spacing: -15px;
        }

        /* --- Badge Styling --- */
        .pta-badge {
            background: rgba(255, 193, 7, 0.08);
            border: 1.5px solid var(--pta-gold);
            padding: 10px 25px;
            border-radius: 100px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--pta-navy);
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 35px;
            position: relative;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            
        }

        /* --- Main Heading --- */
        .pta-main-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--pta-navy);
            line-height: 1.15;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;font-size: 29px;
    font-weight: 700;
    color:#042f60;
        }

        .highlight-text {
            color: #ffc107;
           
            display: inline-block;
            padding: 0 5px; 
        }

        .pta-desc {
            font-size: 17px;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        /* --- Grid Layout --- */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            position: relative;
            z-index: 2;
        }

        .feature-box-new {
            background: #fff;
            border: 1px solid #eef2f6;
            padding: 45px 30px;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-align: left;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .feature-box-new:hover {
            transform: translateY(-12px);
            border-color: var(--pta-gold);
            box-shadow: 0 30px 60px rgba(0, 45, 91, 0.1);
        }

        /* Scanning Line Animation */
        .scan-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--pta-gold), transparent);
            opacity: 0;
        }

        .feature-box-new:hover .scan-bar {
            animation: scan 2.5s linear infinite;
            opacity: 1;
        }

        @keyframes scan {
            0% { top: 0; }
            100% { top: 100%; }
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #f8fafc;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--pta-navy);
            margin-bottom: 25px;
            transition: 0.3s;
            border: 1px solid #eef2f6;
        }

        .feature-box-new:hover .feature-icon {
            background: var(--pta-gold);
            color: #fff;
            border-color: var(--pta-gold);
        }

        /* Typography inside Box */
        .module-label {
            
            font-size: 11px;
            font-weight: 700;
            color: var(--pta-gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .feature-box-new h2 {
            font-size: 22px;
            font-weight: 800;
            color: var(--pta-navy);
            margin: 0 0 12px 0;
            line-height: 1.2; text-align:left;
            min-height: 52px; /* Uniform height for titles */
        }

        .feature-box-new p {
            font-size: 14.5px;
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
        }

        /* Brackets */
        .corner-bracket {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 3px solid var(--pta-gold);
            opacity: 0.15;
        }
        .tl { top: 25px; left: 25px; border-right: 0; border-bottom: 0; }
        .br { bottom: 25px; right: 25px; border-left: 0; border-top: 0; }

        @media (max-width: 992px) {
            .feature-grid { grid-template-columns: 1fr; }
            .pta-main-title { font-size:20px; }
            .feature-box-new h2 { min-height: auto; }
			.pta-desc{font-size: 13px;}
			.feature-box-new h2{font-size: 17px !important;}
			.pta-student-container{padding: 80px 20px;}
			.pta-hud-card h5{ font-size:14px;}
			.offset-1{margin-left:0px;}
		
        }
		
		
		
		
		
		
		
		
	   /* 1. Main Container - Consistent Height */
    #video-hero-section {
        position: relative;
        width: 100%;
        height: 80vh; /* Same height on all devices */
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        font-family: 'Inter', sans-serif;
    }

    /* 2. Background Video - Full Cover */
    #mainHeroVideo {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4; /* Dimmed for text readability */
    }

    /* 3. Overlay UI - Centered */
    .video-ui-overlay {
        position: relative;
        z-index: 10;
        text-align: center;
        padding: 20px;
        width: 100%;
        max-width: 800px;
    }

    .hud-tag {
        display: inline-block;
        color: #ffc107;
        font-family: 'JetBrains Mono', monospace;
        letter-spacing: 5px;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .main-heading {
        color: #ffffff;
        font-size: clamp(32px, 5vw, 56px); /* Responsive font size */
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .sub-heading {
        color: rgba(255, 255, 255, 0.7);
        font-size: clamp(14px, 2vw, 18px);
        margin-bottom: 40px;
    }

    /* 4. Play Button - Pulsing Animation */
    .play-btn-large {
        width: 90px;
        height: 90px;
        background: #ffffff;
        border: none;
        border-radius: 50%;
        font-size: 28px;
        color: #042f60;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        animation: pulseEffect 2s infinite;
    }

    @keyframes pulseEffect {
        0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
        70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    .play-btn-large:hover {
        background: #ffc107;
        transform: scale(1.1);
    }

    /* 5. HUD Corners (Brackets) */
    .hud-corners .c-tl, .hud-corners .c-br {
        position: absolute;
        width: 40px;
        height: 40px;
        border: 3px solid rgba(255, 193, 7, 0.4);
        pointer-events: none;
    }
    .c-tl { top: 40px; left: 40px; border-right: 0; border-bottom: 0; }
    .c-br { bottom: 40px; right: 40px; border-left: 0; border-top: 0; }

    /* Ensure mobile doesn't shrink elements too much */
    @media (max-width: 600px) {
        #video-hero-section { height: 60vh; }
        .play-btn-large { width: 70px; height: 70px; font-size: 22px; }
        .c-tl { top: 20px; left: 20px; }
        .c-br { bottom: 20px; right: 20px; }
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	:root {
            --pta-navy: #042f60;
            --pta-yellow: #ffc107;
            --text-main: #334155;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.8;
        }

        /* --- HERO SECTION --- */
        .about-hero {
            background-color: var(--pta-navy);
            /* Subtle Aviation Grid Background */
            background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            padding: 100px 0 160px 0;
            text-align: center;
            color: var(--white);
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 193, 7, 0.15);
            color: var(--pta-yellow);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 193, 7, 0.2);margin-top: 60px;
        }

        .about-hero h1 {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 0; color:#fff
        }

        /* --- OVERLAPPING INTRO STORY CARD --- */
        .story-container {
            margin-top: -100px;
            position: relative;
            z-index: 10;
            margin-bottom: 80px;border-radius: 20px 20px 0px 0px;
        }
        
        .story-card {
            background: var(--white);
            border-radius: 24px;
            padding: 50px 60px;
            box-shadow: 0 20px 40px rgba(4, 47, 96, 0.08);
            border: 1px solid #e2e8f0;
            text-align: center;
        }

        .story-card p {
            font-size: 17px;
            color: var(--text-light);
            margin-bottom: 20px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .story-card .highlight {
            display: inline-block;
            font-size: 20px;
            font-weight: 700;
            color: var(--pta-navy);
            margin-top: 20px;
            background: linear-gradient(120deg, rgba(255, 193, 7, 0.2) 0%, transparent 100%);
            padding: 5px 15px;
            border-left: 4px solid var(--pta-yellow);
            border-radius: 4px;
        }

        /* --- 4 PILLARS / FEATURES GRID --- */
        .features-grid {
            padding-bottom: 100px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(4, 47, 96, 0.05);
            border-color: #cbd5e1;
        }

        /* Accent top border on hover */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: var(--pta-yellow);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .feature-card:hover::before { transform: scaleX(1); }

        .f-icon {
            width: 60px; height: 60px;
            background: rgba(4, 47, 96, 0.05);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; color: var(--pta-navy);
            margin-bottom: 25px; transition: 0.3s;
        }
        .feature-card:hover .f-icon {
            background: var(--pta-navy); color: var(--pta-yellow);
            transform: scale(1.1) rotate(-5deg);
        }

        .feature-card h3 {
            font-size: 22px; font-weight: 700; color: var(--pta-navy); margin-bottom: 15px;
        }
        .feature-card p {
            font-size: 15px; color: var(--text-light); margin-bottom: 15px;
        }
        .feature-card p:last-child { margin-bottom: 0; }
        
        .fw-bold-dark { font-weight: 600; color: var(--pta-navy); }

        /* --- MISSION STATEMENT --- */
        .mission-section {
            background: linear-gradient(135deg, var(--pta-navy) 0%, #0a192f 100%);
            padding: 80px 0;
            text-align: center;
            color: var(--white);
            position: relative;
        }
        
        .mission-icon {
            font-size: 40px; color: var(--pta-yellow); margin-bottom: 20px;
        }

        .mission-section h2 { font-size: 32px; font-weight: 600; margin-bottom: 10px; color:#fff }
        .mission-section h5 { font-size: 18px; font-weight: 400; color: #cbd5e1; margin-bottom: 30px; }
        
        .mission-text {
            font-size: 26px; font-weight: 600; line-height: 1.6;
            max-width: 900px; margin: 0 auto; color: var(--pta-yellow);
            font-style: italic;
        }

        /* --- BOTTOM CTA --- */
        .cta-section {
            background: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 36px; font-weight: 800; color: var(--pta-navy); margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 18px; color: var(--text-light); margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto;
        }

        .btn-pta {
            background-color: var(--pta-yellow); color: var(--pta-navy);
            padding: 16px 40px; border-radius: 50px; font-size: 16px; font-weight: 700;
            text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
            transition: all 0.3s ease; border: 2px solid transparent;
        }
        .btn-pta:hover {
            background-color: transparent; border-color: var(--pta-navy); color: var(--pta-navy);
            transform: translateY(-3px);
        }

        @media (max-width: 991px) {
            .about-hero { padding: 80px 0 120px 0; }
            .story-card { padding: 40px 25px; }
            .mission-text { font-size: 20px; }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		    
        .main-container {
            text-align: center; background:#042f60;padding: 140px 0px 90px 0px;
           
            width: 100%;
        }

        .header-section {
            margin-bottom: 40px;
        }

        .header-section h1 {
            color: #fff;
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .header-section p {
            color: #fff;
            font-size: 16px;
        }

        /* Cards Layout */
        .cards-wrapper {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .role-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px 30px;
            width: 350px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .role-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(4, 47, 96, 0.15);
            border-color: #007AFF;
        }

        .icon-box {
            width: 80px;
            height: 80px;
            background: #f1f5f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .role-card:hover .icon-box {
            background: #ffc107;
            color: #fff;
        }

        .icon-box i {
            font-size: 32px;
            color: #042f60;
        }

        .role-card:hover .icon-box i {
            color: #fff;
        }

        .role-card h2 {
            color: #042f60;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .role-card p {
            color: #64748b;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 10px;
            text-align: center;
        }

        /* Buttons Styling */
        .btn {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-student {
            background: #042f60;
            color: #fff;
        }

        .btn-student:hover {
          background: #042f60;
            color: #fff;
        }

        .btn-teacher {
            background: #ffc107;
            color: #042f60;
        }

        .btn-teacher:hover {
            background: #ffca2c;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .role-card {
                width: 100%;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		 body { font-family: 'Poppins', sans-serif; background-color: #f4f7f9; color: #1e293b; overflow-x: hidden; scroll-behavior: smooth; }

    /* --- HERO HEADER --- */
    .ins-hero { background: #042f60; padding: 100px 0 80px; text-align: center; color: white; position: relative; }
    .ins-hero h1 { font-size: 50px; font-weight: 500; margin-bottom: 15px; color: #fff !important; }
    .ins-hero h4 { font-size: 22px; font-weight: 600; color: #ffc107; margin-bottom: 25px; }
    .ins-hero p { font-size: 16px; color: #cbd5e1; line-height: 1.8; max-width: 800px; margin: 0 auto; }

    /* --- HORIZONTAL ROUTE MAP (Top Menu) --- */
    .route-map-container {
        background: white; border-radius: 16px; padding: 40px;
        box-shadow: 0 10px 40px rgba(4, 47, 96, 0.08); margin: -40px auto 80px;
        max-width: 1100px; position: relative; z-index: 10;
    }
    .route-track { display: flex; align-items: center; justify-content: space-between; position: relative; }
    .route-waypoint { text-align: center; position: relative; z-index: 1; width: 120px; cursor: pointer; transition: transform 0.3s; }
    .route-icon {
        width: 70px; height: 70px; background: #ffffff; border: 3px solid #042f60; color: #042f60;
        font-size: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
        margin: 0 auto 15px; transition: 0.3s; box-shadow: 0 0 0 5px white;
    }
    .route-waypoint:hover { transform: translateY(-5px); }
    .route-waypoint:hover .route-icon { background: #ffc107; border-color: #ffc107; color: #042f60; }
    .route-label { font-size: 13px; font-weight: 700; color: #1e293b; }

    /* --- VERTICAL TIMELINE --- */
    .timeline-section { position: relative; padding: 40px 0; max-width: 1200px; margin: 0 auto; }
    .timeline-section::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #e2e8f0; transform: translateX(-50%); z-index: 1; }
    .timeline-progress-line { position: absolute; top: 0; left: 50%; width: 4px; background: #ffc107; transform: translateX(-50%); height: 0%; z-index: 2; box-shadow: 0 0 10px rgba(255, 193, 7, 0.5); }
    
    #flight-plane { position: absolute; top: 0; left: 50%; transform: translateX(-54%) translateY(-50%) rotate(90deg); font-size: 32px; color: #042f60; z-index:2; transition: top 0.1s linear; }

    .timeline-step { margin-bottom: 100px; position: relative; z-index: 5; }
  .step-badge {
        position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 60px; height: 60px; background: #ffffff; color: #042f60;
        border: 4px solid #e2e8f0; border-radius: 50%; font-size: 20px; font-weight: 800;
        display: flex; align-items: center; justify-content: center; z-index: 5;top: 79px;
    }
    .step-badge.active { background: #ffc107; border-color: #ffffff; color: #042f60; transform: translate(-50%, -50%) scale(1.1); }

    .step-content-card { background: #ffffff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; }
    .step-title { font-size: 24px; font-weight:600; color: #042f60; margin-bottom: 20px; }
    .step-list { list-style: none; padding: 0; margin: 20px 0; }
    .step-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color:#334155;}
    .step-list li i { color: #10b981; margin-top: 4px; }

    /* Tablet Mockup */
    .tablet-mockup { background: #1e293b; padding: 12px; border-radius: 30px; box-shadow: 0 25px 50px rgba(4, 47, 96, 0.15); transition: 0.4s; }
    .tablet-inner { background: #eaeff5; border-radius: 18px; overflow: hidden; height: 350px; }
    .tablet-inner img {
    object-fit: cover;
    height: 100%;
  
    max-width: max-content;}

    /* CTA */
    .ins-cta { background: #042f60; padding: 80px 0; text-align: center; color: white; }
    .btn-cta-main { background: #ffc107; color: #042f60; padding: 18px 40px; border-radius: 50px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; }
	
	
	




















 :root {
            --pta-navy: #003366;
            --pta-gold: #ffc107;
            --pta-gold-light: #fff3cd;
            --pta-text: #1a202c;
            --pta-bg: #fdfdfd;
        }

      

        /* --- HERO SECTION --- */
        .hero-section {
            background-color: var(--pta-navy);
            background-image: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 20, 40, 0.98) 100%);
            color: white;
            padding: 80px 0 140px;
            text-align: center;
            border-bottom: 6px solid var(--pta-gold);
        }

           .hero-section-about{ margin-bottom:0px!important;}
        .hero-section h1 {
           font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
        }

        .hero-section .lead {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* --- FEATURE BLOCKS --- */
        .top-container {
          
            position: relative;
            z-index: 10;
        }

        .glass-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0, 51, 102, 0.1);
            border-top: 4px solid var(--pta-gold);
            transition: 0.3s;
        }

        .icon-circle-new {
            width: 60px;
            height: 60px;
            background-color: var(--pta-navy);
            color: var(--pta-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 25px;
        }

        /* --- PRICING GRID --- */
        .price-card {
            background: white;
            border: 2px solid #eaedf2;
            border-radius: 25px;
            padding: 45px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
        }

        .price-card:hover {
            border-color: var(--pta-gold);
            transform: translateY(-10px);
        }

        .price-card.featured {
            background-color: var(--pta-navy);
            color: white;
            border-color: var(--pta-gold);
            position: relative;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--pta-gold);
            color: var(--pta-navy);
            padding: 5px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.75rem;
            text-transform: uppercase;
        }

        .pkg-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 15px; }
        .pkg-credits { font-size: 3.5rem; font-weight: 800; line-height: 1; }
        .pkg-credits span { font-size: 1rem; opacity: 0.7; }
        .pkg-price { font-size: 1.4rem; font-weight: 600; margin-bottom: 25px; }

        .bonus-box {
            background: var(--pta-gold-light);
            color: #856404;
            padding: 8px 15px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 30px;
        }

        .featured .bonus-box {
            background: rgba(255, 193, 7, 0.2);
            color: var(--pta-gold);
        }

        /* --- FAQ SECTION --- */
        .faq-item {
            background: white;
            border: 1px solid #edf2f7;
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .accordion-button {
            padding: 20px 25px;
            font-weight: 700;
            color: var(--pta-navy) !important;
            background: white !important;
        }

        .accordion-button:not(.collapsed) {
            box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
            background: #f8faff !important;
        }

        .math-row {
            padding: 15px 20px;
            background: #f1f5f9;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 700;
            border-left: 4px solid var(--pta-navy);
        }

        .btn-pta {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .btn-gold {
            background-color: var(--pta-gold);
            color: var(--pta-navy);
            border: none;
        }

        .btn-gold:hover {
            background-color: #e5ac00;
            transform: scale(1.05);
        }

        .btn-outline-navy {
            border: 2px solid var(--pta-navy);
            color: var(--pta-navy);
        }
		.hero-section {
    padding-top: 140px;
    margin-bottom: 120px;
    padding-bottom: 90px;
}
		
		h2{font-size: 2rem;}
		h4 {
    font-size:1.4rem;
}

.mading-bot{ margin-bottom:100px;}














.button-auto{ width:50%; margin: auto;}

 #pta-refer-earn-page {
            font-family: 'Inter', 'Segoe UI', Roboto, sans-serif !important;
            color: #333 !important;
            
            line-height: 1.6 !important;
            max-width: 100% !important;
            --pta-navy: #002d5b;
            --pta-gold: #ffc107;
            --pta-light: #f9f9f9;
        }

        #pta-refer-earn-page .section-block {
            padding: 70px 20px !important;
            border-bottom: 1px solid #eee !important;
           
            margin: 0 auto !important;padding-bottom: 0px !important; margin-top:30px!important;
        }

        #pta-refer-earn-page h1, 
        #pta-refer-earn-page h2, 
        #pta-refer-earn-page h3 {
            
            font-weight: 700 !important;
            text-align: center !important;
            margin-bottom: 25px !important; font-size:20px;
        }

        /* Hero Styling */
        #pta-refer-earn-page .hero-intro {
            text-align: center !important;
            
            padding:0px 20px !important;
            border-radius: 20px !important;
            margin-bottom: 40px !important;padding-bottom: 0px !important;
        }

        /* Icon Styles */
        #pta-refer-earn-page .main-icon {
            font-size: 3.5rem !important;
            color: var(--pta-gold) !important;
            display: block !important;
            text-align: center !important;
            margin-bottom: 15px !important;
        }

        /* Steps Layout */
        #pta-refer-earn-page .step-container {
            text-align: center !important;
            margin-bottom: 60px !important; position:relative;
        }

        #pta-refer-earn-page .step-badge {
            width: 45px !important;
            height: 45px !important;
            background: var(--pta-navy) !important;
            color: white !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            margin: 0 auto 20px !important;
            font-weight: bold !important;
        }

        /* Value Highlight Box */
        #pta-refer-earn-page .value-box {
            background: #fff !important;
            border: 2px solid var(--pta-gold) !important;
            border-radius: 20px !important;
            padding: 40px !important;
            margin: 40px 0 !important;
        }

        #pta-refer-earn-page .tick-icon {
            color: #28a745 !important;
            margin-right: 12px !important;
            font-size: 1.3rem !important;
        }

        /* Buttons */
        #pta-refer-earn-page .cta-button {
            padding: 16px 35px !important;
            font-size: 1.1rem !important;
            font-weight: 700 !important;
            border-radius: 12px !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            transition: 0.3s !important;
            margin: 10px !important;
            border: none !important;
        }

        #pta-refer-earn-page .btn-gold { background: var(--pta-gold) !important; color: var(--pta-navy) !important; }
        #pta-refer-earn-page .btn-dark { background: #333 !important; color: #fff !important; }

        #pta-refer-earn-page .btn-gold:hover, 
        #pta-refer-earn-page .btn-dark:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        }

        /* Fair Use Policy Area */
        #pta-refer-earn-page .policy-area {
            background-color: #f1f3f5 !important;
            padding: 30px !important;
            border-radius: 15px !important;
            font-size: 0.9rem !important;
            color: #666 !important; overflow:hidden;
        }
		
		.toparea{padding: 60px 0 !important;
    background-color: #002d5b !important;
    text-align: center !important;
    padding-top: 136px !important;padding-top: 136px !important;padding: 60px 0 !important;}
	#pta-refer-earn-page .toparea h1{ color:#fff!important; font-size:50px!important; font-weight:500!important;}
	.toparea p{ color:#fff!important}
	
	
	  /* Section Specific Styles */
    #pta-worth-section {
        padding: 60px 20px !important;
        background: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
    }

    #pta-worth-section .worth-container {
        max-width: 1000px !important;
        margin: 0 auto !important;
        background: #fdfdfd !important;
        border: 2px solid #ffc107 !important;
        border-radius: 30px !important;
        padding: 50px 30px !important;
        box-shadow: 0 15px 40px rgba(255, 193, 7, 0.1) !important;
        position: relative !important;
    }

    /* Top Badge */
    #pta-worth-section .worth-badge {
        position: absolute !important;
        top: -25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: #002d5b !important;
        color: #ffc107 !important;
        padding: 10px 30px !important;
        border-radius: 50px !important;
        font-weight: 800 !important;
        font-size: 1.2rem !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    #pta-worth-section .worth-header {
        text-align: center !important;
        margin-bottom: 40px !important;
    }

    #pta-worth-section h3 {
        color: #002d5b !important;
        font-weight: 800 !important;
        font-size: 2rem !important;
    }

    /* Cards Grid */
    #pta-worth-section .worth-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 20px !important;
        margin-bottom: 35px !important;
    }

    #pta-worth-section .worth-card {
        background: #ffffff !important;
        border: 1px solid #eee !important;
        border-radius: 20px !important;
        padding: 25px 15px !important;
        text-align: center !important;
        transition: 0.3s !important;
    }

    #pta-worth-section .worth-card:hover {
        border-color: #ffc107 !important;
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }

    #pta-worth-section .card-icon {
        font-size: 2.2rem !important;
        color: #ffc107 !important;
        margin-bottom: 15px !important;
        display: block !important;
    }

    #pta-worth-section .card-text {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #444 !important;
        line-height: 1.4 !important;
    }

    #pta-worth-section .worth-footer {
        text-align: center !important;
        background: #f8f9fa !important;
        padding: 20px !important;
        border-radius: 15px !important;
        border: 1px dashed #ccc !important;
    }

    #pta-worth-section .footer-text {
        font-weight: 700 !important;
        color: #002d5b !important;
        margin-bottom: 0 !important;
        font-size: 1.1rem !important;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        #pta-worth-section .worth-grid {  overflow:hidden; width:100%; }
		#pta-refer-earn-page .section-block{overflow: hidden;padding-bottom: 30px !important;}
		#pta-worth-section h3{margin-top: 30px;}
		#pta-worth-section .worth-footer{ overflow:hidden;}
		#pta-refer-earn-page .hero-intro{padding-top: 30px !important;}
		#pta-worth-section h3 {
    
    font-size: 29px;
}

#pta-worth-section{padding:0px 0px !important;}





.step-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.step-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #334155;
}

.step-list li i {
    color: #10b981;
    margin-top: 4px;
}














   #hero-dual-hud {
        position: relative;
        width: 100%;
        height: 70vh;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    #heroVideo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6; /* Dimmed background */
        transition: 0.5s;
    }

    /* Watch our video here - Overlay Styling */
    .video-promo-overlay {
        position: absolute;
        z-index: 20;
        text-align: center;
        color: white;
        font-family: 'Inter', sans-serif;
    }

    .video-promo-overlay h3 {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #ffc107; /* PTA Gold */
        margin-bottom: 10px;
    }

    .video-promo-overlay h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 30px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

    /* Play Button Animation */
    .play-trigger-btn {
        width: 80px;
        height: 80px;
        background: white;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        color: #042f60;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        animation: pulsePlay 2s infinite;
    }

    @keyframes pulsePlay {
        0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
        70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    .play-trigger-btn:hover {
        transform: scale(1.1);
        background: #ffc107;
    }

    @media (max-width: 768px) {
        #hero-dual-hud { height: 50vh; }
        .video-promo-overlay h1 { font-size: 28px; }
        .play-trigger-btn { width: 60px; height: 60px; font-size: 18px; }
    }

    .left-side-gradient {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 1;
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/* Only applies to screens smaller than 768px (Mobile) */
@media (max-width: 767px) {
    #intel .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #intel .row {
        display: flex !important;
        flex-wrap: nowrap !important; /* Forces cards into a single line */
        overflow-x: auto !important; /* Enables horizontal swiping */
        scroll-snap-type: x mandatory; /* Makes cards "snap" into the center */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
        padding-bottom: 30px; /* Space for breathing room */
        gap: 0; /* Managed by column padding */
    }

    /* Hide the ugly scrollbar while keeping functionality */
    #intel .row::-webkit-scrollbar {
        display: none;
    }

    #intel .col-12 {
        flex: 0 0 88% !important; /* Each card takes 88% width so the next is visible */
        max-width: 88% !important;
        scroll-snap-align: center; /* Snaps the card to the middle of the screen */
        margin-right: 10px;
    }

    #intel .reveal-card {
        height: 100%; /* Ensures all cards are equal height */
        margin-bottom: 0;
        opacity: 1 !important; /* Ensure they are visible */
        transform: none !important;
        padding: 30px 20px;
    }

    #intel h3 {
        font-size: 1.25rem; /* Slightly smaller text for mobile */
    }

    #intel p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}





/* =========================================
   S25 & HIGH-END MODERN MOBILE (Tall Screens)
   ========================================= */
@media screen and (max-width: 480px) {
    
    /* 1. Intel Section (Horizontal Cards) */
    #intel .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        padding-left: 20px; /* S25 ke edges se thoda space */
        padding-right: 20px;
        padding-bottom: 40px;
        gap: 15px; /* Cards ke beech ka gap */
    }

    #intel .row::-webkit-scrollbar { display: none; }

    #intel .col-12 {
        flex: 0 0 85% !important; /* S25 par 85% card width perfect hai */
        max-width: 85% !important;
        scroll-snap-align: center;
        padding: 0 !important; /* Row gap handles spacing */
    }

    #intel .reveal-card {
        min-height: 420px; /* Tall screen par card ko stretch hone se rokne ke liye */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 35px 25px !important;
        border-radius: 25px !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
    }

    #intel h3 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    #intel p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: rgba(255,255,255,0.7) !important;
    }

    /* 2. S25 Specific Icon Scaling (How it works section) */
    .hud-shape-wrapper {
        width: 160px !important;
        height: 160px !important;
    }

    .hud-shape-wrapper i {
        font-size: 55px !important;
    }

    /* 3. Button Polish for S25 */
    .btn-pta-nav, .btn-pta-primary {
        padding: 18px 25px !important; /* Bada touch target */
        font-size: 16px !important;
        letter-spacing: 0.5px;
        border-radius: 15px !important;
    }
}








/* Only applies to screens smaller than 768px (Mobile) */
@media (max-width: 767px) {
    .how-work-area-box {
        padding: 40px 0;
    }

    /* Remove the 120px gap and the 1-column offset from desktop */
    .pta-row-spacer {
        margin-bottom: 70px !important;
    }

    .content-col.offset-1 {
        margin-left: 0 !important;
        text-align: center !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Center the headings and paragraphs */
    .content-col h3 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .content-col p {
        font-size: 15px !important;
        margin-bottom: 25px !important;
    }

    /* Align the button to the center */
    .btn-pta-nav {
        margin: 0 auto;
        display: inline-flex;
    }

    /* Shrink the HUD Icon area so it's not too huge on small screens */
    .hud-shape-wrapper {
        width: 180px !important;
        height: 180px !important;
        margin-top: 30px !important;
    }

    /* Resize the large background icon */
    .hud-shape-wrapper i {
        font-size: 60px !important;
    }

    /* Make the blob (yellow background) fit the new smaller wrapper */
    .organic-blob::after {
        width: 70% !important;
        height: 70% !important;
        top: 15% !important;
        left: 15% !important;
    }

    /* Force the icon container to always stay below the text on mobile */
    .row.align-items-center {
        flex-direction: column;
    }
}













@media (max-width: 767px) {
    /* 1. Reduce the massive top margin from desktop (120px to 60px) */
    .cta-box {
        margin-top: 60px !important;
        padding: 40px 20px !important;
     
       
       
    }

    /* 2. Scale down the Rocket icon */
    .cta-icon {
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
    }

    /* 3. Adjust the Title (prevent awkward word breaks) */
    .cta-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    /* 4. Adjust the Description text */
    .cta-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        padding: 0 10px; text-align:center
    }

    /* 5. Make the Button full-width or larger for easier tapping */
    .btn-pta-primary {
        width: 100%;
        display: flex !important;
        justify-content: center;
        padding: 16px 20px !important;
        font-size: 16px !important;
    }
    
    /* Center the button container */
    .cta-buttons {
        width: 100%;
    }
	.dodu-saas-box h2{ font-size:20px!important;}
	.dodu-saas-box{padding: 70px 20px;}
	.dodu-intro-badge{ font-size:12px!important;}
	.main-heading{font-size: clamp(25px, 5vw, 56px)!important;}
}

@media screen and (max-width: 767px) {
    #intel .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden;
    }
 
    #intel .row {
        display: flex !important;
        flex-wrap: nowrap !important; /* Sabko ek line mein rakhta hai */
        overflow-x: auto !important; /* Scroll enable karta hai */
        /* IMPORTANT: justify-content ko flex-start karna zaroori hai 
           taaki pehla card left side se shuru ho */
        justify-content: flex-start !important; 
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* Pehle card ke liye left padding aur aakhri card ke baad right space */
        padding-left: 20px !important;
        padding-right: 40px !important; 
        padding-bottom: 30px;
        margin: 0 !important;
    }
 
    #intel .row::-webkit-scrollbar {
        display: none;
    }
 
    #intel .col-12 {
        /* Sabhi 3 cards ko barabar size deta hai */
        flex: 0 0 85% !important; 
        max-width: 85% !important;
        width: 85% !important;
        scroll-snap-align: center;
        padding: 0 10px !important;
        margin: 0 !important;
        display: block !important;
    }
 
    /* Force visibility: Pehla card ya koi bhi animation hidden na rahe */
    #intel .reveal-card {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column;
        height: 100%;
        min-height: 400px; /* Sabka size ek jaisa */
    }
 
    /* Brackets ko mobile par fixed size dein */
    .hud-corner-tl, .hud-corner-br {
        width: 20px !important;
        height: 20px !important;
    }
}



