* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f8fafc;
    color: #0b1f3a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.site-header {
   background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo img {
    height: 120px;
    width: auto;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 22px;
}

.navbar a {
    text-decoration: none;
    color: #0b1f3a;
    font-weight: 600;
    font-size: 15px;
}

.navbar a:hover {
    color: #ff7a00;
}

.btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary {
    background: #ff7a00;
    color: #fff !important;
}

.btn-outline {
    border: 2px solid #0b1f3a;
    color: #0b1f3a !important;
}

.site-footer {
    background: #0b1f3a;
    color: #ffffff;
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-container p {
    margin: 6px 0;
    font-size: 14px;
}

.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #f8fafc, #eef4ff);
    text-align: center;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 58px;
    color: #0b1f3a;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #4b5563;
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
}

.featured-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 42px;
    color: #0b1f3a;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 18px;
    color: #64748b;
}

.internship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.internship-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

.internship-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.internship-card .tag {
    background: #fff3e6;
    color: #ff7a00;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.internship-card h3 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 22px;
    color: #0b1f3a;
}

.internship-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
}

.internship-card ul {
    list-style: none;
    margin-bottom: 22px;
}

.internship-card ul li {
    margin-bottom: 8px;
    color: #334155;
}

@media (max-width: 900px) {
    .internship-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

}

.details-section {
    padding: 80px 0;
    background: #f8fafc;
}

.details-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: auto;
}

.details-card h1 {
    font-size: 42px;
    color: #0b1f3a;
    margin-top: 18px;
    margin-bottom: 18px;
}

.details-intro {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 28px;
}

.info-box {
    background: #f1f5f9;
    padding: 22px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.info-box p {
    margin-bottom: 10px;
    color: #334155;
}

.details-card h2 {
    font-size: 26px;
    color: #0b1f3a;
    margin-top: 30px;
    margin-bottom: 12px;
}

.details-card p {
    color: #475569;
    line-height: 1.8;
}

.locked-box {
    margin-top: 20px;
    padding: 35px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border: 2px dashed #ff7a00;
    text-align: center;
}

.lock-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.locked-box h3 {
    font-size: 26px;
    color: #0b1f3a;
    margin-bottom: 12px;
}

.locked-box p {
    max-width: 650px;
    margin: 0 auto 25px;
}

.auth-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 70px 20px;
}

