:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --bg: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --light: #f8fafc;
    --dark: #0f172a;
    --white: #ffffff;
    --border: #e2e8f0;
    --radius: 1rem;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.h-16 { height: 4rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.flex-1 { flex: 1; }

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9375rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
}

.btn-outline:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--dark);
}

.btn-outline2 {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--dark);
}

.btn-outline2:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.feature-icon {
    font-size: 36px;
    color: #1f73d1;
    margin-bottom: 15px;
    font-weight: 300;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-text img{
    height: 3.8rem;
    padding: 10px  0px 0px;
    width: auto;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.125rem;
}

/* Hero */
.hero {
    background: url('./images/op3.webp') no-repeat center center/cover;
    padding: 7rem 0 3rem;
    color: white;
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* DARK OVERLAY */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65); /* dark blue overlay */
    z-index: 1;
}

/* Bottom fade (your existing effect) */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #0f172a, transparent);
    z-index: 2;
    pointer-events: none;
}

/* Keep hero content above overlay */
.hero > * {
    position: relative;
    z-index: 3;
}


.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.top-info-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    white-space: nowrap;
}

.info-icon {
    color: #10b981;
    font-size: 12px;
}

.info-label {
    color: #64748b;
    font-weight: 500;
}

.info-value {
    color: #10b981;
    font-weight: 700;
}

/* Enhanced Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1.2s ease-out;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.uni-badges {
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.scholarship-box {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(to right, rgba(234, 179, 8, 0.15), rgba(249, 115, 22, 0.15));
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    max-width: 600px;
}

.scholarship-icon { font-size: 2rem; }
.text-gold { color: #facc15; font-weight: 700; margin-bottom: 0.25rem; }

/* Sections */
.section { padding: 5rem 0; }
.bg-light { background: var(--light); }
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header h2 { font-size: clamp(2rem, 5vw, 2.75rem); margin-bottom: 1rem; color: var(--dark); }
.section-header p { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* College Grid */
.college-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.college-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.college-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
}

.card-img-box {
    height: 260px;
    background: #1e293b;
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.card-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: white;
    z-index: 10;
}

.card-info h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

.accreditations { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-content { padding: 2rem; flex-grow: 1; }
.fee-label { text-transform: uppercase; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.fee-price { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
.courses-list p { font-size: 0.875rem; margin-bottom: 0.75rem; }
.course-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.course-tags span { background: var(--light); padding: 0.35rem 0.75rem; border-radius: 0.5rem; font-size: 0.8125rem; font-weight: 500; color: #475569; }

.card-footer { padding: 0 2rem 2rem; display: flex; gap: 1rem; }

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    padding: 3rem 2rem;
    background: var(--light);
    border-radius: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.why-item:hover { background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.why-item .icon { font-size: 3rem; margin-bottom: 1.5rem; }
.why-item h3 { margin-bottom: 1rem; }
.why-item p { color: var(--text-muted); }

/* About Stats */
.flex-col-md { display: flex; gap: 4rem; align-items: center; }
.about-text { flex: 1; }
.about-text h2 { font-size: clamp(2rem, 5vw, 2.75rem); text-align: center;}
.about-stats { flex: 1; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat { background: var(--dark); color: white; padding: 2.5rem; border-radius: 2rem; text-align: center; }
.stat h4 { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }

/* trust section */
.trust {
            background: var(--border);
        }

       

        .trust-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 30px;
        }

        .trust-column {
            background: white;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid var(--border);
        }

        .trust-column h3 {
            font-size: 1.2rem;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .trust-column.positive h3 {
            color: var(--emerald);
        }

        .trust-column.negative h3 {
            color: var(--rose);
        }

        .trust-list {
            list-style: none;
        }

        .trust-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }

        .trust-list li:last-child {
            border-bottom: none;
        }

        .trust-list .icon {
            font-size: 1.1rem;
            margin-top: 2px;
        }

/* FAQ */
.max-w-narrow { max-width: 800px; }
.faq-list { background: white; border-radius: 2rem; overflow: hidden; border: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 1.125rem; transition: background 0.2s; }
.faq-question:hover { background: var(--light); }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.3s ease-out; background: white; }
.faq-answer p { padding: 0 2rem 1.5rem; color: var(--text-muted); }
.faq-item.active .arrow { transform: rotate(180deg); }
.arrow { transition: transform 0.3s; font-size: 0.75rem; }

/* Contact */
.bg-dark { background: #0f172a; }
.contact-grid { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 3rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; }
.contact-card .icon { font-size: 1.5rem; }

/* Footer */
.footer { padding: 2rem 0; background: var(--light); border-top: 1px solid var(--border); }
.disclaimer { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: white;
    margin: 5vh auto;
    padding: 3rem;
    border-radius: 2rem;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; cursor: pointer; color: var(--text-muted); }

#enquiry-form h2 { margin-bottom: 2rem; }
#enquiry-form input, #enquiry-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    font-size: 1rem;
    outline: none;
}
#enquiry-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }

.floating-btn {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.25rem 2.25rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    z-index: 100;
    transition: transform 0.3s;
}
.floating-btn:hover { transform: scale(1.05); }

@media (max-width: 992px) {
    .flex-col-md { flex-direction: column; }
    .hero-title { font-size: 3.5rem; }
    .trust-comparison {
                grid-template-columns: 1fr;
            }

             .info-items {
        gap: 25px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.75rem; }
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .college-grid { grid-template-columns: 1fr; }
    .modal-content { width: 90%; margin: 8% auto; padding: 1.8rem; }
    .section { padding: 4rem 0; }

     .top-info-bar {
        padding: 10px 0;
    }
    
    .info-items {
        gap: 15px;
        padding: 0 15px;
    }
    
    .info-item {
        font-size: 12px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        padding: 25px 15px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
   .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* Mobile */
    gap: 1rem;
}

.stat { padding: 1.3rem; border-radius: 2rem; text-align: center; }
.stat h4 { font-size: 1.8rem; }

.card-info h3{
    font-size: 1.3rem;
}
.fee-price {
    font-size: 1.2rem;
}

}


/* FORM CSS */

/* Form Styles */
    .form-group1 {
      margin-bottom: 10px;
    }
    
    .textinput {
      width: 100%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
      margin-bottom: 5px;
      transition: border-color 0.3s;
    }
    
    .selectinput {
      width: 100%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
      margin-bottom: 5px;
      transition: border-color 0.3s;
    }
    
    .textinput:focus, .selectinput:focus {
      border-color: #3498db;
      outline: none;
    }
    
    label p {
      font-weight: 500;
      color: black;
      margin-bottom: 5px;
    }
    
    .security-notice {
      background-color: #E4C34E;
      text-align: center;
      padding: 5px;
      border-radius: 5px;
      margin: 15px 0px;
      font-size: 8px;
    }
    
    .security-notice span {
      font-size: 10px;
      color: black;
      font-weight: 500;
    
    }
    
    #leadform1,  #leadform, #leadform2 {
      width: 100%;
      padding: 8px;
      background-color: #3498db;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    #leadform1:hover, #leadform:hover, #leadform2:hover {
      background-color: #2980b9;
    }
    
   
    
    @media (max-width: 480px) {
       .textinput, .selectinput, #leadform1 {
        padding: 10px;
        font-size: 14px;
      }
      
     
    }
