.elementor-1638 .elementor-element.elementor-element-79bc063{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-702b0a4 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --light-bg: #f5f5f5;
            --emerald: #50c878;
            --emerald-dark: #3da85f;
            --firebrick: #b22222;
            --dark-slate: #2c3e50;
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --gray-medium: #6c757d;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif !important;
            color: var(--dark-slate) !important;
            line-height: 1.6 !important;
            overflow-x: hidden !important;
        }

        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif !important;
            font-weight: 600 !important;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.visible {
            animation: fadeInUp 0.9s ease forwards;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--emerald) 0%, var(--firebrick) 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            font-weight: 700 !important;
        }

        .highlight-emerald {
            color: var(--emerald) !important;
            font-weight: 600 !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(80, 200, 120, 0.1) 0%, rgba(178, 34, 34, 0.1) 100%);
            padding: 1.2rem 2rem 0 2rem;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.5rem !important;
            line-height: 1.3 !important;
            margin-bottom: 1.5rem !important;
            color: var(--dark-slate) !important;
            text-transform: capitalize !important;
        }

        .hero-content p {
            font-size: 1.15rem !important;
            color: var(--gray-medium) !important;
            font-style: italic !important;
        }

        .hero-image {
            text-align: center;
            margin-bottom: 0;
        }

        .hero-image img {
            max-width: 100%;
            width: 350px;
            display: block;
            margin: 0 auto;
        }

        .hero-credentials {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .credential-badge {
            background: var(--white);
            padding: 0.8rem 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1.5px solid var(--emerald);
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .credential-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(80, 200, 120, 0.25);
            border-color: var(--firebrick);
        }

        .credential-badge h3 {
            font-size: 1.4rem !important;
            color: var(--emerald) !important;
            margin-bottom: 0.2rem !important;
            font-weight: 700 !important;
        }

        .credential-badge p {
            font-size: 0.8rem !important;
            color: var(--gray-medium) !important;
            margin: 0 !important;
            line-height: 1.3 !important;
        }

        /* Section Styles */
        section {
            padding: 3rem 2rem;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.3rem !important;
            margin-bottom: 2rem !important;
            color: var(--dark-slate) !important;
            text-transform: capitalize !important;
            text-align: center !important;
        }

        /* My Story Section - Updated Design WITHOUT Timeline */
        .story-section {
            background: var(--white);
            padding: 3rem 2rem !important;
        }

        .story-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .story-cards {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }

        .story-card-wrapper {
            position: relative;
            width: 100%;
        }

        .story-card {
            background: var(--light-bg);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            transition: background 0.4s ease;
        }

        .story-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(80, 200, 120, 0.3);
        }

        .story-card h3 {
            font-size: 1.8rem !important;
            color: var(--emerald) !important;
            margin-bottom: 1.5rem !important;
            transition: color 0.4s ease !important;
        }

        .story-card::before {
            transition: background 0.4s ease;
        }

        /* Card 1: Green heading + Green left bar */
        .story-card:nth-child(1)::before {
            background: var(--emerald);
        }

        .story-card:nth-child(1):hover h3 {
            color: var(--firebrick) !important;
        }

        .story-card:nth-child(1):hover::before {
            background: var(--firebrick);
        }

        /* Card 2: Red heading + Red left bar */
        .story-card:nth-child(2) h3 {
            color: var(--firebrick) !important;
        }

        .story-card:nth-child(2)::before {
            background: var(--firebrick);
        }

        .story-card:nth-child(2):hover h3 {
            color: var(--emerald) !important;
        }

        .story-card:nth-child(2):hover::before {
            background: var(--emerald);
        }

        /* Card 3: Green heading + Green left bar */
        .story-card:nth-child(3)::before {
            background: var(--emerald);
        }

        .story-card:nth-child(3):hover h3 {
            color: var(--firebrick) !important;
        }

        .story-card:nth-child(3):hover::before {
            background: var(--firebrick);
        }

        .story-card p {
            color: var(--gray-medium) !important;
            font-size: 1.05rem !important;
            line-height: 1.8 !important;
            margin-bottom: 1rem !important;
        }

        .story-card p strong {
            color: var(--dark-slate) !important;
            font-weight: 600 !important;
        }

        /* Philosophy Section */
        .philosophy-section {
            background: var(--light-bg);
        }

        .philosophy-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
            margin-top: 2rem;
        }

        .philosophy-left {
            display: flex;
            flex-direction: column;
        }

        .philosophy-image {
            margin-bottom: 1.5rem;
        }

        .philosophy-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
            border: 3px solid var(--emerald);
            transition: all 0.4s ease;
        }

        .philosophy-image img:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 50px rgba(80, 200, 120, 0.4);
        }

        .philosophy-intro {
            color: var(--gray-medium) !important;
            font-size: 1.1rem !important;
            line-height: 1.8 !important;
        }

        .philosophy-statement {
            max-width: 80%;
            margin: 3rem auto 0;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(80, 200, 120, 0.1) 0%, rgba(178, 34, 34, 0.1) 100%);
            border-radius: 20px;
            border: 2px solid var(--emerald);
        }

        .philosophy-statement p {
            font-size: 1.15rem !important;
            color: var(--gray-medium) !important;
            line-height: 1.8 !important;
            margin: 0 !important;
        }

        .philosophy-statement strong {
            color: var(--dark-slate) !important;
        }

        .philosophy-text h4 {
            font-size: 1.3rem !important;
            color: var(--dark-slate) !important;
            margin-bottom: 0.8rem !important;
        }

        .philosophy-text ul {
            list-style: none;
            margin-top: 0.5rem;
        }

        .philosophy-text ul li {
            padding: 0.6rem 0;
            padding-left: 2.5rem;
            position: relative;
            color: var(--gray-medium) !important;
            font-size: 1.05rem !important;
        }

        .philosophy-text ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--emerald) !important;
            font-weight: bold !important;
            font-size: 1.4rem;
        }

        /* Credentials Section */
        .credentials-section {
            background: var(--white);
        }

        .featured-credentials {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
            margin-bottom: 3rem;
        }

        .credential-feature {
            background: var(--light-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px var(--shadow);
            transition: all 0.4s ease;
        }

        .credential-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(80, 200, 120, 0.3);
        }

        .credential-feature img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            object-position: top center;
        }

        .credential-feature-content {
            padding: 2rem;
        }

        .credential-feature h3 {
            font-size: 1.5rem !important;
            color: var(--emerald) !important;
            margin-bottom: 0.5rem !important;
        }

        .credential-feature p {
            color: var(--gray-medium) !important;
        }

        .credentials-heading {
            font-size: 1.8rem !important;
            color: var(--dark-slate) !important;
            margin: 3rem 0 2rem !important;
            text-align: center !important;
        }

        /* Credentials Grid */
        .credentials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .credential-card {
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 3px 15px var(--shadow);
            border-left: 4px solid var(--emerald);
            transition: all 0.3s ease;
        }

        .credential-card:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(80, 200, 120, 0.3);
            border-left-color: var(--firebrick);
        }

        .credential-content h4 {
            font-size: 1.1rem !important;
            color: var(--dark-slate) !important;
            line-height: 1.4 !important;
        }

        .credential-card-special {
            grid-column: 1 / -1;
            max-width: 50%;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(80, 200, 120, 0.1) 0%, rgba(178, 34, 34, 0.1) 100%);
            border-left: 4px solid var(--firebrick);
            cursor: pointer;
        }

        .credential-card-special:hover {
            background: linear-gradient(135deg, rgba(80, 200, 120, 0.2) 0%, rgba(178, 34, 34, 0.2) 100%);
            transform: scale(1.05);
        }

        /* Carousel Section */
        .learning-section {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid var(--light-bg);
        }

        .learning-title {
            font-size: 2rem !important;
            text-align: center !important;
            margin-bottom: 0.5rem !important;
            color: var(--dark-slate) !important;
        }

        .learning-subtitle {
            text-align: center !important;
            color: var(--gray-medium) !important;
            font-style: italic !important;
            margin-bottom: 2rem !important;
        }

        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .carousel-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px var(--shadow);
            height: 400px;
            transition: all 0.4s ease;
        }

        .carousel-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(80, 200, 120, 0.3);
        }

        .carousel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: all 0.4s ease;
        }

        .carousel-image:hover img {
            transform: scale(1.05);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            background: var(--emerald) !important;
            color: var(--white) !important;
            border: none !important;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem !important;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--firebrick) !important;
            transform: scale(1.1);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gray-medium);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--emerald) !important;
            transform: scale(1.3);
        }

        /* Static Grid (for 3 or fewer images) */
        .static-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .static-grid .carousel-image {
            height: 400px;
        }

        /* Mission & Vision */
        .mission-vision-section {
            background: var(--light-bg);
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .mission-card, .vision-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            border-top: 4px solid var(--emerald);
        }

        .vision-card {
            border-top-color: var(--firebrick);
        }

        .mission-card h3, .vision-card h3 {
            font-size: 2rem !important;
            margin-bottom: 1.5rem !important;
            color: var(--dark-slate) !important;
        }

        .mission-card p, .vision-card p {
            font-size: 1.15rem !important;
            color: var(--gray-medium) !important;
            line-height: 1.8 !important;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--emerald) 0%, var(--firebrick) 100%);
            padding: 4rem 2rem;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.5rem !important;
            color: var(--white) !important;
            margin-bottom: 1rem !important;
        }

        .cta-content p {
            font-size: 1.2rem !important;
            color: var(--white) !important;
            margin-bottom: 2.5rem !important;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem !important;
            border-radius: 50px !important;
            text-decoration: none !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
            display: inline-block !important;
            font-size: 1rem !important;
            border: none !important;
            cursor: pointer !important;
        }

        .btn-primary {
            background: var(--white) !important;
            color: var(--emerald) !important;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
        }

        .btn-primary:hover {
            background: var(--dark-slate) !important;
            color: var(--white) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
        }

        .btn-secondary {
            background: transparent !important;
            color: var(--white) !important;
            border: 2px solid var(--white) !important;
        }

        .btn-secondary:hover {
            background: var(--white) !important;
            color: var(--emerald) !important;
            transform: translateY(-2px) !important;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr !important;
                display: flex !important;
                flex-direction: column !important;
            }

            .hero-content {
                order: 1 !important;
            }

            .hero-image {
                order: 2 !important;
                margin-bottom: 0 !important;
            }

            .hero-credentials {
                grid-template-columns: 1fr !important;
            }

            .philosophy-content {
                grid-template-columns: 1fr !important;
            }

            .philosophy-statement {
                max-width: 100% !important;
                padding: 1.5rem 1rem !important;
            }

            .featured-credentials {
                grid-template-columns: 1fr !important;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr !important;
            }

            .carousel-slide {
                grid-template-columns: 1fr !important;
            }

            .static-grid {
                grid-template-columns: 1fr !important;
            }

            .credentials-grid {
                grid-template-columns: 1fr !important;
            }

            .credential-card-special {
                max-width: 100% !important;
            }
        }

        @media (max-width: 768px) {
            body {
                overflow-x: hidden !important;
            }

            section {
                padding: 2.5rem 1.5rem !important;
            }

            .hero {
                padding: 2rem 1.5rem 0 1.5rem !important;
            }

            .credential-badge h3 {
                font-size: 1.2rem !important;
            }

            .credential-badge p {
                font-size: 0.75rem !important;
            }

            .credential-badge {
                padding: 0.7rem 0.8rem !important;
            }

            .hero-content h1 {
                font-size: 2rem !important;
            }

            .hero-image img {
                width: 280px !important;
            }

            .section-title {
                font-size: 1.8rem !important;
            }

            .story-card h3 {
                font-size: 1.5rem !important;
            }

            .story-card {
                padding: 2rem 1.5rem !important;
            }

            .philosophy-text p {
                font-size: 1.05rem !important;
            }

            .philosophy-text h4 {
                font-size: 1.15rem !important;
            }

            .philosophy-text ul li {
                font-size: 1rem !important;
            }

            .philosophy-intro {
                font-size: 1.05rem !important;
            }

            .philosophy-statement {
                padding: 1.2rem 0.8rem !important;
            }

            .credentials-heading {
                font-size: 1.5rem !important;
            }

            .learning-title {
                font-size: 1.7rem !important;
            }

            .cta-content h2 {
                font-size: 2rem !important;
            }

            .btn {
                font-size: 0.95rem !important;
                padding: 0.9rem 2rem !important;
            }

            .cta-buttons {
                flex-direction: column !important;
                align-items: stretch !important;
            }

            .carousel-image {
                height: 300px !important;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.7rem !important;
            }

            .hero-image img {
                width: 240px !important;
            }

            .section-title {
                font-size: 1.6rem !important;
            }

            .story-card {
                padding: 1.5rem 1.2rem !important;
            }

            .story-card h3 {
                font-size: 1.3rem !important;
            }

            .credential-card {
                padding: 1.2rem !important;
            }

            .mission-card, .vision-card {
                padding: 2rem !important;
            }
        }/* End custom CSS */