/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Custom Colors */
:root {
    --primary-color: #07ee29;
    --secondary-color: #003eff;
    --accent-color: #07ee29;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg,  #07ee29, #1000ff);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow);
    /* padding: 0.5rem 0; */
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.enroll-btn {
    background: var(--gradient) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.enroll-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4) !important;
    color: var(--white) !important;
}

.custom-toggler {
    border: none !important;
    padding: 4px 8px !important;
}

.custom-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

 .dropdown-toggle::after{
                            display: none !important;
                            top: 50%;
                            transform: translateY(-50%);
                            left: auto !important;
                            right: 0 !important;
                        }

/* Hero Section */
.hero-section {
    margin-top: 80px;   
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.carousel {
    height: 100%;
}

.carousel-item {
    height: 80vh;
    position: relative;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
}

.hero-buttons .btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.hero-buttons .btn-outline-light {
    border: 2px solid #333;
    color: #333;
    background: transparent;
}
.hero-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--white);
    transform: scale(1.2);
}

/* Marquee */
.marquee-container {
    background: var(--gradient);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
    font-weight: 500;
    padding-left: 100%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Section Headers */
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

/* Services Section */
.services-section {
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(148 231 182 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay svg {
    color: var(--white);
    width: 48px;
    height: 48px;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.4);
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
}

.about-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stat-item {
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

.about-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-image-container img {
    width: 100%;
    height: auto;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.15);
}

.floating-info {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-info.info-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-info.info-2 {
    top: 30%;
    left: -15%;
    animation-delay: 0.5s;
}

.floating-info.info-3 {
    bottom: 30%;
    right: -10%;
    animation-delay: 1s;
}

.floating-info.info-4 {
    bottom: 10%;
    left: -15%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.info-card i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.info-card span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--light-color), #f0f0f0);
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon svg {
    color: var(--white);
    width: 32px;
    height: 32px;
}

.mission-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient);
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-banner p {
    font-size: 1.2rem;
    font-weight: 300;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.cta-buttons .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--white);
}

.feature-card {
    padding: 40px 30px;
    border-radius: 15px;
    background: var(--light-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.1);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon svg {
    color: var(--white);
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Communication Section */
.communication-section {
    background: var(--light-color);
}

.communication-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.communication-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 30px;
}

.skills-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.1);
}

.skill-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skill-icon svg {
    color: var(--white);
    width: 20px;
    height: 20px;
}

.skill-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.skill-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.communication-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    color: var(--white);
    width: 20px;
    height: 20px;
}

.highlight-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.highlight-content p {
    color: #666;
    margin: 0;
}

.communication-visual {
    position: relative;
    padding: 50px 20px;
}

.comm-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: absolute;
}

.comm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
}

.comm-card i {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
}

