
        :root {
            --primary-color: #1a5f7a;
            --secondary-color: #2a9d8f;
            --accent-color: #e76f51;
            --gold-color: #d4af37;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --gray-color: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
              --footer-bg: #0c2d41;
            --footer-text: #b0bec5;
            --dark-teal: #2c5f63;
            --bg-light: #f4f7f6;
            --primary-teal: #4c8c92;
            --accent-orange: #e67e22;
            
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        .main-footer {
            background: linear-gradient(135deg, var(--footer-bg) 0%, #082335 100%);
            color: var(--footer-text);
            position: relative;
            overflow: hidden;
        }


        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 2.8rem);
            color: white;
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            color: var(--primary-color);
            position: relative;
            margin-bottom: 2rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .section-title-center h2 {
            text-align: center;
        }

        .section-title-center h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        h3 {
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            color: var(--primary-color);
        }

        p {
            margin-bottom: 1rem;
            color: var(--gray-color);
            font-size: clamp(0.95rem, 2vw, 1rem);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(15px, 3vw, 20px);
        }

        .btn {
            display: inline-block;
            padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 28px);
            border-radius: 4px;
            font-weight: 500;
            font-size: clamp(0.9rem, 2vw, 1rem);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Poppins', sans-serif;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #d65a3d;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        section {
            padding: clamp(40px, 8vw, 80px) 0;
        }

        /* Top Contact Bar */
        .top-contact-bar {
            background-color: var(--primary-color);
            color: white;
            padding: clamp(8px, 1.5vw, 10px) 0;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1002;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .contact-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .contact-info {
            display: flex;
            gap: clamp(10px, 2vw, 25px);
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .contact-item:hover {
            color: var(--gold-color);
        }

        .contact-item i {
            color: var(--gold-color);
            font-size: clamp(0.8rem, 1.5vw, 1rem);
        }

        .social-media {
            display: flex;
            gap: clamp(8px, 1.5vw, 15px);
            align-items: center;
            flex-wrap: wrap;
        }
        
        .frm-rigt {
            display: flex;
            gap: clamp(8px, 1.5vw, 15px);
            align-items: center;
            flex-wrap: wrap;
        }

        .social-media a {
            color: white;
            font-size: clamp(0.8rem, 1.5vw, 1rem);
            width: clamp(24px, 5vw, 28px);
            height: clamp(24px, 5vw, 28px);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .social-media a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: clamp(35px, 7vw, 53px);
            z-index: 1001;
            transition: var(--transition);
                padding: 10px 0px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: clamp(8px, 2vw, 10px) clamp(10px, 2vw, 20px);
        }

        .logo {
            display: flex;
            /*align-items: center;*/
            flex-shrink: 0;
            cursor:pointer;
        }

        .logo-icon {
            width: clamp(50px, 8vw, 89px);
            height: clamp(50px, 8vw, 70px);
            /*background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
           /* border-radius: 50%;*/
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: clamp(8px, 2vw, 15px);
            color: white;
            font-size: clamp(1.5rem, 3vw, 2rem);
            /*box-shadow: var(--shadow);*/
            flex-shrink: 0;
        }

        .logo-text {
            line-height: 1.2;
            min-width: 0;
        }

        .logo-text h2 {
            font-size: clamp(0.9rem, 2vw, 1.3rem);
            margin: 0;
            color: var(--primary-color);
            line-height: 1.2;
            word-break: break-word;
        }

        .logo-text p {
            font-size: clamp(0.7rem, 1.5vw, 0.8rem);
            color: var(--gray-color);
            margin: 0;
            display: none;
        }

        .emcet-badge {
            background-color: var(--accent-color);
            color: white;
            padding: clamp(4px, 1vw, 5px) clamp(10px, 2vw, 15px);
            border-radius: 4px;
            font-weight: 600;
            font-size: clamp(0.7rem, 1.5vw, 0.9rem);
            margin-left: clamp(8px, 2vw, 15px);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            gap: clamp(15px, 2vw, 15px);
        }

        .nav-links a {
            font-weight: 500;
            color: var(--dark-color);
            padding: 5px 0;
            position: relative;
            transition: var(--transition);
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            white-space: nowrap;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--accent-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: clamp(1.3rem, 3vw, 1.5rem);
            color: var(--primary-color);
            cursor: pointer;
            padding: 5px;
            z-index: 1003;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 95, 122, 0.85), rgba(42, 157, 143, 0.85)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?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;
            color: white;
            padding: clamp(100px, 20vw, 180px) 0 clamp(60px, 10vw, 100px);
            text-align: center;
            margin-top: clamp(85px, 15vw, 120px);
        }

        .hero h1 {
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: clamp(15px, 3vw, 25px);
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: clamp(20px, 4vw, 35px);
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 15px;
        }

        .hero-buttons {
            display: flex;
            gap: clamp(15px, 3vw, 20px);
            justify-content: center;
            margin-top: clamp(20px, 4vw, 30px);
            flex-wrap: wrap;
        }

        /* College Info Banner */
        .college-info-banner {
            background-color: var(--primary-color);
            color: white;
            padding: clamp(15px, 4vw, 25px) 0;
            text-align: center;
        }

        .college-info-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: clamp(15px, 3vw, 20px);
            align-items: center;
        }

        .info-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            text-align: left;
        }

        .info-item i {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: var(--gold-color);
            flex-shrink: 0;
        }

        /* Success Stories Section */
        .success-stories {
            background-color: var(--light-color);
        }

        .success-stories h2 {
            color: var(--primary-color);
        }

        .success-content {
            display: flex;
            flex-direction: column;
            gap: clamp(30px, 6vw, 50px);
        }

        @media (min-width: 768px) {
            .success-content {
                flex-direction: row;
                align-items: center;
            }
            
            .success-content > * {
                flex: 1;
            }
        }

        .success-text {
            font-size: clamp(1rem, 2vw, 1.1rem);
            line-height: 1.8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: clamp(15px, 3vw, 20px);
        }

        .stat-item {
            background: white;
            padding: clamp(15px, 3vw, 25px) clamp(12px, 2vw, 20px);
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--secondary-color);
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--gray-color);
            font-size: clamp(0.85rem, 2vw, 1rem);
        }

        /* About Section */
        .about-section {
            background-color: white;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: clamp(30px, 6vw, 50px);
        }

        @media (min-width: 768px) {
            .about-content {
                flex-direction: row;
                align-items: flex-start;
            }
            
            .about-content > * {
                flex: 1;
            }
        }

        .about-text p {
            margin-bottom: clamp(15px, 3vw, 20px);
            font-size: clamp(0.95rem, 2vw, 1.05rem);
        }

        .vision-box {
            background-color: rgba(26, 95, 122, 0.05);
            padding: clamp(20px, 4vw, 30px);
            border-radius: 8px;
            border-left: 5px solid var(--secondary-color);
            margin-top: clamp(15px, 3vw, 20px);
        }

        .vision-box h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        }

        /* Courses Offered */
        .courses-section {
            background-color: var(--light-color);
        }

        .courses-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(20px, 4vw, 30px);
           /* max-width: 800px;*/
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .courses-container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        .course-card {
            background: white;
            border-radius: 8px;
            padding: clamp(25px, 5vw, 35px) clamp(20px, 4vw, 30px);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border-top: 5px solid var(--secondary-color);
            position: relative;
            overflow: hidden;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .course-card.featured {
            border-top-color: var(--accent-color);
        }

        .course-icon {
            width: clamp(60px, 10vw, 70px);
            height: clamp(60px, 10vw, 70px);
            background-color: rgba(26, 95, 122, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto clamp(15px, 3vw, 20px);
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            color: var(--primary-color);
        }

        .course-intake {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: clamp(4px, 1vw, 5px) clamp(12px, 2vw, 15px);
            border-radius: 20px;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            font-weight: 500;
            margin-top: clamp(10px, 2vw, 15px);
        }

        /* Facilities Section */
        .facilities-section {
            background-color: white;
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: clamp(15px, 3vw, 25px);
        }

        .facility-card {
            background: var(--light-color);
            padding: clamp(20px, 4vw, 30px) clamp(15px, 3vw, 25px);
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .facility-card:hover {
            background-color: white;
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .facility-icon {
            font-size: clamp(2rem, 4vw, 2.5rem);
            color: var(--secondary-color);
            margin-bottom: clamp(15px, 3vw, 20px);
        }

        /* Amenities List */
        .amenities-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(15px, 3vw, 20px);
            margin-top: clamp(20px, 4vw, 30px);
        }

        @media (min-width: 768px) {
            .amenities-list {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        .amenity-item {
            display: flex;
            align-items: flex-start;
            gap: clamp(10px, 2vw, 15px);
            padding: clamp(12px, 2vw, 15px);
            background-color: rgba(42, 157, 143, 0.05);
            border-radius: 8px;
        }

        .amenity-item i {
            color: var(--secondary-color);
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* Contact Footer */
        /*.contact-footer {
            background-color: var(--dark-color);
            color: white;
            padding: clamp(40px, 8vw, 60px) 0 clamp(20px, 4vw, 30px);
        }

        .contact-footer h3 {
            color: white;
            margin-bottom: clamp(15px, 3vw, 25px);
            position: relative;
            padding-bottom: 10px;
            font-size: clamp(1.2rem, 2.5vw, 1.4rem);
        }

        .contact-footer h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(25px, 5vw, 40px);
            margin-bottom: clamp(25px, 5vw, 40px);
        }

        @media (min-width: 768px) {
            .footer-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }*/

        .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--gold-color), var(--secondary-color));
        }

        .main-footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(231, 111, 81, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(50%, 50%);
        }

        .footer-top {
            padding: clamp(40px, 8vw, 60px) 0 clamp(30px, 6vw, 40px);
            position: relative;
            z-index: 1;
        }

        .footer-widgets {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(30px, 6vw, 40px);
            margin-bottom: clamp(30px, 6vw, 40px);
        }

        @media (min-width: 768px) {
            .footer-widgets {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .footer-logo-text h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 5px;
            background: linear-gradient(90deg, white, var(--gold-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-logo-text p {
            color: var(--footer-text);
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-about {
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--footer-text);
        }

        .footer-contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
           /* margin-bottom: 15px;*/
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-item i {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-top: 3px;
            width: 20px;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details strong {
            color: white;
            display: block;
            margin-bottom: 2px;
            font-size: 0.95rem;
        }

        .contact-details span {
            color: var(--footer-text);
            font-size: 0.9rem;
        }

        .footer-widget-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .footer-widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
            border-radius: 2px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

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

        .footer-links a {
            color: var(--footer-text);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .footer-links a::before {
            content: '→';
            color: var(--accent-color);
            font-weight: bold;
            opacity: 0;
            transform: translateX(-10px);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 10px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links a i {
            color: var(--accent-color);
            font-size: 0.9rem;
            width: 20px;
        }

        .newsletter-widget {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .newsletter-text {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-input {
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: white;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.1);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, var(--accent-color), #d65a3d);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .newsletter-btn:hover {
            background: linear-gradient(135deg, #d65a3d, var(--accent-color));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
        }

        .footer-bottom {
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-bottom-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .copyright {
            font-size: 0.9rem;
            color: var(--footer-text);
        }

        .copyright a {
            color: var(--gold-color);
            text-decoration: underline;
            transition: var(--transition);
        }

        .copyright a:hover {
            color: var(--accent-color);
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .social-link::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: 0.5s;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .social-link.facebook:hover { background: #1877f2; }
        .social-link.twitter:hover { background: #1da1f2; }
        .social-link.instagram:hover { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
        .social-link.linkedin:hover { background: #0077b5; }
        .social-link.youtube:hover { background: #ff0000; }
        .social-link.whatsapp:hover { background: #25d366; }

        .footer-extra-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }

        .footer-extra-links a {
            color: var(--footer-text);
            font-size: 0.85rem;
            transition: var(--transition);
            position: relative;
            padding: 0 5px;
        }

        .footer-extra-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }

        .footer-extra-links a:hover {
            color: white;
        }

        .footer-extra-links a:hover::after {
            width: 100%;
        }

        .footer-badge {
            background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
        }

        .footer-map {
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .map-placeholder {
            background: linear-gradient(135deg, #1a5f7a, #2a9d8f);
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            gap: 10px;
        }

        .map-placeholder i {
            font-size: 2rem;
            color: var(--gold-color);
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
        }

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

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(231, 111, 81, 0.4);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-logo-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .footer-widgets {
                gap: 30px;
            }

            .newsletter-widget {
                padding: 20px;
            }

            .social-link {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
 header{
		top: clamp(35px, 26vw, 111px);
		}

        }

        @media (max-width: 576px) {
            .footer-bottom-content {
                gap: 15px;
            }

            .footer-extra-links {
                gap: 10px;
            }

            .footer-extra-links a {
                font-size: 0.8rem;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        .contact-info p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: clamp(10px, 2vw, 15px);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            line-height: 1.5;
        }

        .contact-info i {
            color: var(--accent-color);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .quick-links li {
            margin-bottom: clamp(8px, 1.5vw, 12px);
        }

        .quick-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
            display: block;
            padding: 5px 0;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
        }

        .quick-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: clamp(10px, 2vw, 15px);
            margin-top: clamp(15px, 3vw, 20px);
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(35px, 6vw, 40px);
            height: clamp(35px, 6vw, 40px);
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }

        /*.copyright {
            text-align: center;
            padding-top: clamp(20px, 4vw, 30px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            line-height: 1.5;
        }*/

        /* Mobile Menu Styles */
        @media (max-width: 992px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 30px;
                transition: var(--transition);
                box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
                z-index: 1000;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .nav-links a {
                font-size: 1.1rem;
                padding: 10px 0;
                display: block;
                width: 100%;
                border-bottom: 1px solid #eee;
            }
            
            .nav-links a:hover {
                border-bottom-color: var(--accent-color);
            }
            
            .logo-text p {
                display: none;
            }
        }
        .info-item div p{
            color:#fff;
        }

        /* Extra Small Devices */
        @media (max-width: 576px) {
            .contact-container {
                justify-content: center;
                text-align: center;
            }
            
            .contact-info {
                justify-content: center;
            }
            
            .social-media {
                justify-content: center;
                width: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .emcet-badge {
                font-size: 0.75rem;
                padding: 3px 8px;
            }
            
            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .logo-text h2 {
                font-size: 0.85rem;
            }
        }

        /* Tablet Devices */
        @media (min-width: 577px) and (max-width: 768px) {
            .logo-text p {
                display: block;
            }
            
            .college-info-content {
                grid-template-columns: repeat(2, 1fr);
            }
	    header{
		top: clamp(35px, 26vw, 111px);
		}
        }

        /* Large Devices */
        @media (min-width: 1200px) {
            .container {
                padding: 0 15px;
            }
        }

        /* Print Styles */
        @media print {
            .top-contact-bar,
            .mobile-menu-btn,
            .social-media,
            .social-links {
                display: none !important;
            }
            
            header {
                position: static;
            }
            
            .hero {
                margin-top: 0;
            }
            
            .btn {
                display: none;
            }
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Focus Styles */
        *:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        /* Skip to main content link */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent-color);
            color: white;
            padding: 8px;
            z-index: 1004;
            transition: top 0.3s;
        }

        .skip-to-content:focus {
            top: 0;
        }
        .page-header {
            background-color: var(--primary-teal);
            padding: 40px 0;
            color: white;
            text-align: center;
        }
        .page-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 5px; }
        .breadcrumb { font-size: 0.9rem; opacity: 0.9; }

        /* --- FACULTY CONTENT STYLES --- */
        .content-area { padding: 50px 0; }
        
        /* Department Section Header */
        .dept-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            margin-top: 40px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }
        .dept-header h2 {
            font-size: 1.5rem;
            color: var(--dark-teal);
            margin-right: 15px;
            text-transform: uppercase;
        }
        .dept-badge {
            background: var(--accent-orange);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Faculty Grid Layout */
        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }

        /* Individual Faculty Card */
        .faculty-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            padding: 20px;
            border-left: 5px solid var(--primary-teal);
            transition: transform 0.2s;
        }
        .faculty-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* Card Avatar (Using Icon since no photos provided) */
        .f-avatar {
            width: 60px;
            height: 60px;
            background-color: #eef7f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .f-avatar i {
            font-size: 1.8rem;
            color: var(--primary-teal);
        }

        /* Card Info */
        .f-info h3 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .f-designation {
            color: var(--accent-orange);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 6px;
            display: block;
        }
        .f-qual {
            display: inline-block;
            background: #f0f0f0;
            color: #666;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .faculty-grid { grid-template-columns: 1fr; } /* Stack cards on mobile */
            .dept-header { flex-direction: column; align-items: flex-start; }
            .dept-badge { margin-top: 5px; }
        }
        .success-section { padding: 0px 0; }
        
        .success-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        /* CARD DESIGN */
        .alumni-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-bottom: 4px solid var(--accent-orange); /* Orange accent at bottom */
        }

        .alumni-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
        }

        /* Image Wrapper to handle aspect ratio */
        .card-img-wrapper {
            width: 100%;
            height: 200px;
            background-color: #eee;
            position: relative;
            overflow: hidden;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top; /* Focus on faces */
        }

        .card-content { padding: 20px; }

        .student-name {
            font-size: 1.2rem;
            color: var(--dark-teal);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .course-name {
            font-size: 0.85rem;
            color: #888;
            background: #f0f0f0;
            display: inline-block;
            padding: 2px 10px;
            border-radius: 15px;
            margin-bottom: 15px;
        }

        .placement-info {
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .company-name {
            display: block;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .role-badge {
            font-size: 0.8rem;
            color: var(--accent-orange);
            font-weight: bold;
            margin-top: 5px;
            display: block;
        }

        /* --- RECRUITERS LOGO STRIP (Optional Addition) --- */
        .recruiters {
            padding: 40px 0;
            background: white;
            text-align: center;
            margin-bottom: 40px;
        }
        .recruiters h3 { color: var(--text-light); margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px;}
        .logo-flex { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.6; }
        .logo-flex i { font-size: 2rem; }
        .overview-section { padding: 80px 0; }
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .overview-content h2 { color: var(--primary-teal); font-size: 2rem; margin-bottom: 20px; }
        .overview-content p { margin-bottom: 15px; color: var(--text-light); text-align: justify; }
        .highlight-box {
            border-left: 4px solid var(--accent-orange);
            background: #fff5eb;
            padding: 15px;
            margin: 20px 0;
            font-style: italic;
            color: #8a5a3a;
        }
        .overview-img img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

        /* --- OVERVIEW SECTION --- */
        .overview-section { padding: 80px 0; }
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .overview-content h2 { color: var(--primary-teal); font-size: 2rem; margin-bottom: 20px; }
        .overview-content p { margin-bottom: 15px; color: var(--text-light); text-align: justify; }
        .highlight-box {
            border-left: 4px solid var(--accent-orange);
            background: #fff5eb;
            padding: 15px;
            margin: 20px 0;
            font-style: italic;
            color: #8a5a3a;
        }
        .overview-img img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

        /* --- VISION & MISSION --- */
        .vision-mission { background-color: var(--bg-light); padding: 60px 0; }
        .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .vm-card {
            background: white;
            padding: 40px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .vm-card:hover { transform: translateY(-5px); }
        .vm-icon { font-size: 3rem; color: var(--primary-teal); margin-bottom: 20px; }
        .vm-card h3 { margin-bottom: 15px; color: var(--dark-teal); }

        /* --- LEADERSHIP (CHAIRMAN/SECRETARY) --- */
        .leadership { padding: 80px 0; }
        .section-heading { text-align: center; margin-bottom: 50px; }
        .section-heading h2 { font-size: 2rem; color: var(--dark-teal); text-transform: uppercase; }
        
        .leaders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            justify-content: center;
        }
        .leader-card {
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
        }
        .leader-img-box {
            height: 250px;
            background-color: #e0e0e0; /* Placeholder color */
            overflow: hidden;
        }
        .leader-img-box img { width: 100%; height: 100%; object-fit: cover; }
        .leader-info { padding: 25px; }
        .leader-name { font-size: 1.4rem; color: var(--primary-teal); font-weight: 700; margin-bottom: 5px; }
        .leader-role { color: var(--accent-orange); font-weight: 500; font-size: 0.9rem; margin-bottom: 15px; display: block; }

        /* --- UNIQUE AMENITIES (From Brochure) --- */
        .amenities-section { background-color: var(--dark-teal); color: white; padding: 60px 0; }
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .amenity-item1 {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 6px;
            text-align: left;
        }
        .amenity-item1 i { font-size: 2rem; color: var(--accent-orange); margin-bottom: 15px; }
        .amenity-item1 h4 { font-size: 1.2rem; margin-bottom: 10px; }
        .amenity-item1 p { font-size: 0.9rem; opacity: 0.8; color:#fff; }
        .contact-cards-section { padding: 60px 0; background-color: var(--bg-light); }
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .contact-card {
            background: white;
            padding: 40px 20px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .contact-card:hover { transform: translateY(-5px); }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary-teal);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 1.8rem;
        }
        .contact-card h3 { margin-bottom: 15px; color: var(--dark-teal); }
        .contact-card p { color: var(--text-light); margin-bottom: 5px; }
        .contact-card a { color: var(--primary-teal); font-weight: 500; }

        /* --- FORM & MAP SECTION --- */
        .form-map-section { padding: 80px 0; }
        .split-layout {
            display: flex;
            gap: 50px;
        }
        
        /* Contact Form */
        .contact-form-wrapper { flex: 1; }
        .form-title { font-size: 1.8rem; color: var(--dark-teal); margin-bottom: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #555; }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        .form-control:focus { outline: none; border-color: var(--primary-teal); }
        .btn-submit {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }
        .btn-submit:hover { background-color: #d35400; }

        /* Map */
        .map-wrapper { flex: 1; height: 500px; background: #eee; border-radius: 8px; overflow: hidden; }
        .map-wrapper iframe { width: 100%; height: 100%; border: 0; }
        .codes-section { background: var(--bg-light); padding: 40px 0; border-bottom: 1px solid #e0e0e0; }
        .codes-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
        .code-box { background: white; padding: 20px 40px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); min-width: 250px; }
        .code-label { display: block; font-size: 0.9rem; color: #777; margin-bottom: 5px; text-transform: uppercase; }
        .code-value { font-size: 1.8rem; font-weight: 800; color: var(--accent-orange); }
        .affiliation-text { font-size: 0.9rem; color: var(--dark-teal); font-weight: 500; margin-top: 5px; }

        /* --- COURSE INTAKE TABLE --- */
        .intake-section { padding: 60px 0; }
        .section-title { font-size: 1.8rem; color: var(--dark-teal); margin-bottom: 30px; text-align: center; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent-orange); margin: 10px auto 0; }

        .intake-table-wrapper { overflow-x: auto; box-shadow: 0 0 20px rgba(0,0,0,0.05); border-radius: 8px; }
        table.intake-table { width: 100%; border-collapse: collapse; background: white; }
        table.intake-table th { background: var(--primary-teal); color: white; padding: 15px; text-align: left; font-weight: 600; }
        table.intake-table td { padding: 15px; border-bottom: 1px solid #eee; color: #555; }
        table.intake-table tr:last-child td { border-bottom: none; }
        table.intake-table tr:hover { background-color: #f9f9f9; }
        .tag-seat { background: #e8f5e9; color: #2e7d32; padding: 4px 10px; border-radius: 15px; font-weight: bold; font-size: 0.9rem; }

        /* --- ADMISSION PROCESS --- */
        .process-section { background-color: #fff; padding: 60px 0; }
        .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
        .process-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 30px;
            position: relative;
            background: var(--bg-light);
        }
        .step-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: var(--accent-orange);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .process-card h3 { margin-top: 15px; margin-bottom: 15px; color: var(--dark-teal); }
        .process-card ul { padding-left: 20px; }
        .process-card li { list-style-type: disc; margin-bottom: 8px; font-size: 0.95rem; }

        /* --- DOCUMENT CHECKLIST --- */
        .docs-section { background-color: var(--dark-teal); color: white; padding: 60px 0; }
        .docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .check-list li { margin-bottom: 12px; display: flex; align-items: center; font-size: 1rem; }
        .check-list li i { color: var(--accent-orange); margin-right: 15px; font-size: 1.1rem; }
        .docs-note { background: rgba(255,255,255,0.1); padding: 20px; border-radius: 6px; margin-top: 20px; font-size: 0.9rem; }

        /* --- CONTACT CTA --- */
        .cta-section { text-align: center; padding: 60px 0; }
        .cta-phone { font-size: 1.5rem; font-weight: 700; color: var(--primary-teal); margin: 20px 0; display: block; }
        /* --- GALLERY SECTION --- */
        .gallery-section { padding: 60px 0; background: var(--bg-light); }

        /* Filter Buttons */
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            background: white;
            border: 1px solid #ddd;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            color: var(--text-dark);
            transition: 0.3s;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--accent-orange);
            color: white;
            border-color: var(--accent-orange);
            box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background: #000;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 250px; /* Fixed height for uniformity */
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            opacity: 0.9;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
            opacity: 0.6;
        }

        /* Overlay Icon on Hover */
        .gallery-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Hide items when filtered out */
        .gallery-item.hide {
            display: none;
        }

        /* --- LIGHTBOX MODAL (Popup) --- */
        .lightbox {
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: none; /* Hidden by default */
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
            animation: fadeIn 0.3s;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 85vh;
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
        }

        .close-lightbox {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .close-lightbox:hover { color: var(--accent-orange); }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .courses-section { padding: 60px 0; }
        
        .course-row {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }
        
        /* Alternating Layout: Every 2nd row reverses the image/text order */
        .course-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .course-img {
            flex: 1;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .course-img img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: transform 0.5s;
        }
        .course-img:hover img { transform: scale(1.05); }

        .course-content { flex: 1; }
        
        .course-badge {
            background: #e0f2f1;
            color: var(--dark-teal);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .course-title {
            font-size: 2rem;
            color: var(--dark-teal);
            margin-bottom: 15px;
        }

        .course-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            font-size: 0.95rem;
            color: #666;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .course-meta span { display: flex; align-items: center; }
        .course-meta i { margin-right: 8px; color: var(--accent-orange); }

        .course-desc { margin-bottom: 25px; color: #555; text-align: justify; }

        .specializations-list { margin-bottom: 25px; }
        .specializations-list h4 { font-size: 1rem; margin-bottom: 10px; color: var(--text-dark); }
        .spec-tag {
            display: inline-block;
            background: #eee;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.85rem;
            margin-right: 5px;
            margin-bottom: 5px;
            color: #555;
        }
        .btn-orange { background-color: var(--accent-orange); color: white; border: 1px solid var(--accent-orange); }
        .btn-orange:hover { background-color: #d35400; }
.frm-rigt {
    position: relative;
}

.inspection-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    border: none;
    background: #f47c4b;
    color: #fff;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: #0f4c5c;
    min-width: 260px;
    padding: 6px 0;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);

    /* 🔥 MOST IMPORTANT */
    display: none;
    z-index: 9999;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 14px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.15);
}