
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 1s infinite;
}

.loading-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Custom Properties */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gradient-primary:   linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.custom-navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.custom-navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    padding: 0.5rem 0;
}

.logo-3d {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-3d:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-nav .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.cta-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-badge {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-stats {
    animation: fadeInUp 1s ease 0.4s both;
}

.floating-btn {
    animation: float 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: -1s;
}

.card-2 {
    top: 24%;
    right: 10%;
    animation-delay: -2s;
}

.card-3 {
    TOP: 67%;
    left: 20%;
    animation-delay: -3s;
}

.card-4 {
    TOP: 40%;
    left: 5%;
    animation-delay: -4s;
}

.card-5 {
    TOP: 55%;
    left: 50%;
    animation-delay: -5s;
}

.hero-3d-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-duration: 15s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-duration: 25s;
    animation-direction: reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 5%;
    animation-duration: 18s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    animation: scrollDown 2s infinite;
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: scrollArrow 2s infinite;
}

@keyframes scrollDown {
    0%, 20% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes scrollArrow {
    0% { transform: rotate(-45deg) translate(0, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(-45deg) translate(-20px, 20px); opacity: 0; }
}

/* About Section */
.about-badge {
    animation: fadeInUp 1s ease;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.about-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin: 0;
}

.about-content h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Founders Section */
.founder-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.founder-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.founder-card:hover .founder-overlay {
    opacity: 1;
}

.founder-overlay .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.founder-overlay .social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.founder-content {
    padding: 2rem;
    text-align: center;
}

.founder-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.founder-achievements .badge {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Course Cards */
.course-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow-heavy);
}

.course-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.course-header i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.ourservices-header {
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
}

.ourservices-header img{
    width: 100%;
    height: 21rem;
}

.ourservices-header i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.course-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.course-body {
    padding: 2rem;
}

.course-body h4 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.course-features {
    margin-top: 1rem;
}

.course-features .badge {
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-highlights li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.course-highlights li i {
    margin-right: 0.5rem;
}

.course-footer {
    padding: 0 2rem 2rem;
}

.sticky
{
    position:absolute;
    bottom:0;
    width: 82%;
    margin-bottom: 1rem;
}

/* Why Us Cards */
.why-us-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    transform: rotateY(360deg);
}

.why-us-card h4 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-content h4 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Event Cards */
.event-card {
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.event-date {
    background: #fff;
    color: blue;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 500;
}

.event-content {
    flex: 1;
}

.event-content h4 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.event-details {
    margin-top: 1rem;
}

.event-details span {
    color: #fff;
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

.event-details i {
    margin-right: 0.5rem;
    color: #0e12d4;
}

.btn-color
{
    background: #fff !important;
    color: blue !important;
}

/* Review Cards */
.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px dashed var(--primary-color);
}

.contact-form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.1);
}

.contact-info {
    text-align: center;
    padding: 2rem;
}

.contact-info i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Contact Floating Button */
.contact-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-main-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.contact-main-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.contact-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    transform: scale(0);
    animation: popIn 0.3s ease forwards;
}

.contact-option.whatsapp {
    background: #25d366;
    animation-delay: 0.1s;
}

.contact-option.call {
    background: #007bff;
    animation-delay: 0.2s;
}

.contact-option:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes popIn {
    to {
        transform: scale(1);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--gradient-primary);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .event-content h4
    {
        margin-top:1rem;
    }
    .ourservices-header img{
        height: 15rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-image {
        height: 300px;
        margin-top: 3rem;
        display:none;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .about-image-container {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-float {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-main-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-options {
        bottom: 70px;
    }
    
    .contact-option {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .founder-card {
        margin-bottom: 2rem;
    }
    
    .founder-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
        margin-top:1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .course-card,
    .why-us-card,
    .blog-card,
    .review-card,
    .founder-card {
        margin-bottom: 2rem;
    }
    
    .hero-stats .col-4 {
        margin-bottom: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Additional Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Animation */
.counter {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Improved Loading Performance */
.preload-images {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
}

/* Enhanced Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .contact-float,
    .scroll-to-top,
    .navbar,
    #loading-screen {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
        margin-bottom: 10pt;
    }
}

/*Footer animation*/
.crafted-line span {
    display: inline-block;
    color: #00d1b2;
    font-weight: 600;
    animation: fadeInUp 1.2s ease-out both;
    font-family: 'Segoe UI', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.crafted-line span:hover {
    color: #ffffff;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer-link {
  color: #00d1b2;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: scale(1.05);
}

 /* Scoped Wrapper for Universal Popup */
  .get-started-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px); /* Blur background */
    background-color: rgba(0, 0, 0, 0.3);
  }

  .get-started-modal-content {
    background: white; /* Gradient Background */
    color: black; /* Text Color */
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
    margin: 15% auto;
    padding: 30px 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: popupScale 0.3s ease-out;
  }

  @keyframes popupScale {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }

  .get-started-close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    color:black;
    cursor: pointer;
  }

  .get-started-icons {
  margin-top: 15px;
}

.get-started-icon-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  background-color: #007bff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 22px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.get-started-icon-btn.green {
  background-color: #25D366;
}

.get-started-icon-btn.blue {
  background-color: #007bff;
}

.get-started-icon-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/*Our Students Works Here*/
        .owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: -3%;
}
.owl-nav button.owl-next {
  right: -3%;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}

.owl-carousel .owl-item img{
    width: 80% !important;
}

.owl-nav button:focus {
    outline: none;
}
.owl-item {
   /* Adjust this value as needed */
  display: flex;
}
.item {
    width: 100%;
}

/*Remove unwanted scroll bar*/
/* Remove unwanted scrollbar */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Reset default margins/padding */
body {
    margin: 0;
    padding: 0;
}

/* Containers adjustment */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Hero section fixes */
.hero-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Prevent horizontal overflow */
.row {
    margin-left: 0;
    margin-right: 0;
}

/* Fix for floating elements */
.floating-card {
    position: absolute;
    /* Add your existing floating card styles */
}

/* Only modify logo size in mobile view */
@media(max-width:600px){
  .navbar img{
    width: 25%!important;  /* Changed from 15% to 25% */
    min-width: 80px!important;  /* Added minimum width */
  }
  
  .sc-top
  {
      margin-top:0.5rem;
  }
  
  .book-demo
  {
      margin:1rem 0rem;
  }
  
  .alert-success
  {
      display:none;
  }
  
  .about-overlay
  {
    bottom: 0px;
    right: 0px;
  }
}
