* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation Styles */
         /* Navigation Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, #0099CC, #003d5c);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .navbar.scrolled {
            background: linear-gradient(135deg, rgba(0,153,204,0.95), rgba(0,61,92,0.95));
            padding: 0.5rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-profile {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .logo-profile:hover {
            transform: scale(1.1);
            border-color: #FFC107;
        }

        .logo-profile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .logo-profile i {
            font-size: 1.5rem;
            color: white;
        }

        .logo {
            background: linear-gradient(45deg, #FFC107, #FF9800);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
        }

        .logo-text {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-link:hover, .nav-link.active {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,153,204,0.8), rgba(0,61,92,0.8));
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background: linear-gradient(45deg, rgba(0,153,204,0.8), rgba(0,61,92,0.8)); }
            50% { background: linear-gradient(45deg, rgba(0,61,92,0.8), rgba(0,153,204,0.8)); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(45deg, #FFC107, #FF9800);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255,193,7,0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #0099CC;
            transform: translateY(-3px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 2;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Section Styles 
        .section {
            padding: 6rem 0;
            position: relative;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .section:nth-child(even) {
            background: rgba(0,153,204,0.05);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #0099CC;
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #FFC107, #FF9800);
            margin: 0 auto;
            border-radius: 2px;
        }*/
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #0099CC;
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #FFC107, #FF9800);
            margin: 0 auto 2rem;
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section 
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, #0099CC, #FFC107);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,153,204,0.2);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #0099CC, #FFC107);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .about-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }*/
        .about {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .about-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(45deg, #FFC107, #FF9800);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .card-icon {
            background: linear-gradient(135deg, #0099CC, #003d5c);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .about-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .about-card h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .about-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
        }

        /* About Images */
        .about-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            object-fit: cover;
            margin-bottom: 2rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Pillars Section 
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .pillar-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .pillar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .pillar-image {
            padding: 2rem;
            text-align: center;
            background: linear-gradient(45deg, #0099CC);
            position: relative;
            padding: 2rem;
            text-align: center;
            height: 200px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pillar-card:nth-child(1) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(2) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(3) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1520637836862-4d197d17c0a4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(4) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(5) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(6) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-image i {
            font-size: 3rem;
            color: white;
        }

        .pillar-content {
            padding: 2rem;
        }

        .pillar-title {
            color: #0099CC;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .pillar-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pillar-overlay {
    position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
}

.pillar-overlay i {
    font-size: 3rem;
    color: white;
}
.pillar-card:hover .pillar-overlay {
            background: linear-gradient(45deg, rgba(0,153,204,0.9));
        }

        .pillar-overlay i {
            font-size: 3rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            z-index: 1;
        }

        .pillar-content {
            padding: 2rem;
            background: rgba(255,255,255,0.95);
        }

        .pillar-title {
            color: #0099CC;
            margin-bottom: 1rem;
            font-weight: 600;
            font-size: 1.5rem;
        }

        .pillar-description {
            color: #333;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .fade-in {
            opacity: 1;
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }*/
        /* Strategic Pillars Section */
        .pillars {
            background: linear-gradient(135deg, #0099CC, #003d5c);
            color: white;
        }

        .pillars .section-title {
            color: white;
        }

        .pillars .section-header p {
            color: rgba(255,255,255,0.9);
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
        }

        .pillar-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }

        .pillar-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(255,193,7,0.2), rgba(255,152,0,0.2));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .pillar-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }

        .pillar-image i {
            font-size: 4rem;
            color: white;
            z-index: 1;
            position: relative;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .pillar-content {
            text-align: center;
        }

        .pillar-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }

        .pillar-description {
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            font-size: 1rem;
        }
        /*images pillar*/
        .pillar-image {
            padding: 2rem;
            text-align: center;
            background: linear-gradient(45deg, #0099CC);
            position: relative;
            padding: 2rem;
            text-align: center;
            height: 200px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pillar-card:nth-child(1) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(2) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(3) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1520637836862-4d197d17c0a4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(4) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(5) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-card:nth-child(6) .pillar-image {
            background-image: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .pillar-image i {
            font-size: 3rem;
            color: white;
        }

        .pillar-content {
            padding: 2rem;
        }

        .pillar-title {
            color:white;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .pillar-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


        /* Hero Section (placeholder) */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, #0099CC, #003d5c);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.5rem;
            opacity: 0.9;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideLeft 1s ease forwards;
        }

        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            animation: slideRight 1s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes slideLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .about-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }

            .pillars-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #0099CC, #003d5c);
                flex-direction: column;
                gap: 0;
                padding: 2rem;
                transform: translateY(-100vh);
                transition: transform 0.3s ease;
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .nav-container {
                padding: 0 1rem;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-card {
                padding: 2rem 1.5rem;
            }

            .pillar-card {
                padding: 1.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .pillar-image {
                height: 150px;
            }

            .pillar-image i {
                font-size: 3rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .about-card h3 {
                font-size: 1.5rem;
            }

            .pillar-title {
                font-size: 1.5rem;
            }

            .about-card p,
            .pillar-description {
                font-size: 0.9rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .pillar-image {
                height: 120px;
            }

            .pillar-image i {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 360px) {
            .about-card {
                padding: 1.5rem 1rem;
            }

            .pillar-card {
                padding: 1rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .pillars-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .container {
                padding: 0 1rem;
            }

            .pillar-image {
                height: 150px;
                padding: 1.5rem;
            }

            .pillar-overlay i {
                font-size: 2.5rem;
            }
        }

        /* Services Section with Image Grids */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: lightblue;
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,153,204,0.1), rgba(255,193,7,0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,153,204,0.2);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: lightblue;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2.5rem;
            color: white;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .service-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(0,153,204,0.2), rgba(255,193,7,0.2));
            border-radius: 10px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            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);
        }

        /* Login Modal */
        .login-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(5px);
        }

        .login-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            animation: modalAppear 0.3s ease-out;
        }

        @keyframes modalAppear {
            from { opacity: 0; transform: translate(-50%, -60%); }
            to { opacity: 1; transform: translate(-50%, -50%); }
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color:greenyellow;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: #333;
        }

        .login-form {
            text-align: center;
        }

        .login-title {
            color: #0099CC;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(0,153,204,0.2);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: lightblue;
        }

        .form-control:focus {
            outline: none;
            border-color: #0099CC;
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,153,204,0.2);
        }
        /* Login Button Fix */
.btn.btn-secondary {
    background: black;
    color: #0099CC; /* Blue text color for visibility */
    border: 2px solid #0099CC;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn.btn-secondary:hover {
    background: #0099CC;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,153,204,0.3);
}

.btn.btn-secondary i {
    margin-right: 0.5rem;
}

        /* Membership Section */
        .membership-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .membership-form {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-title {
            color: #0099CC;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            color: #666;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .category-option {
            padding: 1rem;
            border: 2px solid rgba(0,153,204,0.2);
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.1);
        }

        .category-option:hover {
            border-color: #0099CC;
            background: rgba(0,153,204,0.1);
        }

        .category-option.selected {
            border-color: #FFC107;
            background: rgba(255,193,7,0.2);
            transform: scale(1.05);
        }

        .category-icon {
            font-size: 1.5rem;
            color: #0099CC;
            margin-bottom: 0.5rem;
        }

        .membership-fee {
            background: lightblue;
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin: 1.5rem 0;
        }

        .fee-amount {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .fee-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .payment-info {
            background: rgba(0,153,204,0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }

        .payment-title {
            color: #0099CC;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .payment-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0,153,204,0.1);
        }

        .payment-label {
            font-weight: 600;
            color: #0099CC;
        }

        .payment-value {
            color: #333;
        }

        .benefits-section {
            background:lightblue;
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid lightblue;
        }

        .benefits-title {
            color: #0099CC;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background:lightblue;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateX(10px);
            background:lightblue;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: lightblue;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            color: #0099CC;
            margin-bottom: 0.5rem;
        }

        /* Contact Section */
       .contact {
            background: linear-gradient(135deg, #0099CC, #003d5c);
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
            background: rgba(255,255,255,0.2);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #FFC107, #FF9800);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }*//* Contact Section
.contact {
    background: linear-gradient(135deg, #0099CC, #003d5c);
    color: black;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title {
    color: goldenrod;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact .section-divider {
    background: linear-gradient(45deg, #FFC107, #FF9800);
    box-shadow: 0 0 20px rgba(255,193,7,0.5);
}


        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #0099CC;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #0099CC, #FFC107);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 10px 20px rgba(0,153,204,0.3);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .membership-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .card-image {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    margin: -2rem -2rem 1rem -2rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-card:hover .card-image img {
    transform: scale(1.1);
}
 /* Skills Development Section CSS */
        .skills-development {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .skills-development::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="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }

        .skills-development .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #0099CC, #FFC107);
            margin: 0 auto 1rem;
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .skills-framework-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .skill-category {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .skill-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 153, 204, 0.2);
            border-color: #0099CC;
        }

        .skill-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #0099CC, #FFC107);
            z-index: 1;
        }

        .skill-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .skill-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: linear-gradient(135deg, #0099CC, #007aa3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 153, 204, 0.3);
        }

        .skill-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
        }

        .skill-image {
            width: 100%;
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .skill-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .skill-category:hover .skill-image img {
            transform: scale(1.05);
        }

        .skill-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .skill-item {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #555;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .skill-item:last-child {
            border-bottom: none;
        }

        .skill-item:hover {
            color: #0099CC;
            transform: translateX(5px);
        }

        .skill-item i {
            color: #0099CC;
            width: 16px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Development Pathways Section */
        .pathways-section {
            margin-top: 4rem;
            padding: 3rem 0;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .pathways-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #0099CC, #FFC107, #28a745, #dc3545, #6f42c1);
            z-index: 1;
        }

        .pathways-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pathways-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 1rem;
            position: relative;
        }

        .pathways-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .pathways-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pathway-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .pathway-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, var(--pathway-color, #0099CC), var(--pathway-color-light, #33aadd));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .pathway-card:hover::before {
            transform: translateX(0);
        }

        .pathway-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--pathway-color, #0099CC);
        }

        .pathway-card:nth-child(1) {
            --pathway-color: #0099CC;
            --pathway-color-light: #33aadd;
        }

        .pathway-card:nth-child(2) {
            --pathway-color: #28a745;
            --pathway-color-light: #5cbf2a;
        }

        .pathway-card:nth-child(3) {
            --pathway-color: #FFC107;
            --pathway-color-light: #ffcd39;
        }

        .pathway-card:nth-child(4) {
            --pathway-color: #dc3545;
            --pathway-color-light: #e25563;
        }

        .pathway-card:nth-child(5) {
            --pathway-color: #6f42c1;
            --pathway-color-light: #8a63d2;
        }

        .pathway-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--pathway-color, #0099CC), var(--pathway-color-light, #33aadd));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .pathway-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .pathway-description {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .skills-development {
                padding: 60px 0;
            }
            
            .skills-framework-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .skill-category {
                padding: 1.5rem;
            }
            
            .pathways-section {
                margin-top: 3rem;
                padding: 2rem 1rem;
            }
            
            .pathways-title,
            .section-title {
                font-size: 2rem;
            }
            
            .pathways-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .pathway-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .skill-header {
                flex-direction: column;
                text-align: center;
            }
            
            .skill-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .skill-title {
                font-size: 1.2rem;
            }
            
            .pathway-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        /* Animation Classes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        .slide-left {
            animation: slideInLeft 0.6s ease forwards;
        }

        .slide-right {
            animation: slideInRight 0.6s ease forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        /* ===== MEDIA QUERIES FOR RESPONSIVE DESIGN ===== */

/* Large Desktop Screens (1200px and above) */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .services-grid,
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .skills-framework-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet Landscape (768px - 1199px) */
@media screen and (max-width: 1199px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid,
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .skills-framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .membership-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media screen and (max-width: 991px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }
    
    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pathways-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media screen and (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .services-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skills-framework-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pathways-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-option {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-icon {
        font-size: 1.5rem;
    }
    
    .category-label {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Mobile Portrait (320px - 575px) */
@media screen and (max-width: 575px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-profile {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .pillar-card,
    .about-card {
        padding: 1.5rem;
    }
    
    .service-icon,
    .pillar-image {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .category-option {
        padding: 1.5rem 1rem;
    }
    
    .skill-list {
        padding: 0;
    }
    
    .skill-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .pathway-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .pathway-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .membership-fee {
        text-align: center;
        padding: 2rem;
    }
    
    .fee-amount {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media screen and (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .service-card,
    .pillar-card,
    .about-card {
        padding: 1rem;
    }
}

/* Hover effects for touch devices */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover,
    .btn:hover,
    .service-card:hover,
    .pillar-card:hover {
        transform: none;
    }
    
    .category-option:hover {
        transform: none;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-image img,
    .about-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media screen and (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-scroll,
    .hamburger {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }
    
    .service-card,
    .pillar-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}