
@charset "utf-8";
/* CSS Document */
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1a1a1a;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #3631d2 100%);
            color: var(--text-light);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
            opacity: 0.4;
        }

        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .footer-left p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-right {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-right a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-right a:hover {
            color: var(--text-light);
            transform: translateY(-1px);
        }

        .footer-right a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .footer-right a:hover::after {
            width: 100%;
        }

        /* Footer Mobile Responsiveness */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-right {
                justify-content: center;
                gap: 1.5rem;
            }

            .footer-right a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .footer-right {
                flex-direction: column;
                gap: 1rem;
            }
        }

        :root {
    --primary-color: #2563eb;
    --secondary-color: #1d4ed8;
    --accent-color: #0ea5e9;
    --accent-pink: #3b82f6;
    --accent-cyan: #06b6d4;
    --text-primary: #0f172a;
    --text-secondary: #4a545f;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.95);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-tertiary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-elegant: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #60a5fa 100%);
    --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 -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glass: rgba(37, 99, 235, 0.15);
    --glass-border: rgba(37, 99, 235, 0.2);
}

      /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
            padding: 0.75rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--gradient-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
                .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    color:rgb(37, 97, 218);
}

.logo img {
    width: 80px;
    height: 40px;
    object-fit: contain;
}
.hero {
    position: relative;
    overflow: hidden;
}

.hero {
    position: relative;
    overflow: hidden;
}

/* Floating Logo */
.hero-logo {
    position: absolute;
    top: 45%; /* BETWEEN button & content */
    left: 50%;
    width: 500px;
    height: 500px;
    background: url("images/cpta logo.png") no-repeat center;
    background-size: contain;
    transform: translateX(-50%);
    opacity: 0.40;
    z-index: 7;
    pointer-events: none;
    animation: floatLogo 8s ease-in-out infinite;
}
@keyframes floatLogo {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-30px); }
}

/* Hero content above logo */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Floating animation */

    @keyframes floatUpDown {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-60px); /* move UP */
        }
        100% {
            transform: translateY(0); /* move DOWN */
        }
    }