.comm-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.comm-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.comm-card-1 {
    top: 0;
    left: 20%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.comm-card-2 {
    top: 20%;
    right: 10%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.comm-card-3 {
    bottom: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

.comm-card-4 {
    bottom: 0;
    right: 20%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}


        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .faq-accordion .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .faq-accordion .accordion-header button {
            background: #fff;
            border: none;
            padding: 20px 25px;
            font-weight: 600;
            color: #2c3e50;
            border-radius: 0;
            box-shadow: none;
        }

        .faq-accordion .accordion-header button:not(.collapsed) {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
        }

        .faq-accordion .accordion-body {
            padding: 20px 25px;
            background: #fff;
            color: #6c757d;
            line-height: 1.6;
        }

        .faq-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            color: #2c3e50;
            position: relative;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b6b;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .pricing-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .pricing-amount {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .pricing-period {
            opacity: 0.7;
            margin-bottom: 30px;
        }

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

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured .pricing-features li {
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-btn {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .pricing-card.featured .pricing-btn {
            background: white;
            color: var(--secondary-color);
        }

        .pricing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Portfolio Section */
        .portfolio-section {
            background: #f8f9fa;
        }

        .portfolio-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .portfolio-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }

        .portfolio-image svg {
            font-size: 48px;
            color: white;
            display: none;
        }

        .portfolio-content {
            padding: 25px;
        }

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

        .portfolio-location {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .portfolio-result {
            background: linear-gradient(135deg, var(--secondary-color)20 0%, var(--primary-color)20 100%);
            padding: 15px;
            border-radius: 10px;
            font-weight: 600;
            color: #2c3e50;
            text-align: center;
        }

        /* Testimonials Section */
        .testimonials-section {
            /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */
            background: #ffffff;
            color: white;
        }

        .testimonial-card {
            background: white;
            color: #2c3e50;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            margin: 20px 0;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: bold;
        }

        .testimonial-text {
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 25px;
            padding-top: 20px;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .testimonial-company {
            color: #6c757d;
            font-size: 14px;
        }

        /* Process Section */
        .process-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .process-step {
            background-color: #ffffff;
            text-align: center;
            padding: 30px 20px;
            position: relative;
            height: 100%;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        /* .process-step::before {
            content: '';
            position: absolute;
            top: 68px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            z-index: 1;
        }

        .process-step.last-child::before {
            display: none;
        } */

        .process-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .process-description {
            color: #6c757d;
            line-height: 1.6;
        }

        /* Blog Section */
        .blog-section {
            background: white;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .blog-image i {
            font-size: 36px;
            color: white;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-link {
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .blog-link:hover {
            color: var(--primary-color);
        }

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.1);
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--white);
    width: 20px;
    height: 20px;
}

.contact-details h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-details a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-floating .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

.form-floating .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-floating .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

.contact-form .btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-outline-light-white {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light-white:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-section h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    /* color: var(--primary-color); */
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.social-links a i {
    width: 18px;
    height: 18px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
}

.contact-item-footer i {
    color: var(--secondary-color);
    width: 18px;
    height: 18px;
}

.contact-item-footer a {
    color: #ededed;
    text-decoration: none;
}

.contact-item-footer a:hover {
    text-decoration: underline;
}

.footer hr {
    border-color: #555;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.back-to-top i {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-info.info-1,
    .floating-info.info-3 {
        right: -5%;
    }
    
    .floating-info.info-2,
    .floating-info.info-4 {
        left: -5%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content h2,
    .communication-content h2,
    .cta-banner h2 {
        font-size: 2.2rem;
    }
    
    .floating-info {
        display: none;
    }
    
    .communication-visual {
        margin-top: 50px;
    }
    
    .comm-card {
        position: relative;
        margin-bottom: 20px;
    }
    
    .comm-card-1,
    .comm-card-2,
    .comm-card-3,
    .comm-card-4 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        min-width: 250px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .mission-card,
    .contact-form {
        padding: 30px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-item p{
        font-size: 14px;
        line-height: 16px;
    }
    .skill-item {
        padding: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .enroll-btn {
        margin-top: 15px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        min-width: 250px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .about-content h2, .communication-content h2, .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption-custom {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .mission-card,
    .feature-card {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .marquee-content {
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* WOW.js overrides */
.wow {
    visibility: hidden;
}

/* Custom animations for better performance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Loading performance optimizations */
.carousel-bg {
    background-attachment: scroll;
}

/* Smooth transitions for better UX */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Print styles */
@media print {
    .navbar,
    .back-to-top,
    .marquee-container {
        display: none !important;
    }
    
    .hero-section {
        height: auto !important;
        min-height: 200px;
    }
    
    .carousel-overlay {
        background: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .section-header,
    .service-card,
    .mission-card,
    .feature-card {
        page-break-inside: avoid;
    }
}

        .hero {
            min-height: 90vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero h1 span {
            font-size: 1.2rem;
            color: var(--primary-color);
        }

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

        .about-features li {
            margin-bottom: 10px;
        }

        .about-features li svg {
            color: var(--primary-color);
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 100px;
                min-height: 70vh;
            }

            .hero h1 {
                font-size: 2.1rem;
            }

            .hero h1 span {
                display: inline-block;
            }

            .my-hero-buttons {
                display: flex;
            }

            .my-hero-buttons .btn.btn-primary {
                background: var(--gradient);
                border: none;
                border-radius: 10px;
                padding: 5px 10px;
                font-weight: 600;
                font-size: 12px;
            }

            .my-hero-buttons .btn.btn-outline-light {
                border: 2px solid #333;
                color: #333;
                background: transparent;
                border-radius: 10px;
                padding: 5px 10px;
                font-weight: 600;
                font-size: 12px;
            }

            .my-hero-buttons svg {
                width: 16px;
                height: 16px;
            }

            .my-hero-buttons.mt-5 {
                margin-top: 20px !important;
                margin-bottom: 20px !important;
            }

            .process-step {
                padding: 15px 8px;
            }

            .process-number {
                width: 50px;
                height: 50px;
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 10px;
            }
            .process-description{
                font-size: 12px;
                line-height: 1.4;
            }
        }
    .text-primary{
        color: var(--primary-color) !important;
    }