.auth-box {
    background: #ffffff;
    width: 100%;
    max-width: 460px;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.auth-box h2 {
    font-size: 32px;
    color: #0b1f3a;
    margin-bottom: 10px;
    text-align: center;
}

.auth-box p {
    color: #64748b;
    text-align: center;
    margin-bottom: 25px;
}

.auth-box input {
    width: 100%;
    padding: 15px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
}

.auth-box input:focus {
    outline: none;
    border-color: #ff7a00;
}

.full-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.alert {
    background: #fff7ed;
    color: #c2410c;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 600;
}

.auth-link {
    margin-top: 20px;
}

.auth-link a {
    color: #ff7a00;
    font-weight: 700;
    text-decoration: none;
}

.premium-open-box {
    margin-top: 20px;
    padding: 35px;
    border-radius: 20px;
    background: #ecfdf5;
    border: 2px solid #10b981;
}

.premium-open-box h3 {
    color: #065f46;
    font-size: 26px;
    margin-bottom: 14px;
}

.premium-open-box p {
    color: #064e3b;
    line-height: 1.8;
}

.premium-full-details {
    margin-top: 25px;
}

.premium-badge {
    display: inline-block;
    background: #10b981;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
}

.premium-content-box {
    background: #ecfdf5;
    border: 2px solid #10b981;
    padding: 28px;
    border-radius: 18px;
    line-height: 1.9;
    color: #064e3b;
    margin-bottom: 35px;
}

.premium-extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.premium-extra-card {
    background: #ffffff;
    border: 1px solid #d1fae5;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.premium-extra-card h3 {
    color: #065f46;
    margin-bottom: 10px;
}

.premium-extra-card p {
    color: #475569;
    line-height: 1.7;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f8fafc;
}

.admin-sidebar {
    width: 260px;
    background: #0b1f3a;
    color: #ffffff;
    padding: 30px 22px;
}

.admin-sidebar h2 {
    margin-bottom: 35px;
    font-size: 24px;
}

.admin-sidebar a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.admin-sidebar a:hover {
    background: #ff7a00;
}

.admin-main {
    flex: 1;
    padding: 35px;
}

.admin-topbar {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.admin-topbar h1 {
    color: #0b1f3a;
    margin-bottom: 8px;
}

.admin-topbar p {
    color: #64748b;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.admin-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.admin-card h3 {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 15px;
}

.admin-card p {
    font-size: 34px;
    font-weight: 800;
    color: #ff7a00;
}

.admin-panel-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.admin-panel-box h2 {
    margin-bottom: 20px;
    color: #0b1f3a;
}

.admin-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .admin-wrapper {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }

    .admin-cards {
        grid-template-columns: 1fr;
    }
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-form label {
    font-weight: 700;
    color: #0b1f3a;
    margin-top: 8px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: #ff7a00;
}

.admin-form button {
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.table-wrapper {
    margin-top: 25px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background: #f1f5f9;
    color: #0b1f3a;
    font-weight: 800;
}

.admin-table td {
    color: #334155;
}

.status-badge {
    background: #ecfdf5;
    color: #065f46;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.action-edit {
    color: #2563eb;
    font-weight: 700;
    margin-right: 10px;
    text-decoration: none;
}

.action-delete {
    color: #dc2626;
    font-weight: 700;
    text-decoration: none;
}

.policy-list {
    margin: 18px 0 25px 20px;
    color: #475569;
    line-height: 1.9;
}

.policy-list li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .premium-extra-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .details-card {
        padding: 25px;
    }

    .details-card h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .logo img {
        height: 55px;
    }
}

.pricing-modern-page{
    padding:80px 0;
    background:#f7f9fc;
}

.pricing-header{
    text-align:center;
    margin-bottom:55px;
}

.pricing-badge{
    color:#175cff;
    font-weight:800;
    font-size:14px;
    letter-spacing:1px;
}

.pricing-header h1{
    font-size:64px;
    line-height:1.1;
    color:#071437;
    margin:18px 0;
    font-weight:900;
}

.pricing-header p{
    color:#5f6b85;
    font-size:20px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.pricing-card{
    background:#fff;
    border-radius:28px;
    padding:34px;
    border:1px solid #e5e7eb;
    position:relative;
    transition:.3s;
}

.pricing-card:hover{
    transform:translateY(-6px);
}

.plan-top-icon{
    width:74px;
    height:74px;
    border-radius:50%;
    background:#eef2ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:24px;
}

.plan-top-icon.green{
    background:#eaf9ef;
}

.plan-top-icon.blue{
    background:#eef4ff;
}

.pricing-card h3{
    font-size:38px;
    color:#071437;
    margin-bottom:6px;
}

.plan-subtitle{
    color:#5f6b85;
    margin-bottom:28px;
}

.pricing-price{
    font-size:58px;
    font-weight:900;
    color:#071437;
    margin-bottom:20px;
}

.pricing-price span{
    font-size:22px;
    font-weight:700;
}

.green-text{
    color:#0b9b42;
}

.blue-text{
    color:#175cff;
}

.pricing-list{
    list-style:none;
    margin-top:18px;
}

.pricing-list li{
    margin-bottom:15px;
    color:#071437;
    font-weight:600;
}

.pricing-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:18px;
    border-radius:14px;
    font-weight:800;
    text-decoration:none;
    margin-top:28px;
}

.pricing-btn-light{
    border:1px solid #d1d5db;
    color:#071437;
    background:#fff;
}

.pricing-btn-green{
    background:#0b9b42;
    color:#fff;
}

.pricing-btn-blue{
    background:#175cff;
    color:#fff;
}

.premium-card{
    border:2px solid #175cff;
    overflow:hidden;
}

.popular-tag{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    background:#175cff;
    color:#fff;
    text-align:center;
    padding:12px;
    font-weight:800;
}

.offer-line{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.offer-line del{
    color:#8b8b8b;
    font-weight:700;
}

.discount-pill{
    background:#dff7e8;
    color:#0b9b42;
    padding:8px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:800;
}

.best-saving{
    display:inline-block;
    background:#eef4ff;
    color:#175cff;
    padding:8px 14px;
    border-radius:30px;
    margin-bottom:18px;
    font-weight:800;
}

.limited-box{
    margin-top:18px;
    background:#eef4ff;
    padding:16px;
    border-radius:14px;
    color:#175cff;
    font-weight:700;
    text-align:center;
}

.miss-box{
    margin-top:25px;
    padding-top:18px;
    border-top:1px solid #e5e7eb;
}

.miss-box h5{
    color:red;
    margin-bottom:14px;
}

.miss-box ul{
    list-style:none;
}

.miss-box li{
    margin-bottom:10px;
    color:#5f6b85;
}

.trust-row{
    margin-top:55px;
    background:#fff;
    border-radius:26px;
    padding:34px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    border:1px solid #e5e7eb;
}

.trust-row strong{
    display:block;
    color:#071437;
    font-size:24px;
    margin-bottom:10px;
}

.trust-row span{
    color:#5f6b85;
    line-height:1.7;
}

@media(max-width:1200px){
    .pricing-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-row{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .pricing-header h1{
        font-size:42px;
    }

    .pricing-grid,
    .trust-row{
        grid-template-columns:1fr;
    }

    .pricing-card h3{
        font-size:32px;
    }

    .pricing-price{
        font-size:46px;
    }
}

.admin-sidebar a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-left: 4px solid #ffffff;
}

/* =====================================================
   ABOUT PAGE - FINAL VISION MOBILE GAP FIX
   Only mobile. Keeps desktop unchanged.
===================================================== */

@media(max-width:768px){

    .about-main .vision-box{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
        padding:24px 18px !important;
        margin:24px 0 !important;
        box-sizing:border-box !important;
        overflow:hidden !important;
        border-radius:22px !important;
    }

    .about-main .vision-box .vision-icon{
        width:58px !important;
        height:58px !important;
        min-width:58px !important;
        max-width:58px !important;
        min-height:58px !important;
        max-height:58px !important;
        margin:0 auto 18px !important;
        padding:0 !important;
        border-radius:18px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        flex:none !important;
        position:static !important;
        transform:none !important;
    }

    .about-main .vision-box .vision-icon i{
        font-size:32px !important;
        line-height:1 !important;
        margin:0 !important;
        padding:0 !important;
    }

    .about-main .vision-box > div:last-child{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        margin:0 !important;
        padding:0 !important;
        box-sizing:border-box !important;
        overflow:hidden !important;
    }

    .about-main .vision-box h2{
        font-size:30px !important;
        line-height:1.15 !important;
        margin:0 0 16px !important;
        padding:0 !important;
    }

    .about-main .vision-box p{
        width:100% !important;
        max-width:100% !important;
        margin:0 0 16px !important;
        padding:0 !important;
        font-size:16px !important;
        line-height:1.65 !important;
        box-sizing:border-box !important;
        overflow-wrap:break-word !important;
        word-break:normal !important;
    }

    .about-main .vision-box strong{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
        margin:6px 0 0 !important;
        padding:0 !important;
        font-size:19px !important;
        line-height:1.28 !important;
        overflow-wrap:break-word !important;
    }
}

@media(max-width:420px){

    .about-main .vision-box{
        padding:22px 16px !important;
    }

    .about-main .vision-box .vision-icon{
        width:92px !important;
        height:92px !important;
        min-width:82px !important;
        max-width:82px !important;
        min-height:82px !important;
        max-height:82px !important;
        margin-bottom:16px !important;
    }

    .about-main .vision-box .vision-icon i{
        font-size:29px !important;
    }

    .about-main .vision-box h2{
        font-size:28px !important;
    }

    .about-main .vision-box p{
        font-size:15.5px !important;
        line-height:1.6 !important;
    }

    .about-main .vision-box strong{
        font-size:18px !important;
    }
}

