/* ===================================


	protected $casts = [

	];
   Global Styles & Variables
   =================================== */

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #06b6d4;
    --accent-color: #f97316;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --line-color: #cbd1d7;
    --bg-white: #ffffff;
    --border-color: #0066ec;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Navigation Styles
   =================================== */

.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.logo-text {
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    margin: 0 5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-login {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 8px 25px !important;
}

.btn-login::after {
    display: none !important;
}

.btn-login:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.btn-enquiry {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 8px 25px !important;
}

.btn-enquiry::after {
    display: none !important;
}

.btn-enquiry:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}


.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================
   Hero Section Styles
   =================================== */

/* .hero-section {
    margin-top: 76px;
} */

.hero-section {
    padding: 0;
}

.hero-slide {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(79, 70, 229, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Section Common Styles
   =================================== */

section {
    padding: 85px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===================================
   Courses Section Styles
   =================================== */

.courses-section {
    background: var(--bg-light);
}

.course-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin: 15px 10px;
    border: 1px solid transparent;
    min-height: 455px;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.course-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.course-card:hover .course-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.course-card:hover .course-icon i {
    color: white;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.course-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.course-duration i {
    color: var(--primary-color);
}

.course-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: justify;
}

.course-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 500;
}

.course-card .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* Owl Carousel Courses */
.courses-carousel .owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
    display: flex;
    gap: 10px;
}

.courses-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: white !important;
    box-shadow: var(--shadow-md);
    color: var(--text-dark) !important;
    font-size: 1.2rem !important;
    transition: var(--transition);
}

.courses-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.courses-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.courses-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
}

.courses-carousel .owl-dot.active span {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.course-content a {
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* ===================================
   About Section Styles
   =================================== */

.about-section {
    background: #ffff;
}

.about-image {
    position: relative;
}

.about-image img {
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.9;
}

.about-content {
    padding-left: 40px;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-features li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-content .btn-primary {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 500;
}

/* ===================================
   Testimonials Section Styles
   =================================== */

   .testimonials-section {
    padding: 120px 0 !important;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-control-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}



/* ===================================
   map Section Styles
   =================================== */

.map-section {
    width: 100%;
    height: 500px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ===================================
   highlight Section Styles
   =================================== */
/* Section Background */
.highlights-section {
    background: #f7f9fc;
}

/* Header Styling */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Highlight Card */
.highlight-card {
    position: relative;
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    overflow: hidden;
}

/* Hover Effect */
.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Icon Styling */
.highlight-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #6c63ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 20px;
}

/* Title */
.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

/* Description */
.highlight-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Number (Bottom Right Corner) */
.highlight-number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
}

/* Subtle Icon Hover Animation */
.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}


/* ===================================
   Footer Section Styles
   =================================== */

.footer-section {
    background: var(--text-dark);
    color: white;
    padding-top: 80px;
    padding-bottom: 0;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* App Buttons */
.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.app-btn:hover {
    background: var(--primary-color);
}

.app-btn i {
    font-size: 1.8rem;
}

.app-btn span {
    display: flex;
    flex-direction: column;
}

.app-btn small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-btn strong {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   Floating WhatsApp Button
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   Button Styles
   =================================== */

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .courses-carousel .owl-nav {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #f1f5f9;
        margin: 5 !important;
    }

    .btn-login {
        display: block;          /* full width */
        width: 100%;
        text-align: center;
        margin-top: 12px;
        padding: 10px 15px;
        border-radius: 8px;
        margin: 5px 0 !important;
    }

    .btn-enquiry {
        display: block;          /* full width */
        width: 100%;
        text-align: center;
        margin-top: 12px;
        padding: 10px 15px;
        border-radius: 8px;
        margin: 5px 0 !important;
    }

    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-slide {
        height: 60vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        right: 10px;
        bottom: -15px;
    }

    .experience-badge .years {
        font-size: 1.75rem;
    }

    .experience-badge .text {
        font-size: 0.65rem;
    }

    .footer-section {
        padding-top: 60px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .course-card {
        padding: 25px 20px;
    }

    /* .testimonial-card {
        padding: 25px 20px;
    } */

    .app-buttons {
        flex-direction: column;
    }
}




