.elementor-296 .elementor-element.elementor-element-e772583{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-296 .elementor-element.elementor-element-e772583.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-296 .elementor-element.elementor-element-10c0d6a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #34495e;
            background: #ffffff !important;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Enhanced Header with Astra Colors */
        .header {
            background: linear-gradient(135deg, rgba(235, 31, 39, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%), 
                        url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: drift 20s infinite linear;
        }

        @keyframes drift {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-50px) translateY(-50px); }
        }

        .logo-section {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 2rem;
        }

        .logo-visual {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .title-main {
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
            color: #ffffff !important;
        }

        .subtitle-visual {
            font-size: 1.3rem;
            margin: 1rem 0;
            position: relative;
            z-index: 2;
            background: rgba(255,255,255,0.1);
            padding: 1rem 2rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-description {
            font-size: 1.4rem;
            margin: 2rem 0;
            line-height: 1.6;
        }

        /* CTA Button Styles */
        .cta-button {
            display: inline-block;
            background-color: #eb1f27;
            color: #ffffff !important;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 1rem 0.5rem;
            box-shadow: 0 4px 15px rgba(235, 31, 39, 0.3);
        }

        .cta-button:hover {
            background-color: blue;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
        }

        .cta-primary {
            background-color: #eb1f27;
            font-size: 1.2rem;
            padding: 18px 40px;
        }

        .cta-secondary {
            background-color: transparent;
            border: 2px solid #ffffff !important;
            color: #ffffff !important;
        }

        .cta-secondary:hover {
            background-color: #ffffff !important;
            color: #eb1f27;
        }       
        

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #ffffff !important;
            margin: 5% auto;
            padding: 0;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .modal-header {
            background-color: #eb1f27;
            color: #ffffff !important;
            padding: 1.5rem 2rem;
            border-radius: 10px 10px 0 0;
            position: relative;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0;
        }

        .close {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #ffffff !important;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .close:hover {
            opacity: 0.7;
        }

        .modal-body {
            padding: 2rem;
        }

        .shortcode-container {
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            
        }
        .popup-form {
            width: 100%;
            text-align: left;
        }

        /* Visual Elements Throughout */
        .decorative-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
        .floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
        .floating-icon:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 1s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Enhanced Why Choose Section with Astra Colors */
        .why-choose {
            padding: 4rem 0;
            background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), 
                        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, rgba(235, 31, 39, 0.1) 0%, transparent 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-weight: bold;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #eb1f27;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: #34495e;
            background: rgba(235, 31, 39, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid #eb1f27;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        .feature-card {
            background: #ffffff !important;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid #e0e0e0;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: #eb1f27;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #eb1f27;
        }

        .feature-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 4px solid #eb1f27;
        }

        .feature-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-weight: bold;
        }

        .feature-description {
            color: #34495e;
            line-height: 1.6;
        }

        /* Visual Program Progression with Astra Colors */
        .programs {
            padding: 4rem 0;
            background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(233, 236, 239, 0.95)), 
                        url('https://images.unsplash.com/photo-1544717297-fa95b6ee9643?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .progression-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 2rem 0;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .progression-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .step-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        .step-circle.step1 {
            background: linear-gradient(135deg, #eb1f27, #ff4757);
        }

        .step-circle.step2 {
            background: linear-gradient(135deg, #2c3e50, #3498db);
        }

        .step-circle.step3 {
            background: linear-gradient(135deg, #eb1f27, #2c3e50);
        }

        .step-label {
            margin-top: 1rem;
            font-weight: bold;
            text-align: center;
            max-width: 150px;
            color: #2c3e50;
        }

        .progression-arrow {
            font-size: 2rem;
            color: #eb1f27;
            margin: 0 1rem;
        }

        .program-section {
            background: #ffffff !important;
            margin: 2rem 0;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            border: 1px solid #e0e0e0;
        }

        .program-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            background-size: 50px 50px;
            background-image: 
                radial-gradient(circle, #eb1f27 2px, transparent 2px);
        }

        .program-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .program-image {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            object-fit: cover;
            border: 3px solid #eb1f27;
        }

        .program-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .skills-visual {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .skill-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(235, 31, 39, 0.05);
            border-radius: 10px;
            border-left: 4px solid #eb1f27;
        }

        .skill-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #eb1f27, #2c3e50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        /* Enhanced Quality Section with Astra Colors */
        .quality {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(235, 31, 39, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%), 
                        url('https://images.unsplash.com/photo-1509062522246-3755977927d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .quality::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0.1" /><stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad)"/><circle cx="800" cy="800" r="400" fill="url(%23grad)"/></svg>') no-repeat center center;
            background-size: cover;
        }

        .quality-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .quality-visual {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin: 2rem 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .quality-badge {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .badge-icon {
            font-size: 2.5rem;
        }

        .badge-text {
            font-weight: bold;
        }

        /* Visual Contact Section with Astra Colors */
        .contact {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(235, 31, 39, 0.9) 100%), 
                        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .contact-visual {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }

        .contact-card {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #ffffff !important;
        }

        .contact-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .cta-visual {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background-color: #eb1f27;
            color: #ffffff !important;
            padding: 1.5rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(235, 31, 39, 0.3);
            margin: 2rem 0;
        }

        .cta-visual:hover {
            background-color: #2c3e50;
            color: #ffffff !important;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(44, 62, 80, 0.4);
        }

        .cta-icon {
            font-size: 1.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Student Success Visual Gallery - 6 cards in 2 rows */
        .success-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .student-achievement {
            background: #ffffff !important;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }

        .student-achievement:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border-color: #eb1f27;
        }

        .student-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid #eb1f27;
        }

        .achievement-badge {
            background: #eb1f27;
            color: #ffffff !important;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .title-main {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .skills-visual {
                grid-template-columns: 1fr;
            }
            
            .quality-visual {
                grid-template-columns: 1fr;
            }
            
            .contact-visual {
                grid-template-columns: 1fr;
            }
            
            .success-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .progression-visual {
                flex-direction: column;
            }
            
            .progression-arrow {
                transform: rotate(90deg);
            }
            
            .modal-content {
                margin: 10% auto;
                width: 95%;
            }
        }

        @media (max-width: 480px) {
            .success-gallery {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */