 
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #4a6fa5;
            --secondary: #6b8cbc;
            --accent: #ffd166;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --text: #333;
            --text-light: #f8f9fa;
            --card-bg: rgba(255, 255, 255, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            background-color: var(--dark);
            color: var(--text-light);
            font-family: Century Gothic;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        p {
            margin-bottom: 1rem;
        }

        /* Utility Classes */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-weight: 600;
        }

        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(26, 26, 46, 0);
            backdrop-filter: blur(10px);
            padding-top: 30px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            border: 2px solid rgb(110, 110, 110);
            border-radius: 50px;
            background-color: #0f142418;
        }

        .logo {
            font-family: Papyrus;
            font-size: 1.8rem;
            color: white;
            letter-spacing: 0.3rem;
        }

        .logo b {
            color: lightgreen;
            font-family: Papyrus;

        }

        .icon img {
            height: 32px;
            width: 32px;
        }

        .icon {
            border: 2px solid rgba(127, 125, 125, 0.5);
            border-radius: 50%;
            height: 48px;
            width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .icon:hover {
            border-color: var(--accent);
        }

        .navigation {
            display: flex;
            gap: 1.5rem;
        }

        .navigation a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.3rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: var(--transition);
        }

        .navigation a:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Section One */
        .one {
            padding-top: 120px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .first {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .header span {
            font-size: 4rem;
            font-weight: 700;
            color: var(--light);
            display: block;
            margin-bottom: 1rem;
        }

        .typewriter-container {
            height: 120px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .typewriter {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent);
            overflow: hidden;
            white-space: nowrap;
            margin: 0;
            animation: typing 4s steps(40, end) infinite;
        }

        @keyframes typing {
            0% { width: 0; }
            20% { width: 100%; }
            80% { width: 100%; }
            100% { width: 0; }
        }

        .header p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .social-icons {
            display: flex;
            gap: 1.5rem;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--card-bg);
            color: var(--light);
            font-size: 1.5rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .ads {
            padding-top: 40px;
        }
        .ads img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            border-radius: 20px;
        }

        .ads img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        /* Section Two */
        .two {
            background: linear-gradient(to bottom, var(--dark), #16213e);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            transform-style: preserve-3d;
            height: 300px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            border-radius: 10px;
        }

        .card-front {
            background: var(--card-bg);
        }

        .card-back {
            background: var(--primary);
            transform: rotateY(180deg);
            background-color: #0f142400;
        }

        .card:hover {
            transform: rotateY(180deg);
        }

        .card i {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .card-back ul {
            list-style: none;
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .card-back li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .card-back li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* Section Three */
        .three {
            background: linear-gradient(to bottom, #16213e, var(--dark));
        }

        .instructor-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .instructor-image {
            text-align: center;
            border-radius: 50%;
        }

        .instructor-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .instructor-info h3 {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .instructor-info .title {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .instructor-details {
            margin-bottom: 1.5rem;
            text-align:justify;
        }

        .instructor-details p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .instructor-details i {
            margin-right: 0.5rem;
            color: var(--accent);
        }

        .description {
            font-style: italic;
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
        }

        /* Section Four */
        .four {
            background: linear-gradient(to bottom, var(--dark), #16213e);
        }

        .career-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .career-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .career-content p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border-radius: 8px;
            transition:var(--transition);
            
        }

        .feature:hover {
            background: var(--card-bg);
        }

        .feature i {
            color: var(--accent);
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }

        .tech-animation {
            position: relative;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .orbiting-tech {
            position: relative;
            width: 300px;
            height: 300px;
        }

        .central-tech {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
            z-index: 2;
        }

        .tech-item {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 0.8rem;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            animation: orbit 20s linear infinite;
        }

        .tech-item:nth-child(2) { animation-delay: -2s; }
        .tech-item:nth-child(3) { animation-delay: -4s; }
        .tech-item:nth-child(4) { animation-delay: -6s; }
        .tech-item:nth-child(5) { animation-delay: -8s; }
        .tech-item:nth-child(6) { animation-delay: -10s; }
        .tech-item:nth-child(7) { animation-delay: -12s; }
        .tech-item:nth-child(8) { animation-delay: -14s; }

        @keyframes orbit {
            0% {
                transform: rotate(0deg) translateX(150px) rotate(0deg);
            }
            100% {
                transform: rotate(360deg) translateX(150px) rotate(-360deg);
            }
        }

        /* Section Five */
        .five {
            background: linear-gradient(to bottom, #16213e, var(--dark));
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            grid-column: 1 / -1;
            text-align: center;
        }

        /* Footer */
        footer {
            background: #0f1424;
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .footer-logo {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2rem;
            color: var(--light);
            letter-spacing: 0.2rem;
        }

        .footer-logo b {
            color: var(--accent);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
        }

        .footer-social a {
            color: var(--light);
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: var(--accent);
            transform: translateY(-5px);
        }

        .copyright {
            margin-top: 2rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .first, .instructor-container, .career-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .header span {
                font-size: 2.5rem;
            }
            
            .typewriter {
                font-size: 2.5rem;
            }
            
            .instructor-image {
                order: -1;
            }
            
            .tech-animation {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }
            
            .navigation {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                flex-direction: column;
                padding: 1rem 0;
                text-align: center;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            }
            
            .navigation.active {
                display: flex;
            }
            
            .navigation a {
                padding: 1rem;
                width: 100%;
                border-radius: 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .contact-form {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .header span {
                font-size: 2rem;
            }
            
            .typewriter {
                font-size: 2rem;
            }
            
            .typewriter-container {
                height: 80px;
            }
            
            .card {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            .header span {
                font-size: 1.8rem;
            }
            
            .typewriter {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .orbiting-tech {
                width: 250px;
                height: 250px;
            }
            
            .tech-item {
                width: 50px;
                height: 50px;
                font-size: 0.7rem;
            }
            
            @keyframes orbit {
                0% {
                    transform: rotate(0deg) translateX(125px) rotate(0deg);
                }
                100% {
                    transform: rotate(360deg) translateX(125px) rotate(-360deg);
                }
            }
        }