/* Navigation Links */

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 1px;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: hwb(210 6% 92% / 0.98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
        }

        .mobile-nav-links li {
            margin: 2rem 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active .mobile-nav-links li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

        .mobile-nav-links a {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mobile-nav-links a:hover {
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: left;
            justify-content: center;
            background: var(--gradient-elegant);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: float 25s ease-in-out infinite;
            opacity: 0.7;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation: floatShape1 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            background: rgba(255, 255, 255, 0.08);
            animation: floatShape2 25s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            top: 30%;
            right: 25%;
            background: rgba(255, 255, 255, 0.12);
            animation: floatShape3 18s ease-in-out infinite;
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            bottom: 25%;
            left: 20%;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            animation: floatShape4 22s ease-in-out infinite;
        }

        .shape-5 {
            width: 40px;
            height: 40px;
            top: 15%;
            right: 40%;
            background: rgba(255, 255, 255, 0.15);
            animation: floatShape5 16s ease-in-out infinite reverse;
        }

        .shape-6 {
            width: 140px;
            height: 140px;
            bottom: 15%;
            right: 10%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 30px;
            animation: floatShape6 28s ease-in-out infinite;
        }

        @keyframes floatShape1 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
            50% { transform: translateY(-15px) translateX(-10px) rotate(180deg); }
            75% { transform: translateY(-40px) translateX(15px) rotate(270deg); }
        }

        @keyframes floatShape2 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            33% { transform: translateY(25px) translateX(-20px) scale(1.1); }
            66% { transform: translateY(-20px) translateX(25px) scale(0.9); }
        }

        @keyframes floatShape3 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            50% { transform: translateY(-25px) translateX(-30px) rotate(180deg); }
        }

        @keyframes floatShape4 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(20px) translateX(-15px) rotate(45deg); }
            50% { transform: translateY(-10px) translateX(30px) rotate(90deg); }
            75% { transform: translateY(15px) translateX(-20px) rotate(135deg); }
        }

        @keyframes floatShape5 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-35px) translateX(20px) scale(1.2); }
        }

        @keyframes floatShape6 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-15px) translateX(10px) rotate(60deg); }
            66% { transform: translateY(10px) translateX(-25px) rotate(120deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 0.8; }
        }

        .hero-content {
            text-align: center;
            color: var(--text-light);
            z-index: 2;
            position: relative;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 5s ease 0.5s forwards;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

                .hero h1 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.4s forwards;
            line-height: 1.1;
            letter-spacing: -1px;
            border-radius: 120px;

        }
        .hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    color: #fcfbfbe6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    /* Border styling */
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 15px 25px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.25);
}

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-indicator:hover {
            border-color: rgba(255, 255, 255, 0.9);
        }

        .scroll-indicator::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(-50%) translateY(0); opacity: 1; }
            100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
        }

        /* Section Styles */
        section {
            padding: 8rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 4rem;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* About Section */
        .about {
            background: var(--bg-secondary);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
        }

        .about-content {
            display: grid;

            grid-template-columns: 1fr 1.5fr;
            gap: 6rem;
            align-items: center;
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 500px;
            background: url('images/gallery\ five.jpeg') center/cover;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            transform: rotate(-2deg);
            transition: transform 0.4s ease;
        }

        .about-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
            transition: opacity 0.3s ease;
        }

        .about-image:hover::before {
            opacity: 0.7;
        }

        .about-text h3 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.3;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .skills {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .skill-tag {
            padding: 0.75rem 1.5rem;
            background: rgb(62, 62, 239);
            color: white;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        /* Course Section */
        .courses {
            background: var(--bg-primary);
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 2rem;
        }

        .course-item {
            background: var(--bg-card);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(20px);
            opacity: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .course-item.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .course-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-2xl);
        }

        .course-image {
            width: 100%;
            height: 180px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .course-item:nth-child(1) .course-image {
            background-image: url('images/Public\ Administration\,\ BA\ \(Online\).jpg');
        }

        .course-item:nth-child(2) .course-image {
            background-image: url('images/BUSINESS\ SCHOOL.jpg');
        }

        .course-item:nth-child(3) .course-image {
            background-image: url('images/Best\ Civil\ lawyer\'s\ in\ Bhopal\ Call\ Now\ _-\ 8800110989.jpg');
        }

        .course-item:nth-child(4) .course-image {
            background-image: url('images/Best\ Human\ Resources\ Internships\ in\ United\ States\,\ 2021\ -\ Big\ Internships.jpg');
        }

        .course-item:nth-child(5) .course-image {
            background-image: url('images/Emotional\ Intelligence.jpg');
        }

        .course-item:nth-child(6) .course-image {
            background-image: url('images/Why\ is\ Health\ and\ Safety\ Important\ in\ the\ Workplace.jpg');
        }

        .course-item:nth-child(7) .course-image {
            background-image: url('images/Production\ and\ Operations\ Management_\ Streamlining\ Processes\ for\ Business\ Efficiency.jpg');
        }
        .course-item:nth-child(8) .course-image {
            background-image: url('images/Fiverr\ -\ Provide\ a\ premium\ workshop\ training\ course\ on\ supply\ chain\ management\ by\ Andrewpip.jpg');
        }
        .course-item:nth-child(9) .course-image {
            background-image: url('images/Expert\ Interview_\ Does\ Your\ Project\ Management\ Software\ Cause\ Data\ Overwhelm_.jpg');
        }
        .course-item:nth-child(10) .course-image {
            background-image: url('images/Business\ laptop\ Photos\ -\ Download\ Free\ High-Quality\ Pictures\ _\ Freepik.jpg');
        }
        .course-item:nth-child(11) .course-image {
            background-image: url('images/download\ \(3\).jpg');
        }

        .course-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
            transition: all 0.3s ease;
        }

        .course-item:hover .course-image::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
        }

        .course-content {
            padding: 2rem;
        }

        .course-content h4 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .course-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .course-tech {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .tech-tag {
            padding: 0.4rem 1rem;
            background: rgb(23, 79, 199);
            color: white;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: black;
            color: var(--text-light);
        }
        .impact-section {
    background: #c6dce7;
    padding: 90px 20px;
}

.course-duration {
  color: #2564c8;       /* blue */
  font-size: 0.70em;    /* smaller than course title */
font-weight: 500;
}

/* Paragraph limit */
.course-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    max-height: 90px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.course-content p.expanded {
    max-height: 1000px;
}

/* Action row (Read more + Apply now) */
.action-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

/* Read more / less */
.read-more {
    font-size: 0.85rem;
    color: #1e73ff;
    font-weight: 600;
    cursor: pointer;
}

.read-more:hover {
    text-decoration: underline;
}
.read-more {
    position: relative;
    font-size: 0.85rem;
    color: #1e73ff;
    font-weight: 600;
    cursor: pointer;
  text-decoration: none; /* remove default underline */
}

.read-more {
    font-size: 0.85rem;
    color: #1e73ff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.read-more:hover {
    text-decoration-thickness: 2px;
}

.impact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-text h2 {
    font-size: 34px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.impact-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
}

.impact-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid blue;
    border-radius: 25px;
    color: blue;
    text-decoration: none;
    font-size: 14px;
}

