:root {
            --primary-color: #e74c3c;
            --secondary-color: #2c3e50;
            --text-dark: #333;
            --text-light: #666;
            --border-color: #ddd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Top Header */
        .top-header {
            background: var(--secondary-color);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }

        .top-header a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .top-header a:hover {
            color: var(--primary-color);
        }

        .top-header .phone {
            float: right;
        }

        /* Main Navigation */
        .main-nav {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            max-width: 180px;
            height: auto;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            padding: 8px 15px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

        .btn-admission {
            background: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
        }

        .btn-admission:hover {
            background: #c0392b;
            color: white;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), #c0392b);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .page-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* College Cards */
        .colleges-section {
            padding: 60px 0;
        }

        .college-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .college-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .college-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .college-body {
            padding: 25px;
        }

        .college-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .college-location {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .college-location i {
            color: var(--primary-color);
            margin-right: 5px;
        }

        .college-description {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .btn-read-more {
            background: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }

        .btn-read-more:hover {
            background: #c0392b;
            color: white;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
        }

        .contact-box {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
        }

        .contact-box h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-box input,
        .contact-box textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
        }

        .contact-box .btn-send {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            width: 100%;
            font-weight: 600;
            cursor: pointer;
        }

        .contact-box .btn-send:hover {
            background: #c0392b;
        }

        .contact-info {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
        }

        .contact-info h4 {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .contact-info-item {
            margin-bottom: 15px;
            display: flex;
            align-items: start;
        }

        .contact-info-item i {
            color: var(--primary-color);
            margin-right: 10px;
            margin-top: 3px;
        }

        /* Content Section */
        .content-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .content-section p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Newsletter */
        .newsletter {
            background: var(--secondary-color);
            color: white;
            padding: 50px 0;
            text-align: center;
        }

        .newsletter h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 5px;
        }

        .newsletter-form button {
            background: var(--primary-color);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Footer */
        .footer {
            background: #1a252f;
            color: #ccc;
            padding: 50px 0 20px;
        }

        .footer h5 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            background: #0f1419;
            color: #999;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }

        .footer-contact {
            background: var(--secondary-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .footer-contact h5 {
            margin-bottom: 15px;
        }

        .footer-contact p {
            margin-bottom: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 1.8rem;
            }

            .top-header .phone {
                float: none;
                display: block;
                margin-top: 10px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .sidebar {
                position: static;
                margin-top: 30px;
            }
        }

        /* Placeholder for logo */
        .logo-placeholder {
            background: var(--primary-color);
            color: white;
            padding: 15px 25px;
            font-size: 1.5rem;
            font-weight: 700;
            display: inline-block;
            border-radius: 5px;
        }

        .college-details {
            color: #ffffff;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .college-details i {
            color: #3ce74f;
            margin-right: 5px;
        }

        .college-details1 {
            color: #ffffff;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .college-details1 i {
            color: #E74C3C;
            margin-right: 5px;
        }

        /*13-01-2026*/

        /* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* College Hero Image */
.college-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Highlights Cards */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.highlight-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Courses Table */
.courses-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.courses-table table {
    width: 100%;
    border-collapse: collapse;
}

.courses-table thead {
    background: var(--secondary-color);
    color: white;
}

.courses-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

.courses-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-color);
}

.courses-table tbody tr:hover {
    background: #f8f9fa;
}

/* Admission Process Steps */
.admission-steps {
    margin-top: 30px;
}

.step-item {
    display: flex;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 50px;
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Fee Structure */
.fee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.fee-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s;
}

.fee-card:hover {
    border-color: var(--primary-color);
}

.fee-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.fee-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fee-details {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Recruiters Section */
.recruiters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.recruiter-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
}

.recruiter-item:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.facility-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.facility-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.facility-item h5 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
}

/* Info Cards */
        .info-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .info-card h4 {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .info-card .icon {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 15px;
        }