
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8fafc;
        }

        /* Navbar Styles */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            padding: 5px 50px;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand img {
            height: 70px;
            width: auto;
        }

        @media (max-width: 767px) {
            .navbar-brand img {
                height: 50px;
            }
        }

        .navbar-brand span {
            color: #1e3a5f;
        }

        .navbar-brand .text-success {
            color: #52c77e;
        }

        .navbar-nav .nav-link {
            color: #2c3e50 !important;
            font-weight: 600;
            font-size: 14px;
            margin-left: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #52c77e !important;
        }

        /* Hero Section */
        .hero-section {
            /* background: linear-gradient(135deg, #e8f5f1 0%, #f0f7ff 50%, #fef5e7 100%); */
            background: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: rgba(82, 199, 126, 0.1);
            border-radius: 50%;
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -50px;
            width: 400px;
            height: 400px;
            background: rgba(255, 193, 7, 0.08);
            border-radius: 50%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: 80px;
            padding-left: 100px;
        }

        @media (max-width: 768px) {
            .hero-content {
                padding-left: 30px;
                margin-top: 40px;
            }
        }

        .hero-title {
            font-size: 60px;
            font-weight: 600;
            line-height: 1.2;
            color: #1e3a5f;
            margin-bottom: 20px;
        }

        @media (min-width: 1200px) and (max-width: 1399px){
            .hero-title {
                font-size: 48px;
            }
        }

        @media (min-width: 990px) and (max-width: 1199px) {
            .hero-title {
                font-size: 42px;
            }
        }

         @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
        }

        .hero-title .highlight-green {
            color: #52c77e;
        }

        .hero-title .highlight-yellow {
            color: #ffc107;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #64748b;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .hero-content .cta-button {
            background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
            color: #1e3a5f !important;
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
            color: #1e3a5f !important;
        }

        .cta-button i {
            font-size: 18px;
        }

        .cta-button1 {
            background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
            color: #1e3a5f !important;
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }

        .cta-button1:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
            color: #1e3a5f !important;
        }

        .cta-button1 i {
            font-size: 18px;
        }

        .hero-image {
            position: relative;
            z-index: 2;
        }

        .hero-image img {
            width: 100%;
            height: auto;
        }

        .hero-banner-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-overlay-text {
            position: absolute;
            top: 50%;
            left: 20%;
            transform: translate(-50%, -50%);
            color: #1e3a5f;
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            z-index: 3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .hero-overlay-text {
                font-size: 26px;
                left: 25%;
            }
            
            .hero-section .cta-button {
                display: none;
            }
            
         }
         @media (min-width: 768px){
             .hero-section .cta-button1 {
                display: none;
            }
         }

        /* Features Section */
        .features-container {
            background: white;
            border-radius: 20px;
            padding: 10px;
            margin-top: 20px;
            position: relative;
            z-index: 3;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .feature-item {
            text-align: center;
            padding: 14px;
            display: flex;
            gap: 10px;
        }

        .feature-icon {
            font-size: 30px;
            color: #52c77e;
            padding: 10px;
            border-radius: 50%;
            width: 60px;
            height: auto;
            background: linear-gradient(135deg, #e8f5f1 0%, #f0f7ff 50%, #fef5e7 100%);
        }

        @media (min-width: 990px) and (max-width: 1199px){
            .feature-icon {
                font-size: 20px;
                width: 50px;
                height: 50px;
            }
                .feature-title{
                    font-size: 14px !important;
                    font-weight: bold;
                    margin-bottom: 5px;
                }
                .feature-subtitle {
                    font-size: 13px;
                }
                .feature-item {
                    padding: 8px;
                    gap: 5px;
                }
                .hero-section .container{
                    max-width: 1000px;
                }
        }

        @media (min-width: 1200px) and (max-width: 1399px){
            .feature-icon {
                font-size: 22px;
                width: 45px;
                height: 45px;
                padding: 7px;
            }
            .feature-title{
                font-size: 18px !important;
                font-weight: 500;
            }
             .feature-subtitle {
                font-size: 14px;
            }
         }

         @media (max-width: 768px) {
            .feature-icon {
                font-size: 18px;
                width: 45px;
                height: 45px;
            }
        }

        .feature-title {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .feature-subtitle {
            font-size: 16px;
            color: #64748b;
            line-height: 1.5;
        }

        /* Contact Footer */
        .contact-footer {
            background: white;
            padding: 5px 30px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            justify-self: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 30px;
        }

        .contact-icon {
            font-size: 24px;
            text-align: center;
            padding: 4px 0 0 0;
            color: #52c77e;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8f5f1 0%, #f0f7ff 50%, #fef5e7 100%);
        }

        .contact-text {
            color: #2c3e50;
            font-weight: 500;
            font-size: 22px;
        }

        /* Decorative dots */
        .dots {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: #52c77e;
            border-radius: 50%;
            opacity: 0.3;
        }

        /* Our Approach Section */
        .our-approach-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .approach-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            color: #00a8cc;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-description {
            font-size: 16px;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .approach-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 35px 25px;
            text-align: left;
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .approach-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .approach-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 20px;
        }

        .approach-icon.expert-tutors {
            background-color: #d4f0f9;
            color: #00a8cc;
        }

        .approach-icon.personalised {
            background-color: #fad7d3;
            color: #ff6b5b;
        }

        .approach-icon.measurable {
            background-color: #e8e3f5;
            color: #6b5cdb;
        }

        .approach-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 12px;
        }

        .approach-card-text {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        /* Our Programs Section */
        .our-programs-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        @media (max-width:768px) {
            .our-programs-section {
                padding: 30px 10px;
            }
        }

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

        .programs-tabs {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 20px;
        }

        .tab-button {
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            padding: 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .tab-button.active {
            color: #1e3a5f;
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -22px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: #4f46e5;
            border-radius: 2px;
        }

        .tab-button:hover {
            color: #1e3a5f;
        }

        .program-card-container {
            margin-bottom: 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .program-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            
        }

        .program-card:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .program-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            background-color: #f0f0f0;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .program-details {
            padding: 30px;
        }

        .program-badge {
            display: inline-block;
            background-color: #d4f0f9;
            color: #00a8cc;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: capitalize;
        }

        .program-header-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .program-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e3a5f;
            margin: 0;
            flex: 1;
            line-height: 1.4;
        }

        @media (min-width: 1200px) and (max-width: 1399px){
            .program-title {
                font-size: 18px;
            }
        }

        

        .program-expert {
            color: #4f46e5;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
            margin-left: 20px;
            transition: color 0.3s ease;
        }

        .program-expert:hover {
            color: #3730a3;
            text-decoration: underline;
        }

        .program-description {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .program-tags {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .program-tag {
            background-color: #f0f8ff;
            color: #2c3e50;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        .view-all-button-wrapper {
            text-align: center;
        }

        .view-all-button {
            background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
            color: #1e3a5f !important;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }

        .view-all-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
            color: #1e3a5f !important;
            text-decoration: none;
        }

        /* How It Works Section */
        .how-it-works-section {
            background: linear-gradient(135deg, #d4f0f9 0%, #e8f5f1 50%, #e8f5f1 100%);
            padding: 80px 0;
            position: relative;
        }

        @media (min-width: 990px) and (max-width: 1199px){
            .how-it-works-section .container{
                max-width: 1000px;
            }
        }

        @media (max-width:768px) {
            .how-it-works-section {
                padding: 30px 10px;
            }
        }

        .how-it-works-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
        }
/* 
        .steps-container::before {
            content: '';
            position: absolute;
            top: 100px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: rgba(0, 168, 204, 0.2);
            z-index: 0;
        } */

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background-color: #00a8cc;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: #ffc107;
        }

        .step-title {
            font-size: 18px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 12px;
        }

        .step-description {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        /* Get To Know Us Section */
        .get-to-know-section {
            background: linear-gradient(135deg, #e8f5f1 0%, #f0f7ff 50%, #fef5e7 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .get-to-know-section {
                padding: 30px 10px;
            }
            
        }

        .tutor-image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tutor-image-container {
            position: relative;
            width: 350px;
            height: 420px;
        }

        .tutor-image-container::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 280px;
            height: 320px;
            background-color: #ffc107;
            border-radius: 50%;
            z-index: 1;
        }

        .tutor-image-container::after {
            content: '';
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            width: 300px;
            height: 340px;
            border: 8px solid #cbd5e1;
            border-radius: 50%;
            z-index: 0;
        }

        .tutor-image {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .get-to-know-content {
            padding-left: 40px;
        }

        .section-title-dark {
            font-size: 36px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .get-to-know-description {
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .get-to-know-list {
            margin-bottom: 35px;
        }

        .list-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            font-size: 16px;
            color: #2c3e50;
            font-weight: 600;
            align-items: center;
        }

        .list-dot {
            color: #ffc107;
            font-size: 20px;
            margin-right: 15px;
            margin-top: -2px;
        }

        .list-text {
            line-height: 1.5;
        }

        .learn-more-button {
            background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
            color: #1e3a5f !important;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }

        .learn-more-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
            color: #1e3a5f !important;
            text-decoration: none;
        }

        .learn-more-button i {
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .navbar {
                padding: 15px 20px;
            }

            .navbar-nav .nav-link {
                margin-left: 0;
                padding: 10px 0;
                font-size: 13px;
            }

            .features-container {
                margin-top: -40px;
            }

            .feature-item {
                padding: 15px;
            }

            .contact-footer .contact-item {
                padding: 10px 15px;
                flex-direction: column;
                text-align: center;
            }

            .section-title {
                font-size: 32px;
            }

            .section-title-dark {
                font-size: 28px;
            }

            .approach-card {
                padding: 25px 15px;
            }

            .tutor-image-container {
                width: 280px;
                height: 340px;
                margin: 0 auto 40px;
            }

            .get-to-know-content {
                padding: 10px;
            }

            .get-to-know-description {
                font-size: 14px;
            }

            .list-item {
                font-size: 14px;
            }

            .programs-tabs {
                gap: 20px;
            }

            .tab-button {
                font-size: 14px;
            }

            .program-card {
                margin: 0 -10px;
            }

            .program-details {
                padding: 20px;
            }

            .program-title {
                font-size: 18px;
            }

            .program-header-content {
                flex-direction: column;
            }

            .program-expert {
                margin-left: 0;
                margin-top: 10px;
            }

            .steps-container {
                gap: 30px;
            }

            .steps-container::before {
                display: none;
            }
        }

                /* Why Concept Tutoring Section */
        .why-concept-section {
            padding: 80px 0;
            background-color: #ffffff;
        }
 
        .why-concept-header {
            text-align: center;
            margin-bottom: 60px;
        }
 
        .section-tag {
            color: #00a8cc;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }
 
        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 20px;
            line-height: 1.3;
        }
 
        /* Cards Grid Layout */
        .why-concept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
 
        /* Regular Card (Light Background) */
        .concept-card {
            background-color: #f5f8fb;
            border-radius: 16px;
            padding: 30px 25px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
 
        .concept-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }
 
        .card-icon {
            font-size: 32px;
            color: #ff9966;
            margin-bottom: 15px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 12px;
        }
 
        .card-description {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
            flex-grow: 1;
        }
 
        /* Why Concept Tutoring Section */
        
        .section-container {
            max-width: 1400px;
            margin: 50px auto;
        }
 
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
 
        .section-subtitle {
            color: #00a8a8;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
 
        .section-title {
            color: #0a1d47;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 40px;
        }
 
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            grid-template-areas:
                "card1 card2 card3 card4"
                "card5 card6 card7 card7";
        }

        @media (min-width: 1200px) and (max-width: 1399px){
            .section-title {
                font-size: 36px;
            }
             .cards-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-areas:
                    "card1 card3 card4"
                    "card5 card6 card7";
            }
        }
 
        @media (min-width: 999px) and (max-width: 1199px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-areas:
                    "card1 card3"
                    "card4 card5"
                    "card6 card7";
            }
        }
 
        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: 1fr;
                grid-template-areas:
                    "card1"
                    "card3"
                    "card4"
                    "card5"
                    "card6"
                    "card7";
            }
 
            .section-title {
                font-size: 32px;
            }
        }
 
        .card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
 
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
 
        /* Card 1 - Truly Personalised */
        #card1 {
            grid-area: card1;
            background-color: #f5f1e8;
        }
 
        .card-icon {
            font-size: 32px;
            margin-bottom: 20px;
        }
 
        .icon-clipboard {
            color: #ff9f43;
        }
 
        .card-title {
            color: #0a1d47;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
 
        .card-text {
            color: #4a4a4a;
            font-size: 15px;
            line-height: 1.6;
        }
 
        .card-body {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
 
        /* Card 2 - Image */
        #card2 {
            grid-area: card2;
            padding: 0 !important;
            background: none;
        }

        @media (min-width: 990px) and (max-width: 1199px) {
            #card2 {
                grid-area: card2;
                padding: 0 !important;
                max-height: 300px;
            }
        }

         @media (max-width: 768px) {
            #card2 {
                grid-area: card2;
                padding: 0 !important;
                background: none;
            }
        }
 
        #card2 .card-body {
            padding: 0;
        }
 
        #card2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        /* Hide card2 for screens below 1399px */
        @media (max-width: 1399px) {
            #card2 {
                display: none;
            }
        }

        /* Card 3 - Tutors */
        #card3 {
            grid-area: card3;
            background: linear-gradient(135deg, #17a2a2 0%, #00a8a8 100%);
            color: white;
        }
 
        #card3 .card-title,
        #card3 .card-text {
            color: white;
        }
 
        #card3 .card-text {
            color: rgba(255, 255, 255, 0.9);
        }
 
        .icon-users {
            font-size: 40px;
            margin-bottom: 20px;
            color: white;
        }
 
        /* Card 4 - Quote */
        #card4 {
            grid-area: card4;
            border: 2px solid #0a1d47;
            background-color: white;
        }
 
        .quote-icon {
            font-size: 48px;
            color: #00a8a8;
            margin-bottom: 15px;
        }
 
        /* Card 5 - Curriculum */
        #card5 {
            grid-area: card5;
            background-color: #f5f1e8;
        }
 
        .icon-book {
            color: #0a1d47;
            font-size: 32px;
            margin-bottom: 20px;
        }
 
        /* Card 6 - Map */
        #card6 {
            grid-area: card6;
            background: url("img/bg-map.png") no-repeat center center;
            background-size: cover;
            padding: 0 !important;
        }
 
        #card6 .card-body {
            padding: 30px;
        }
 
        /* Card 7 - Writing Workshop */
        #card7 {
            grid-area: card7;
            background: url("img/bg-notebook.png") no-repeat top center;
            background-size: cover;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 220px;
        }
 
        #card7 .card-body {
            position: relative;
            z-index: 2;
        }
 
        #card7 .card-title,
        #card7 .card-text {
            color: white;
        }
 
        .exclusive-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.3);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
            width: fit-content;
        }
 
        .notebook-icon {
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 200px;
            opacity: 0.15;
            z-index: 1;
        }
 
        .card-body {
            padding: 30px;
        }

        @media (max-width:768px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }
 
            .section-title {
                font-size: 32px;
            }
        }
 
        @media (min-width: 769px) and (max-width: 992px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
 
            .section-title {
                font-size: 36px;
            }
        }
 
        @media (max-width: 576px) {
            .section-title {
                font-size: 24px;
            }
 
            .card-body {
                padding: 20px;
            }
 
            .card-title {
                font-size: 18px;
            }
 
            .card-text {
                font-size: 14px;
            }
        }

        /* Testimonials Section */
        .testimonials-section {
            background: linear-gradient(135deg, #d4f0f9 0%, #e8f5f1 50%, #e8f5f1 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
 
        .testimonials-header {
            text-align: center;
            margin-bottom: 20px;
        }
 
        .section-tag {
            color: #00a8cc;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }
 
        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 20px;
            line-height: 1.3;
        }
 
        /* Testimonials Slider Container */
        .testimonials-container {
            position: relative;
            margin: 0 auto;
            max-width: 1200px;
        }
 
        /* Slider Wrapper */
        .testimonials-slider {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
        }
 
        /* Testimonial Content */
        .testimonial-content {
            flex: 1;
            min-width: 0;
        }
 
        .quote-icon {
            font-size: 48px;
            color: #ff9966;
            margin-bottom: 15px;
        }
 
        .star-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
            font-size: 20px;
        }
 
        .star-rating i {
            color: #ffc107;
        }
 
        .testimonial-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 12px;
        }
 
        .testimonial-subtitle {
            font-size: 16px;
            color: #00a8cc;
            font-weight: 600;
            margin-bottom: 20px;
        }
 
        .testimonial-text {
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 25px;
        }
 
        .testimonial-author {
            font-size: 15px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }
 
        .testimonial-position {
            font-size: 14px;
            color: #94a3b8;
        }
 
        /* Testimonial Image */
        .testimonial-image {
            flex: 1;
            position: relative;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
 
        .image-container {
            position: relative;
            width: 100%;
        }
 
        .testimonial-img {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
 
        /* Slider Controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
        }
 
        .slider-dots {
            /* display: flex; */
            display: none;
            gap: 12px;
            align-items: center;
            
        }
 
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(0, 168, 204, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
 
        .dot.active {
            background-color: #00a8cc;
            width: 30px;
            border-radius: 10px;
        }
 
        .slider-buttons {
            display: flex;
            gap: 15px;
        }
 
        .slider-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.8);
            border: 2px solid #00a8cc;
            color: #00a8cc;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }
 
        .slider-button:hover {
            background-color: #00a8cc;
            color: white;
            transform: scale(1.1);
        }
 
        .slider-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
 
        /* Auto-scroll animation */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
 
        .testimonials-slider {
            animation: slideIn 0.6s ease;
        }
 
        /* Responsive */
        @media (max-width: 1024px) {
            .testimonials-slider {
                flex-direction: column;
                gap: 30px;
            }
 
            .image-container {
                max-width: 350px;
            }
 
            .image-container::before {
                width: 280px;
                height: 340px;
                left: -20px;
            }
        }
 
        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }
 
            .testimonials-slider {
                flex-direction: column;
                gap: 30px;
                padding: 0 20px;
            }
 
            .testimonial-title {
                font-size: 20px;
            }
 
            .image-container {
                max-width: 300px;
            }
 
            .image-container::before {
                width: 240px;
                height: 300px;
                left: -15px;
            }
 
            .slider-controls {
                flex-direction: column;
                gap: 20px;
            }
 
            .quote-icon {
                font-size: 40px;
            }
        }


        /* Find Us Section */
        .find-us-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        @media (min-width: 990px) and (max-width: 1199px){
            .find-us-section .container{
                max-width: 1100px;
            }
        }
 
        .find-us-header {
            text-align: center;
            margin-bottom: 60px;
        }
 
        .section-tag {
            color: #00a8cc;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }
 
        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 20px;
            line-height: 1.3;
        }
 
        /* Find Us Container */
        .find-us-container {
            display: grid;
            grid-template-columns: 1.1fr 1.7fr;
            gap: 10px;
            margin-bottom: 50px;
        }
 
        /* Map Container */
        .map-container {
            border-radius: 16px;
        }
 
        .map-placeholder {
            width: 100%;
            height: 100%;
        }
         .map-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }
 
        .location-pin {
            font-size: 32px;
            color: #00a8cc;
            margin-bottom: 10px;
        }
 
        .location-name {
            font-size: 14px;
            font-weight: 600;
            color: #1e3a5f;
            margin-bottom: 20px;
        }
 
        /* Location Cards Grid */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 5px;
        }
 
        .location-card {
            background-color: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 10px;
            transition: all 0.3s ease;
        }
 
        .location-card:hover {
            border-color: #00a8cc;
            box-shadow: 0 12px 32px rgba(0, 168, 204, 0.12);
            transform: translateY(-5px);
        }
 
        .location-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
 
        .location-pin-icon {
            font-size: 24px;
            color: #00a8cc;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .location-title {
            font-size: 18px;
            font-weight: 700;
            color: #1e3a5f;
            margin: 0;
        }
 
        .location-address {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 16px;
        }
 
        .location-description {
            font-size: 13px;
            color: #94a3b8;
            font-style: italic;
            margin-bottom: 16px;
            line-height: 1.5;
        }
 
        .location-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #2c3e50;
            font-weight: 600;
        }
 
        .location-contact a {
            color: #00a8cc;
            text-decoration: none;
        }

        .location-contact i {
            color: #00a8cc;
            font-size: 16px;
        }
 
        .get-directions-link {
            color: #00a8cc;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
 
        .get-directions-link:hover {
            gap: 12px;
        }
 
        .coming-soon-badge {
            display: inline-block;
            background-color: #ff6b5b;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 10px;
        }
 
        .find-nearest-link {
            text-align: center;
            margin-top: 30px;
        }
 
        .find-nearest-link a {
            color: #00a8cc;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
 
        .find-nearest-link a:hover {
            gap: 12px;
        }
 
        /* Ask Us More Section */
        .ask-us-more-section {
            padding: 80px 0;
            background-color: #f5f8fb;
        }

        @media (min-width: 990px) and (max-width: 1199px){
            .ask-us-more-section .container{
                max-width: 100%;
            }
        }
 
        .ask-us-more-header {
            text-align: center;
            margin-bottom: 60px;
        }
 
        .ask-us-more-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 20px;
        }
 
        /* Ask Us More Container */
        .ask-us-more-container {
            display: grid;
            grid-template-columns: 1fr 1.3fr 1fr;
            gap: 40px;
            align-items: end;
        }
 
        /* Left Box - Ready to See */
        .left-content {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 16px;
        }
 
        .left-content h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        @media (min-width: 1200px) and (max-width: 1399px){
            .left-content h3 {
                font-size: 18px;
            }
        }
        @media (min-width: 990px) and (max-width: 1199px) {
            .left-content h3 {
                font-size: 18px;
            }
        }
 
        .left-content p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 30px;
        }
 
        .cta-button {
            background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
            color: #1e3a5f !important;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }
 
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
            color: #1e3a5f !important;
            text-decoration: none;
        }
 
        /* Center Image - Placeholder */
        .center-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
        }
 
        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
 
        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
 
        /* Right Box - Get in Touch */
        .right-content {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 16px;
        }
 
        .right-content h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        @media (min-width: 1200px) and (max-width: 1399px){
            .right-content h3 {
                font-size: 18px;
            }
        }
 
        .right-content .contact-item {
            padding: 5px;
        }
 
        .contact-label {
            font-size: 14px;
            color: #94a3b8;
            font-weight: 600;
            margin-bottom: 6px;
        }
 
        .contact-value {
            font-size: 15px;
            color: #2c3e50;
            font-weight: 500;
        }
        @media (min-width: 1200px) and (max-width: 1399px){
            .contact-value {
                font-size: 12px;
            }
        }

        @media (min-width: 990px) and (max-width: 1199px){
            .contact-value {
                font-size: 12px;
            }
        }
 
        .contact-value a {
            color: #2c3e50;
            text-decoration: none;
        }
 
        .contact-value a:hover {
            color: #00a8cc;
        }
 
        @media (max-width: 1024px) {
            .find-us-container {
                grid-template-columns: 1fr;
            }
 
            .ask-us-more-container {
                grid-template-columns: 1fr;
            }
 
            .center-image {
                height: 350px;
            }
        }
 
        @media (max-width: 768px) {
            .section-title,
            .ask-us-more-title {
                font-size: 32px;
            }
 
            .locations-grid {
                grid-template-columns: 1fr;
            }
 
            .left-content h3,
            .right-content h3 {
                font-size: 24px;
            }
 
            .map-container {
                min-height: 300px;
            }
 
            .center-image {
                height: auto;
            }
        }


        /* Main Footer */
        .footer-main {
            background-color: #2d3e50;
            color: #ffffff;
            padding: 60px 0 40px;
        }
 
        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }
 
        /* Footer Column 1: About */
        .footer-column-about {
            display: flex;
            flex-direction: column;
        }
 
        .footer-logo {
            width: 250px;
            height: auto;
            background: #ffffff;
            margin-bottom: 20px;
            padding: 5px;
            display: flex;
            align-items: center;
        }
 
        .footer-logo img {
            width: 100%;
            height: auto;
        }
 
        .footer-about-text {
            font-size: 15px;
            color: #cbd5e1;
            line-height: 1.7;
            margin-bottom: 25px;
        }
 
        .footer-about-text strong {
            color: #ffffff;
            font-weight: 600;
        }
 
        .footer-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #cbd5e1;
        }
 
        .footer-contact i {
            color: #00a8cc;
            font-size: 18px;
            width: 24px;
        }
 
        .footer-contact a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
 
        .footer-contact a:hover {
            color: #00a8cc;
        }
 
        /* Footer Column Header */
        .footer-column-title {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }
 
        .footer-column-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #00a8cc;
        }
 
        /* Footer Links */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
 
        .footer-link {
            font-size: 15px;
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
        }
 
        .footer-link:hover {
            color: #00a8cc;
            padding-left: 5px;
        }
 
        /* Footer Column 4: Connect With Us */
        .footer-column-connect {
            display: flex;
            flex-direction: column;
        }
 
        .footer-contact-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }
 
        .footer-contact-item {
            font-size: 15px;
            color: #cbd5e1;
        }
 
        .footer-contact-item strong {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
        }
 
        .footer-contact-item a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
 
        .footer-contact-item a:hover {
            color: #00a8cc;
        }
 
        /* Social Icons */
        .footer-social {
            display: flex;
            gap: 16px;
            margin-bottom: 25px;
        }
 
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00a8cc;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 168, 204, 0.3);
        }
 
        .social-icon:hover {
            background-color: #00a8cc;
            color: #ffffff;
            border-color: #00a8cc;
            transform: translateY(-3px);
        }
 
        /* App Download Buttons */
        .footer-app-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
 
        .app-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 16px;
            border-radius: 8px;
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
 
        .app-button:hover {
            background-color: rgba(0, 168, 204, 0.2);
            border-color: #00a8cc;
            color: #00a8cc;
        }
 
        .app-button i {
            font-size: 18px;
        }
 
        /* Footer Divider */
        .footer-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin: 40px 0;
        }
 
        /* Footer Bottom */
        .footer-bottom {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 30px;
            align-items: center;
        }
 
        .footer-copyright {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.6;
        }
 
        .footer-links-bottom {
            display: flex;
            gap: 30px;
        }
 
        .footer-links-bottom a {
            font-size: 14px;
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
 
        .footer-links-bottom a:hover {
            color: #00a8cc;
        }
 
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
 
            .footer-bottom {
                grid-template-columns: 1fr;
            }
 
            .footer-links-bottom {
                justify-content: center;
                flex-wrap: wrap;
            }
        }
 
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
 
            .footer-column-title::after {
                display: none;
            }
 
            .footer-bottom {
                text-align: center;
            }
 
            .footer-social {
                justify-content: center;
            }
 
            .footer-app-buttons {
                justify-content: center;
            }
        }
         /* ===== SECTION 1: OUR STORY ===== */
        .abt-story-section {
            padding: 80px 20px;
            background-color: #ffffff;
        }

        .abt-story-container {
            max-width: 1250px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .abt-story-label {
            color: #20A39E;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .abt-story-title {
            font-size: 42px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .abt-story-text {
            font-size: 15px;
            color: #666;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .abt-story-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            height: 100%;
            min-height: 400px;
        }

        .abt-story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ===== SECTION 2: HOW WE TEACH ===== */
        .abt-teach-section {
            padding: 50px 20px;
            background: linear-gradient(135deg, #D5F7F6 0%, #E0FAFE 100%);
            text-align: center;
        }

        .abt-teach-label {
            color: #20A39E;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
        }

        .abt-teach-title {
            font-size: 42px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 60px;
            line-height: 1.2;
        }

        .abt-teach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
            max-width: 1250px;
            margin: 0 auto;
        }

        .abt-teach-card {
            background-color: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            display: flex;
        }

        .abt-teach-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        }

        .abt-teach-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #F5A623;
        }

        .abt-teach-card-text {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            text-align: left;
            margin-left: 20px;
        }

        /* ===== SECTION 3: OUR TUTORS ===== */
        .abt-tutors-section {
            padding: 50px 20px;
            background-color: #ffffff;
        }

        .abt-tutors-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: stretch;
        }

        .abt-tutors-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            height: 100%;
            min-height: 500px;
        }

        .abt-tutors-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .abt-tutors-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .abt-tutors-label {
            color: #20A39E;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .abt-tutors-title {
            font-size: 42px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .abt-tutors-text {
            font-size: 15px;
            color: #666;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .abt-stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
            padding: 30px;
            background-color: #FF7A5C;
            border-radius: 12px;
            position: relative;
            left: -154px;
            width: 125%;
        }

        @media (max-width: 992px) {
            .abt-stats-container {
                left: 0px;
                width: 100%;
            }
        }

        .abt-stat-box {
            background-color: white;
            padding: 25px 10px;
            border-radius: 12px;
            text-align: center;
        }

        .abt-stat-icon {
            font-size: 25px;
            color: #F5A623;
            margin-bottom: 5px;
        }

        .abt-stat-number {
            font-size: 16px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 8px;
        }

        .abt-stat-label {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }

        /* CTA Section */
        .abt-cta-section {
            background-color: #ffffff;
            padding: 60px 20px;
            border-top: 1px solid #f0f0f0;
        }

        .abt-cta-container {
            max-width: 1250px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .abt-cta-content {
            flex: 1;
            min-width: 300px;
            display: flex;
            gap: 20px;
        }

        .abt-cta-icon-circle {
            width: 85px;
            height: 55px;
            background-color: #0E3A6B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .abt-cta-icon-circle {
                display: none;
            }
        }

        .abt-cta-title {
            font-size: 32px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 15px;
        }

        .abt-cta-description {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .abt-cta-contacts {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            align-items: center;
        }

        .abt-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #666;
        }

        .abt-contact-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .abt-contact-item i {
            font-size: 18px;
            color: #20A39E;
        }

        .abt-cta-button {
            background-color: #F5A623;
            color: #0E3A6B;
            border: none;
            padding: 14px 32px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .abt-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .abt-story-container,
            .abt-tutors-container {
                grid-template-columns: 1fr;
            }

            .abt-teach-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            .abt-stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .abt-story-title,
            .abt-teach-title,
            .abt-tutors-title,
            .abt-cta-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .abt-story-section,
            .abt-tutors-section {
                padding: 60px 20px;
            }

            .abt-teach-section {
                padding: 80px 20px;
            }

            .abt-story-title,
            .abt-teach-title,
            .abt-tutors-title {
                font-size: 28px;
            }

            .abt-cta-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .abt-cta-contacts {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }

            .abt-stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .abt-teach-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .abt-story-title,
            .abt-teach-title,
            .abt-tutors-title,
            .abt-cta-title {
                font-size: 24px;
            }

            .abt-stats-container {
                grid-template-columns: 1fr;
            }

            .abt-teach-grid {
                grid-template-columns: 1fr;
            }

            .abt-cta-contacts {
                flex-direction: column;
            }

            .abt-cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        /* Header Title Section */
        .ctn-header-section {
            padding: 60px 20px 40px;
            text-align: center;
        }

        .ctn-main-title {
            font-size: 42px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 20px;
        }

        .ctn-subtitle-text {
            font-size: 15px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        /* Contact Methods - Horizontal Layout */
        .ctn-contact-wrapper {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .ctn-contact-methods {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .ctn-contact-method {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            min-width: 200px;
        }

        .ctn-contact-method a{
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .ctn-contact-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #e8eef8;
            font-size: 22px;
            flex-shrink: 0;
            color: #20A39E;
        }

        .ctn-contact-method:nth-child(4) .ctn-contact-icon {
            color: #1a1a1a;
        }

        .ctn-contact-info h4 {
            font-size: 15px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 5px;
        }

        .ctn-contact-info p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        .ctn-contact-divider {
            width: 2px;
            height: 40px;
            background-color: #F5A623;
            margin: 0 10px;
        }

        /* Three Locations Section */
        .ctn-locations-section {
            padding: 60px 20px;
            background-color: #ffffff;
        }

        .ctn-section-title {
            font-size: 38px;
            font-weight: 700;
            color: #0E3A6B;
            text-align: center;
            margin-bottom: 50px;
        }

        .ctn-locations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ctn-location-card {
            background-color: white;
            border: 1px solid #f0f0f0;
            border-radius: 16px;
            padding: 30px;
            text-align: left;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .ctn-location-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .ctn-location-header {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .ctn-location-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
        }

        .ctn-location-card:nth-child(1) .ctn-location-icon {
            background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
        }

        .ctn-location-card:nth-child(2) .ctn-location-icon {
            background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
        }

        .ctn-location-card:nth-child(3) .ctn-location-icon {
            background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
        }

        .ctn-location-card:nth-child(4) .ctn-location-icon {
            background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
        }

        .ctn-location-info h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .ctn-location-card:nth-child(1) .ctn-location-info h3 {
            color: #7C3AED;
        }

        .ctn-location-card:nth-child(2) .ctn-location-info h3 {
            color: #3B82F6;
        }

        .ctn-location-card:nth-child(3) .ctn-location-info h3 {
            color: #06B6D4;
        }
            .ctn-location-card:nth-child(4) .ctn-location-info h3 {
                color: #1a1a1a;
            }

        .ctn-location-subtitle {
            font-size: 17px;
            color: #666;
        }

        .ctn-location-address {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .ctn-map-btn {
            background-color: white;
            border: 2px solid;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .ctn-location-card:nth-child(1) .ctn-map-btn {
            color: #7C3AED;
            border-color: #7C3AED;
        }

        .ctn-location-card:nth-child(2) .ctn-map-btn {
            color: #3B82F6;
            border-color: #3B82F6;
        }

        .ctn-location-card:nth-child(3) .ctn-map-btn {
            color: #06B6D4;
            border-color: #06B6D4;
        }
        .ctn-location-card:nth-child(4) .ctn-map-btn {
            color: #1a1a1a;
            border-color: #1a1a1a;
        }

        .ctn-location-card:nth-child(1) .ctn-map-btn:hover {
            background-color: #7C3AED;
            color: white;
        }

        .ctn-location-card:nth-child(2) .ctn-map-btn:hover {
            background-color: #3B82F6;
            color: white;
        }

        .ctn-location-card:nth-child(3) .ctn-map-btn:hover {
            background-color: #06B6D4;
            color: white;
        }
        .ctn-location-card:nth-child(4) .ctn-map-btn:hover {
            background-color: #1a1a1a;
            color: white;
        }

        /* Booking Form Section */
        .ctn-booking-section {
            padding: 30px 20px;
            min-height: 100vh;
        }

        .ctn-booking-container {
            max-width: 1350px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 40px;
            align-items: flex-start;
            background: linear-gradient(135deg, #F3E8FF 0%, #f0e8ff 100%);
            padding: 40px;
            border-radius: 16px;
        }

        /* Left Sidebar */
        .ctn-booking-left {
            background: linear-gradient(135deg, #F3E8FF 0%, #f0e8ff 100%);
            align-self: center;
        }

        .ctn-booking-icon {
            width: 90px;
            height: 90px;
            background-color: rgba(124, 58, 237, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            margin-bottom: 25px;
            color: #7C3AED;
        }

        .ctn-booking-title {
            font-size: 36px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .ctn-booking-description {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .ctn-booking-illustration {
            margin-top: 150px;
        }
        .ctn-booking-illustration  img {
            width: 100%;
            max-width: 400px;
        }


        /* Right Form Section */
        .ctn-booking-right {
            background-color: white;
            padding: 45px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }

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

        .ctn-form-row-full {
            grid-template-columns: 1fr;
        }

        .ctn-form-group {
            display: flex;
            flex-direction: column;
            overflow: auto;
        }

        .ctn-form-group label {
            font-size: 15px;
            font-weight: 600;
            color: #0E3A6B;
            margin-bottom: 10px;
        }

        .ctn-form-group input,
        .ctn-form-group select,
        .ctn-form-group textarea {
            padding: 13px 15px;
            border: 1px solid #e8e8e8;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            background-color: #fafafa;
        }

        .ctn-form-group input:focus,
        .ctn-form-group select:focus,
        .ctn-form-group textarea:focus {
            outline: none;
            border-color: #7C3AED;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
        }

        .ctn-form-group input::placeholder,
        .ctn-form-group select::placeholder,
        .ctn-form-group textarea::placeholder {
            color: #bbb;
        }

        .ctn-form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .ctn-dropdown-hint {
            font-size: 12px;
            color: #999;
            margin-top: 8px;
        }

        .ctn-submit-btn {
            background: linear-gradient(135deg, #F5A623 0%, #f59000 100%);
            color: #0E3A6B;
            border: none;
            border-bottom: 4px solid #0E3A6B;
            padding: 16px 32px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            margin-top: 25px;
        }

        .ctn-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(245, 166, 35, 0.3);
        }

        .ctn-submit-btn:active {
            transform: translateY(-1px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .ctn-booking-section {
                padding: 30px 15px;
            }

            .ctn-booking-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px;
            }

            .ctn-booking-left {
                display: none;
            }

            .ctn-locations-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            .ctn-booking-right {
                padding: 35px;
            }

            .ctn-booking-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .ctn-main-title {
                font-size: 32px;
            }

            .ctn-section-title {
                font-size: 28px;
            }

            .ctn-contact-methods {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .ctn-contact-divider {
                display: none;
            }

            .ctn-contact-method {
                width: 100%;
                min-width: unset;
            }

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

            .ctn-booking-right {
                padding: 25px;
            }

            .ctn-booking-container {
                padding: 20px;
                gap: 20px;
            }

            .ctn-location-card {
                padding: 25px;
            }

            .ctn-booking-title {
                font-size: 24px;
            }

            .ctn-booking-description {
                font-size: 16px;
            }

            .ctn-form-group label {
                font-size: 14px;
            }

            .ctn-form-group input,
            .ctn-form-group select,
            .ctn-form-group textarea {
                padding: 12px 12px;
                font-size: 15px;
            }

            .ctn-submit-btn {
                padding: 14px 24px;
                font-size: 15px;
                margin-top: 20px;
            }
        }

        @media (max-width: 576px) {
            .ctn-booking-section {
                padding: 20px 10px;
                min-height: auto;
            }

            .ctn-main-title {
                font-size: 24px;
            }

            .ctn-section-title {
                font-size: 22px;
            }

            .ctn-booking-container {
                padding: 15px;
                gap: 15px;
            }

            .ctn-booking-right {
                padding: 15px;
            }

            .ctn-booking-title {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .ctn-booking-description {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .ctn-form-row {
                gap: 15px;
                margin-bottom: 12px;
            }

            .ctn-form-group {
                margin-bottom: 10px;
            }

            .ctn-form-group label {
                font-size: 13px;
                margin-bottom: 8px;
            }

            .ctn-form-group input,
            .ctn-form-group select,
            .ctn-form-group textarea {
                padding: 11px 10px;
                font-size: 16px;
                border-radius: 6px;
            }

            .ctn-form-group textarea {
                min-height: 80px;
            }

            .ctn-submit-btn {
                padding: 12px 20px;
                font-size: 14px;
                margin-top: 15px;
                border-radius: 8px;
            }

            .ctn-dropdown-hint {
                font-size: 11px;
                margin-top: 6px;
            }

            .ctn-locations-grid {
                grid-template-columns: 1fr;
            }

            .ctn-contact-methods {
                gap: 15px;
            }

            .ctn-contact-method {
                gap: 10px;
                flex-direction: column;
                text-align: center;
            }

            .ctn-location-header {
                gap: 12px;
            }

            .ctn-header-section {
                padding: 30px 15px;
            }

            .ctn-locations-section {
                padding: 30px 15px;
            }
        }

        /* Navigation Tabs */
        .pgr-nav-section {
            background-color: #f8f9fa;
            padding: 20px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .pgr-nav-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .pgr-nav-tab {
            padding: 10px 24px;
            border-radius: 25px;
            border: none;
            background-color: white;
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        }

        .pgr-nav-tab.active {
            background-color: #0E3A6B;
            color: white;
            box-shadow: 0 4px 8px rgba(14, 58, 107, 0.2);
        }

        .pgr-nav-tab:hover:not(.active) {
            background-color: #f0f0f0;
        }

        .pgr-centre-panel {
            display: none;
        }

        .pgr-centre-panel.active {
            display: block;
        }

        .pgr-nav-tab i {
            font-size: 16px;
        }

        /* Header Section */
        .pgr-header-section {
            padding: 60px 20px;
        }

        .pgr-center-title {
            color: #20A39E;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .pgr-centre-name {
            font-size: 48px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 25px;
        }

        .pgr-subtitle-text {
            color: #20A39E;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .pgr-description-text {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .pgr-contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .pgr-contact-info i {
            color: #F5A623;
            font-size: 18px;
            width: 24px;
        }

        .pgr-contact-address {
            color: #666;
        }

        .pgr-contact-address strong {
            color: #1a1a1a;
        }

        .pgr-contact-info a {
            color: #666;
            text-decoration: none;
        }

        .pgr-contact-info a:hover {
            color: #20A39E;
        }

        .pgr-hero-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            height: 100%;
        }

        @media (max-width: 768px){
            .pgr-hero-image {
                min-height: 150px;
            }
        } 
    

        .pgr-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* About Section */
        .pgr-about-section {
            padding: 60px 20px;
            background-color: #ffffff;
        }

        .pgr-about-title {
            font-size: 38px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .pgr-about-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: #F5A623;
            border-radius: 2px;
        }

        .pgr-about-text {
            color: #666;
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        /* Programs Box */
        .pgr-programs-box {
            border: 2px solid #F5A623;
            border-radius: 16px;
            padding: 40px;
            background-color: #fafafa;
        }

        .pgr-programs-title {
            font-size: 22px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 30px;
        }

        .pgr-program-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 18px;
            font-size: 15px;
            color: #1a1a1a;
        }

        .pgr-program-item i {
            color: #F5A623;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* Getting Started Section */
        .pgr-started-section {
            padding: 60px 20px;
        }

        .pgr-started-title {
            font-size: 38px;
            font-weight: 700;
            color: #0E3A6B;
            position: relative;
            display: inline-block;
        }

        .pgr-started-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: #F5A623;
            border-radius: 2px;
        }

        .pgr-step-card {
            background-color: white;
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 50px;
            display: flex;
            flex-direction: column;
            height: 80%;
        }

        .pgr-step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .pgr-step-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 25px;
            background-color: #E8F4F8;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: #20A39E;
            flex-shrink: 0;
        }

        .pgr-step-title {
            font-size: 18px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 15px;
            flex-shrink: 0;
        }

        .pgr-step-description {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* CTA Banner */
        .pgr-cta-banner {
            background: linear-gradient(135deg, #F5A623 0%, #f59a23 100%);
            border-radius: 12px;
            padding: 40px;
            margin: 60px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .pgr-cta-content {
            flex: 1;
            min-width: 300px;
            display: contents;
        }

        .pgr-cta-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .pgr-cta-icon {
                display: none;
            }
        }

        .pgr-cta-title {
            font-size: 28px;
            font-weight: 700;
            color: #0E3A6B;
            margin-bottom: 15px;
        }

        .pgr-cta-info {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 14px;
            color: #0E3A6B;
        }

        .pgr-cta-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pgr-cta-info-item a{
            color: #0E3A6B;
            text-decoration: none;
        }

        .pgr-cta-info-item i {
            font-size: 16px;
        }

        .pgr-cta-button {
            background-color: white;
            color: #0E3A6B;
            border: none;
            padding: 12px 32px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .pgr-cta-button:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 20px rgba(14, 58, 107, 0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .pgr-centre-name {
                font-size: 36px;
            }

            .pgr-about-title,
            .pgr-started-title {
                font-size: 28px;
            }

            .pgr-cta-banner {
                flex-direction: column;
                text-align: center;
            }

            .pgr-cta-info {
                justify-content: center;
            }

            .pgr-nav-container {
                gap: 10px;
            }

            .pgr-nav-tab {
                padding: 8px 16px;
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .pgr-centre-name {
                font-size: 28px;
            }

            .pgr-nav-tab {
                padding: 6px 12px;
                font-size: 11px;
            }

            .pgr-programs-box {
                padding: 25px;
            }

            .pgr-cta-title {
                font-size: 22px;
            }
        }

        .wp-button{
	margin-top:14px;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:35px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}


/* Popup Modal Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1111;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease-in-out;
        }
 
        .popup-overlay.active {
            display: flex;
        }
 
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
 
        .popup-content {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease-out;
        }
 
        @keyframes slideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
 
        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 25px;
            border-bottom: 1px solid #e5e5e5;
            background: linear-gradient(135deg, #667eea 20%, #ffc107 100%);
            color: white;
            border-radius: 12px 12px 0 0;
        }
 
        .popup-header h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 700;
        }
 
        .popup-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
 
        .popup-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
 
        .popup-form-container {
            padding: 30px 25px;
        }
 
        .popup-subtitle {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
            text-align: center;
        }
 
        .form-group {
            margin-bottom: 20px;
        }
 
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }
 
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
 
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
 
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
 
        .form-row .form-group {
            margin-bottom: 0;
        }
 
        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
 
            .popup-content {
                width: 95%;
            }
 
            .popup-header {
                padding: 20px 15px;
            }
 
            .popup-header h2 {
                font-size: 20px;
            }
 
            .popup-form-container {
                padding: 20px 15px;
            }
        }
 
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #667eea 20%, #ffc107 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
 
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }
 
        .submit-btn:active {
            transform: translateY(0);
        }
 
        .required {
            color: #e74c3c;
        }
 
        textarea {
            resize: vertical;
            min-height: 100px;
        }