.impact-btn:hover {
    background: #020711;
}

/* Stats grid */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    padding: 30px 20px;
    border-radius: 6px;
    color: #1f2937;
}

.stat-box h3 {
    margin: 0 0 10px;
    font-size: 36px;
    font-weight: 600;
}

.stat-box span {
    font-size: 16px;
    line-height: 1.4;
    display: block;
}

/* Color blocks */
.stat-box.blue {
    background: linear-gradient(135deg, #4f6ef7, #6a8bff);
}

.stat-box.yellow {
    background: linear-gradient(135deg, #4f6ef7, #4f6ef7);
}

.stat-box.purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: #ffffff;
}

.stat-box.cyan {
    background: linear-gradient(135deg, #38bdf8, #60a5fa);
}

/* Responsive */
@media (max-width: 900px) {
    .impact-container {
    grid-template-columns: 1fr;
    }
}
/* Section */
.edu-section {
    background: #ffffff;
    padding: clamp(50px, 7vw, 90px) 20px;
    font-family: "Segoe UI", sans-serif;
}

/* Title */
.edu-title {
    text-align: center;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: #2a77bf;
    margin-bottom: clamp(30px, 6vw, 60px);
}

/* Grid */
.edu-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 4vw, 40px);
}

/* Card */
.edu-item {
    display: flex;
    gap: 18px;
    background: #d5dde4;
    padding: 22px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #1d72d8;
}

.edu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(13, 59, 102, 0.15);
}

/* Icon */
.edu-icon {
    font-size: 32px;
    min-width: 48px;
    height: 48px;
    background: #1d72d8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.edu-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0d3b66;
}

.edu-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Mobile adjustments */
@media (max-width: 500px) {
    .edu-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .edu-icon {
        margin-bottom: 10px;
    }
}
.success-section {
    padding: 80px 6%;
    background: #e4e3e8;
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #0b2c5d;
}

.success-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.success-video iframe {
    width: 100%;
    height: 320px;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.success-content {
    position: relative;
    padding-left: 20px;
}

.quote-icon {
    font-size: 80px;
    color: #1e60d4;
    position: absolute;
    top: -40px;
    left: 0;
    opacity: 0.2;
}

.success-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
}

.author strong {
    display: block;
    font-size: 17px;
    color: #0b2c5d;
}

.author span {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
    .success-wrapper {
    grid-template-columns: 1fr;
    }

    .success-video iframe {
    height: 260px;
    }

    .success-content {
    padding-left: 0;
    }  

    .quote-icon {
    left: -10px;
    }
}

.brief-section {
    padding: 80px 6%;
    background: #f6f8fb;
}

.brief-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0b2c5d;
}

/* Gallery Grid */
.brief-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.brief-btn:hover {
    background: #0b2c5d;
    transform: translateY(-3px);
}

.brief-section {
    padding: 80px 6%;
    background: #f6f8fb;
}

.brief-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0b2c5d;
}

.brief-btn:hover {
    background: #0b2c5d;
    transform: translateY(-3px);
}

.site-footer {
    background: #1c1f26;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cfd3dc;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #3a3f4b;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #cfd3dc;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid #cfd3dc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd3dc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ffffff;
    color: #1c1f26;
    border-color: #ffffff;
}

.brief-section {
    padding: 80px 6%;
    background: #f6f8fb;
}

.brief-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0b2c5d;
}
.impact-text {
    max-width: 600px;
}

.impact-intro {
    margin-bottom: 15px;
}

.impact-more {
    display: none;
    margin-top: 15px;
    line-height: 1.6;
}

.impact-more h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Button */
.impact-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0057b8;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-section {
    padding: 60px 20px;
    background: #ffffff;
}

.gallery-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.gallery-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD BOX */
.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
}

/* IMAGE BOX */
.gallery-image {
    height: 220px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.gallery-content {
    padding: 20px;
}

.gallery-date {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.gallery-title {
    font-size: 1.05rem;
    color: #111;
    line-height: 1.5;
}

/* VIEW MORE BUTTON */
.view-more-wrapper {
    text-align: center;
    margin-top: 45px;
}

.view-more-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #1e6fd9;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.view-more-btn:hover {
    background: #030e1f;
    transform: translateY(-3px);
}

.mv-section {
background: linear-gradient(135deg, #0d3b8e, #0a66c2);
padding: 80px 20px;
}


.mv-container {
max-width: 1100px;
margin: auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
}


.mv-card {
background: #e9eaf0;
border-radius: 22px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.mv-card:hover {
transform: translateY(-10px);
box-shadow: 0 30px 55px rgba(0, 0, 0, 0.25);
}

.mv-icon {
width: 70px;
height: 70px;
margin: 0 auto 20px;
border-radius: 50%;
background: linear-gradient(135deg, #0a66c2, #0d3b8e);
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
}

.mv-title {
font-size: 1.6rem;
letter-spacing: 1px;
margin-bottom: 15px;
color: #0a66c2;
}

.mv-text {
font-size: 1.05rem;
line-height: 1.7;
color: #333333;
}

.mv-values {
font-weight: 600;
letter-spacing: 0.5px;
}

.mv-values-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

@media (max-width: 600px) {
.mv-card {
padding: 30px 22px;
}
}
.hero .subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    max-width: 700px;   /* optional: keeps lines readable */
}
.newsfeed-section {
    background: linear-gradient(135deg, #2c2f91, #3a3fbf);
    padding: 80px 20px;
    color: #ffffff;
}

.newsfeed-container {
    max-width: 1200px;
    margin: auto;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.newsfeed-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.newsfeed-grid {
    display: grid;
    gap: 30px;
}

.news-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 10px;
    display: block;
}

.news-link {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.news-link::after {
    content: " ›";
}

.news-link:hover {
    text-decoration: underline;
}

/* RIGHT IMAGE */
.newsfeed-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* MOBILE */
@media (max-width: 900px) {
    .split-layout {
    grid-template-columns: 1fr;
    }

    .newsfeed-image {
    margin-top: 30px;
    }
}


     /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .course-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .hero h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .course-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 5rem 0;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-text h3 {
                font-size: 2rem;
            }

            .skills {
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }
        }
        