*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Inter', sans-serif;
}

body{
    background: radial-gradient(circle at right, #140a0a, #05070d);
    color:#fff;
    background:#020617;
  font-family:"Segoe UI",sans-serif;
  color:#fff;
  margin:0;
   padding-top: 65px;
}



/* ================= HEADER ================= */
header{
    width:100%;
    padding:18px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:700;
}

.logo span{
    background:#e63946;
    padding:8px;
    border-radius:6px;
    font-size:14px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:#cfcfcf;
    text-decoration:none;
    font-size:15px;
}

nav a.active{
    color:#ff4d4d;
}

.header-btn{
    background:#e63946;
    border:none;
    padding:10px 18px;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}

/* ================= HERO ================= */
.hero{
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap:40px;
    padding:60px 8%;
    align-items:center;
}

.badge{
    display:inline-block;
    background:#1a0f0f;
    border:1px solid #ff4d4d;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:20px;
}

.hero h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:15px;
}

.hero h1 span{
    color:#ff4d4d;
}

.hero p{
    color:#cfcfcf;
    font-size:16px;
    max-width:520px;
    margin-bottom:30px;
}

/* Search Box */
.search-box{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.search-box input{
    flex:1;
    padding:14px;
    border-radius:8px;
    border:none;
    outline:none;
        /* width: 510px; */
}

.search-box button{
    background:#e63946;
    border:none;
    padding:14px 22px;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

/* CTA */
.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#e63946;
    padding:14px 22px;
    border-radius:8px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
}

/* ================= IMAGE SIDE ================= */
.hero-img{
    position:relative;
}

.hero-img img{
    width:100%;
    border-radius:18px;
}

/* Floating Cards */
.card{
    position:absolute;
    background:#0e1420;
    padding:14px 16px;
    border-radius:12px;
    display:flex;
    gap:12px;
    align-items:center;
    font-size:14px;
}

.card span{
    font-weight:700;
}

.card.green{ top:20%; left:-40px; }
.card.blue{ top:45%; right:-40px; }
.card.orange{ bottom:10%; left:-30px; }

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero-img{
        margin-top:40px;
    }
    .card{
        position:relative;
        margin:10px auto;
        left:0; right:0;
    }
}

@media(max-width:600px){
    header{
        flex-direction:column;
        gap:15px;
    }
    nav{
        flex-wrap:wrap;
        justify-content:center;
    }
    .hero h1{
        font-size:32px;
    }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================= HERO ALIGNMENT ================= */
.hero > div:first-child{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    animation: fadeUp 0.8s ease forwards;
}

/* stagger effect */
.hero .badge{ animation: fadeUp 0.6s ease forwards; }
.hero h1{ animation: fadeUp 0.7s ease forwards; }
.hero p{ animation: fadeUp 0.8s ease forwards; }
.search-box{ animation: fadeUp 0.9s ease forwards; }
.cta-btn{ animation: fadeUp 1s ease forwards; }

/* ================= IMAGE OPEN STYLE ================= */
.hero-img{
    animation: zoomFade 1s ease forwards;
}

.hero-img img{
    animation: zoomFade 1.2s ease forwards;
}

/* ================= FLOATING CARDS OPEN ================= */
.card{
    opacity:0;
    animation: fadeUp 0.6s ease forwards;
}

.card.green{ animation-delay:0.4s; }
.card.blue{ animation-delay:0.6s; }
.card.orange{ animation-delay:0.8s; }

/* ================= MOBILE CENTER ALIGN ================= */
@media(max-width:1024px){
    .hero > div:first-child{
        align-items:center;
    }
}

/* ================= TRUST SECTION ================= */
.trust-section{
    padding:80px 8%;
    text-align:center;
    background:
        linear-gradient(rgba(10,15,30,0.95), rgba(10,15,30,0.95)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 28px,
            rgba(255,255,255,0.03) 30px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 28px,
            rgba(255,255,255,0.03) 30px
        );
}

.trust-section h2{
    font-size:36px;
    margin-bottom:10px;
}

.trust-subtitle{
    color:#b5b5b5;
    max-width:700px;
    margin:0 auto 60px;
    font-size:16px;
}

/* Stats Grid */
.stats-grid{
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    gap:30px;
}

/* Card */
.stat-card{
    text-align:center;
}

.stat-card h3{
    font-size:32px;
    margin:15px 0 5px;
}

.stat-card span{
    color:#b5b5b5;
    font-size:14px;
}

/* Icons */
.index_icon{
    width:60px;
    height:60px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    border-radius:16px;
}

.icon.red{ background:#ff3b3b; }
.icon.blue{ background:#3b82f6; }
.icon.green{ background:#22c55e; }
.icon.orange{ background:#f59e0b; }
.icon.purple{ background:#8b5cf6; }
.icon.pink{ background:#ec4899; }

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
    .stats-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:600px){
    .trust-section h2{
        font-size:26px;
    }
    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
        gap:25px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heading & Subtitle */
.trust-section h2{
    animation: fadeUp 0.7s ease forwards;
}

.trust-subtitle{
    animation: fadeUp 0.9s ease forwards;
}

/* Grid alignment */
.stats-grid{
    align-items:start;
}

/* Card open style */
.stat-card{
    opacity:0;
    animation: fadeUp 0.6s ease forwards;
}

/* stagger effect */
.stat-card:nth-child(1){ animation-delay:0.2s; }
.stat-card:nth-child(2){ animation-delay:0.3s; }
.stat-card:nth-child(3){ animation-delay:0.4s; }
.stat-card:nth-child(4){ animation-delay:0.5s; }
.stat-card:nth-child(5){ animation-delay:0.6s; }
.stat-card:nth-child(6){ animation-delay:0.7s; }

/* Icon hover micro interaction */
.icon{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover .icon{
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Number emphasis */
.stat-card h3{
    transition: color 0.3s ease;
}

.stat-card:hover h3{
    color:#ff4d4d;
}

/* ================= MOBILE CENTER ================= */
@media(max-width:1024px){
    .stat-card{
        text-align:center;
    }
}
/* ================= FOR SCHOOLS SECTION ================= */
.schools-section{
    padding:90px 8%;
    background: radial-gradient(circle at left, #0b0f1c, #05070d);
}

.schools-wrapper{
    display:grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap:60px;
    align-items:center;
}

/* LEFT */
.schools-badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:20px;
    background:#1a0f0f;
    border:1px solid #ff4d4d;
    font-size:13px;
    margin-bottom:20px;
}

.schools-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:15px;
}

.schools-content h2 span{
    color:#ff4d4d;
}

.schools-content p{
    color:#b5b5b5;
    font-size:16px;
    max-width:520px;
    margin-bottom:25px;
}

.schools-stats{
    display:flex;
    gap:30px;
    margin-bottom:30px;
}

.schools-stats div{
    font-size:15px;
}

.schools-btn{
    display:inline-block;
    background:#e63946;
    padding:14px 26px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* RIGHT CARDS */
.schools-cards{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:22px;
}

.feature-card{
    background:#0e1420;
    padding:24px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.06);
}

.feature-card h4{
    margin:12px 0 8px;
    font-size:18px;
}

.feature-card p{
    font-size:14px;
    color:#b5b5b5;
    line-height:1.5;
}

/* Icons */
.f-icon{
    width:46px;
    height:46px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.green{ background:#22c55e; }
.blue{ background:#3b82f6; }
.purple{ background:#8b5cf6; }
.orange{ background:#f59e0b; }
.sky{ background:#0ea5e9; }
.pink{ background:#ec4899; }

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
    .schools-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .schools-content h2{
        font-size:28px;
    }
    .schools-cards{
        grid-template-columns:1fr;
    }
}
/* base alignment - hamesha same rahe */
.schools-content,
.schools-cards,
.feature-card{
    will-change: transform, opacity;
}

/* reveal animation */
.reveal{
    opacity:0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active{
    opacity:1;
    transform: translateY(0);
}

/* delay */
.delay-1{ transition-delay:0.15s; }
.delay-2{ transition-delay:0.3s; }
.delay-3{ transition-delay:0.45s; }
.delay-4{ transition-delay:0.6s; }


/* ================= PARENTS SECTION ================= */
.parents-section{
    padding:90px 8%;
    background: radial-gradient(circle at right, #0b1020, #05070d);
}

.parents-wrapper{
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT CARDS */
.parents-cards{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:22px;
}

.p-card{
    background:#0e1420;
    padding:24px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.06);
}

.p-icon{
    width:44px;
    height:44px;
    border-radius:12px;
    background:#3a0f14;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-bottom:12px;
}

.p-card h4{
    font-size:18px;
    margin-bottom:8px;
}

.p-card p{
    font-size:14px;
    color:#b5b5b5;
    margin-bottom:10px;
}

.p-card ul{
    list-style:none;
    padding:0;
}

.p-card ul li{
    font-size:13px;
    color:#9be7b1;
    margin-bottom:6px;
}

/* RIGHT CONTENT */
.parents-badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:20px;
    background:#0d1b3d;
    border:1px solid #2563eb;
    font-size:13px;
    margin-bottom:18px;
}

.parents-content h2{
    font-size:40px;
    line-height:1.2;
    margin-bottom:15px;
}

.parents-content h2 span{
    color:#ff4d4d;
}

.parents-content p{
    color:#b5b5b5;
    font-size:16px;
    max-width:520px;
    margin-bottom:25px;
}

/* TRUST BOX */
.trust-box{
    background:#0e1420;
    border-radius:14px;
    padding:20px;
    border:1px solid rgba(255,255,255,0.06);
    margin-bottom:25px;
}

.trust-box h4{
    margin-bottom:10px;
}

.trust-box ul{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:8px;
    list-style:none;
}

.trust-box ul li{
    font-size:14px;
    color:#e5e5e5;
}

/* ACTIONS */
.parents-actions{
    display:flex;
    gap:20px;
    align-items:center;
}

.parents-btn{
    background:#c81e1e;
    padding:14px 26px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.empty-box{
    width:220px;
    height:44px;
    background:#fff;
    border-radius:8px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
    .parents-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .parents-cards{
        grid-template-columns:1fr;
    }
    .parents-content h2{
        font-size:28px;
    }
    .trust-box ul{
        grid-template-columns:1fr;
    }
}
.parents-cards,
.parents-content,
.p-card{
    will-change: transform, opacity;
}

.reveal{
    opacity:0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active{
    opacity:1;
    transform: translateY(0);
}

/* Stagger delay */
.delay-1{ transition-delay:0.15s; }
.delay-2{ transition-delay:0.3s; }
.delay-3{ transition-delay:0.45s; }
.delay-4{ transition-delay:0.6s; }

/* ================= FEATURED SLIDER ================= */
.featured-section{
    padding:90px 8%;
    background:#05070d;
}

.featured-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.top-badge{
    background:#2a0e12;
    border:1px solid #ff4d4d;
    padding:6px 12px;
    border-radius:16px;
    font-size:13px;
}

.featured-header h2{
    font-size:36px;
    margin:12px 0 6px;
}

.featured-header p{
    color:#b5b5b5;
}

.slider-controls button{
    width:44px;
    height:44px;
    border-radius:10px;
    border:none;
    background:#fff;
    font-size:22px;
    cursor:pointer;
    margin-left:10px;
}

/* SLIDER */
.slider-wrapper{
    overflow:hidden;
}

.slider{
    display:flex;
    gap:24px;
    transition:transform .5s ease;
}

.school-card{
    min-width:320px;
    background:#0e1420;
    border-radius:16px;
    overflow:hidden;
    position:relative;
}

.school-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

/* Badges */
.verified{
    position:absolute;
    top:10px; left:10px;
    background:#22c55e;
    padding:4px 8px;
    border-radius:10px;
    font-size:12px;
}

.scholar{
    position:absolute;
    top:10px; right:10px;
    background:#facc15;
    padding:4px 8px;
    border-radius:10px;
    font-size:12px;
    color:#000;
}

.rating{
    position:absolute;
    bottom:170px; right:10px;
    background:#111;
    padding:4px 8px;
    border-radius:10px;
    font-size:12px;
}

/* Card Body */
.card-body{
    padding:18px;
}

.card-body h4{
    font-size:17px;
    margin-bottom:4px;
}

.card-body small{
    color:#b5b5b5;
}

.tags{
    display:flex;
    gap:8px;
    margin:12px 0;
}

.tags span{
    background:#1a2236;
    padding:4px 10px;
    border-radius:10px;
    font-size:12px;
}

.price{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#b5b5b5;
}

/* Dots */
.dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin:25px 0;
}

.dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#444;
}

.dot.active{
    width:22px;
    border-radius:10px;
    background:#e63946;
}

.view-all{
    text-align:center;
}

.view-all a{
    background:#e63946;
    padding:14px 28px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:600px){
    .featured-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }
}

.featured-header,
.slider-wrapper,
.school-card,
.dots,
.view-all{
    will-change: transform, opacity;
}

.reveal{
    opacity:0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active{
    opacity:1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1{ transition-delay:0.15s; }
.delay-2{ transition-delay:0.3s; }
.delay-3{ transition-delay:0.45s; }
.delay-4{ transition-delay:0.6s; }

/* ================= CAREER SECTION ================= */
.career-section{
    background:radial-gradient(circle at top,#0b1220,#04060c);
    padding:100px 8%;
}

.career-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* IMAGE CARD */
.career-image-card{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 40px 80px rgba(0,0,0,.6);
}

.career-image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* STATS */
.career-stats{
    position:absolute;
    bottom:0;
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    background:rgba(8,12,22,.85);
    backdrop-filter:blur(8px);
}

.career-stats div{
    padding:16px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.08);
}

.career-stats div:last-child{
    border-right:none;
}

.career-stats small{
    color:#b0b0b0;
    font-size:12px;
}

.career-stats h4{
    font-size:22px;
    margin-top:6px;
}

.green{
    color:#22c55e;
}

/* CONTENT */
.career-content .career-tag{
    background:#2a0e12;
    color:#ff4d4d;
    padding:8px 16px;
    border-radius:20px;
    font-size:13px;
    display:inline-block;
    margin-bottom:20px;
}

.career-content h2{
    font-size:44px;
    line-height:1.2;
    margin-bottom:20px;
}

.career-content h2 span{
    color:#ff4d4d;
}

.career-content p{
    color:#c0c0c0;
    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;
}

/* FEATURES */
.career-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:35px;
}

.career-features div{
    background:#0f1628;
    padding:14px 16px;
    border-radius:12px;
    font-size:14px;
}

/* BUTTON */
.career-btn{
    display:inline-block;
    background:#e63946;
    padding:16px 34px;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.career-btn:hover{
    background:#ff4d4d;
    transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:900px){
    .career-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .career-content h2{
        font-size:34px;
    }
}

.career-image-card,
.career-stats div,
.career-content,
.career-tag,
.career-content h2,
.career-content p,
.career-features div,
.career-btn{
    will-change: transform, opacity;
}

.reveal{
    opacity:0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active{
    opacity:1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1{ transition-delay:0.15s; }
.delay-2{ transition-delay:0.3s; }
.delay-3{ transition-delay:0.45s; }
.delay-4{ transition-delay:0.6s; }
.delay-5{ transition-delay:0.75s; }
.delay-6{ transition-delay:0.9s; }
.delay-7{ transition-delay:1.05s; }
.delay-8{ transition-delay:1.2s; }
/* ================= EDUCATION CTA SECTION ================= */
.edu-cta-section{
    background:radial-gradient(circle at top,#0b1220,#03050a);
    padding:120px 8%;
    text-align:center;
}

.edu-cta-section h2{
    font-size:46px;
    margin-bottom:16px;
}

.edu-cta-section h2 span{
    color:#ff4d4d;
}

.edu-subtext{
    color:#b5b5b5;
    max-width:650px;
    margin:0 auto 70px;
    font-size:16px;
    line-height:1.6;
}

/* CARDS */
.edu-card-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    max-width:1100px;
    margin:0 auto;
}

.edu-card{
    background:linear-gradient(145deg,#10192c,#0a1220);
    padding:40px;
    border-radius:22px;
    text-align:left;
    box-shadow:0 40px 80px rgba(0,0,0,.6);
    transition:.3s;
}

.edu-card:hover{
    transform:translateY(-6px);
}

/* ICON */
.edu-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:22px;
}

.red-icon{background:#e63946;}
.blue-icon{background:#2563eb;}

.edu-card h3{
    font-size:24px;
    margin-bottom:14px;
}

.edu-card p{
    color:#c0c0c0;
    font-size:15px;
    line-height:1.7;
    margin-bottom:22px;
}

/* LIST */
.edu-card ul{
    list-style:none;
    margin-bottom:30px;
}

.edu-card ul li{
    margin-bottom:12px;
    font-size:14px;
    position:relative;
    padding-left:18px;
}

.edu-card.red ul li::before{
    content:"●";
    color:#e63946;
    position:absolute;
    left:0;
}

.edu-card.blue ul li::before{
    content:"●";
    color:#2563eb;
    position:absolute;
    left:0;
}

/* BUTTONS */
.edu-btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.red-btn{background:#b91c1c;}
.red-btn:hover{background:#e63946;}

.blue-btn{background:#1d4ed8;}
.blue-btn:hover{background:#2563eb;}

/* RESPONSIVE */
@media(max-width:900px){
    .edu-card-wrapper{
        grid-template-columns:1fr;
    }

    .edu-cta-section h2{
        font-size:34px;
    }
}
/* ================= FOOTER ================= */
.site-footer{
    background:linear-gradient(180deg,#0b1220,#060a14);
    padding:70px 8% 30px;
    color:#c5c5c5;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    margin-bottom:50px;
}

/* LOGO */
.footer-logo{
    font-size:24px;
    font-weight:700;
    color:#fff;
    margin-bottom:14px;
}

.footer-logo span{
    margin-left:6px;
}

/* TEXT */
.footer-text{
    font-size:14px;
    line-height:1.7;
    max-width:260px;
    margin-bottom:20px;
}

/* SOCIALS */
.footer-socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    background:#141c2f;
    border-radius:8px;
    margin-right:8px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-socials a:hover{
    background:#e63946;
}

/* COLUMNS */
.footer-col h4{
    color:#fff;
    font-size:16px;
    margin-bottom:18px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
    font-size:14px;
}

.footer-col ul li a{
    color:#c5c5c5;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#fff;
}

/* CONTACT */
.footer-contact li{
    line-height:1.6;
}

/* BOTTOM BAR */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    font-size:13px;
    color:#8f8f8f;
}

.footer-links a{
    margin-left:20px;
    font-size:13px;
    color:#8f8f8f;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}

/* school  */

/* SECTION */
.find-schools{
    padding:80px 8%;
    background:linear-gradient(180deg,#0b1220 0%, #060a14 100%);
    color:#fff;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.section-title{
    font-size:30px;
    font-weight:600;
    margin-bottom:18px;
}

/* SEARCH */
.search-bar{
    display:flex;
    gap:14px;
    margin-bottom:18px;
}

.search-input{
    flex:1;
    display:flex;
    align-items:center;
    gap:10px;
    background:#141c2f;
    /* padding:14px 18px; school filter latest */
    border-radius:10px;
}

.search-input input{
    width:100%;
    background:transparent;
    border:none;
    outline:none;
    color:#fff;
    font-size:14px;
}

.filter-btn{
    background:#e63946;
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:10px;
    font-weight:500;
    cursor:pointer;
}

/* RESULT TEXT */
.results-text{
    color:#9aa4bf;
    margin-bottom:26px;
    font-size:14px;
}

/* GRID */
/* .school-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:26px;
} */



.school-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:26px;
}

@media(max-width:992px){
    .school-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .school-grid{
        grid-template-columns: 1fr;
    }
}



/* CARD */
.school-card{
    background:#0f172a;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.45);
    transition:.3s ease;
}

.school-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */
.card-img{
    position:relative;
    height:190px;
}

.card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* BADGES */
.badges{
    position:absolute;
    top:12px;
    left:12px;
    right:12px;
    display:flex;
    gap:8px;
    flex-wrap:nowrap;          /* 👈 wrap band */
    align-items:center;
    z-index:5;
}


.badge{
    font-size:11px;
    padding:4px 10px;
    border-radius:8px;
    font-weight:500;
    white-space:nowrap;        /* 👈 text break na ho */
}
.verified{background:#16a34a; top: 0px;}
.open{background:#dc2626; margin-left: 92px;}
.scholarship{background:#f59e0b;}

/* BODY */
.card-body{
    padding:18px;
}

.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.card-header h3{
    font-size:16px;
    font-weight:600;
    line-height:1.4;
}

/* RATING */
.rating{
    background:#facc15;
    color:#000;
    padding:4px 8px;
    border-radius:8px;
    font-size:12px;
    font-weight:600;
    white-space:nowrap;
}

/* LOCATION */
.location{
    font-size:13px;
    color:#9aa4bf;
    margin:8px 0 10px;
}

/* TAGS */
.tags span{
    background:#1e293b;
    padding:5px 10px;
    font-size:12px;
    border-radius:8px;
    margin-right:8px;
    display:inline-block;
}

/* FOOTER */
.card-footer{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:14px;
    padding-top:12px;
    font-size:13px;
    color:#e5e7eb;
}

/* RESPONSIVE */
@media(max-width:600px){
    .search-bar{
        flex-direction:column;
    }
}









/* GRID */
/* .school-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
} */

/* CARD */
.school-card{
    background:#0f172a;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.card-img{
    position:relative;
    height:170px;
}

.card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.badges{
    position:absolute;
    top:10px;
    left:10px;
    display:flex;
    gap:6px;
    flex-wrap:wrap;
}

.badge{
    font-size:11px;
    padding:4px 8px;
    border-radius:6px;
    color:#fff;
}

.verified{background:#16a34a;}
.open{background:#dc2626;}
.scholarship{background:#f59e0b;}

.card-body{
    padding:16px;
}

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

.card-header h3{
    font-size:16px;
}

.rating{
    background:#facc15;
    color:#000;
    padding:3px 6px;
    border-radius:6px;
    font-size:12px;
}

.location{
    font-size:13px;
    color:#9aa4bf;
    margin:6px 0;
}

.tags span{
    background:#1e293b;
    padding:4px 8px;
    font-size:12px;
    border-radius:6px;
    margin-right:6px;
}

.card-footer{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:12px;
    padding-top:10px;
    font-size:13px;
}

/* RESPONSIVE */
@media(max-width:600px){
    .search-bar{
        flex-direction:column;
    }
}

/* detail css */

/* menu header css */
/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 9999;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: bold;
}

/* Desktop Nav */
nav {
    display: flex;
}

nav a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
}

/* Button */
/* .header-btn {
    background: #ff3b3b;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0b1220;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 600;
}

/* ===== DESKTOP NAV ===== */
nav {
    display: flex;
    gap: 3px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

/* .header-btn {
    margin-left: 20px;
    padding: 10px 16px;
    background: #dc2626;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
} */

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    top: -47px;        /* + value = neeche | - value = upar */
}

/* Close button default hide */
.close-btn {
    display: none;
}

/* ===== OVERLAY ===== */
/* .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 999;
} */

.overlay.show {
    display: block;
}

.sidebar-header {
    display: none;
}
/* ===== MOBILE ===== */
@media (max-width: 768px) {

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #0b1220, #020617);
        padding: 20px;
        display: flex;
        flex-direction: column;
        transition: right 0.45s ease;
        z-index: 1001;
        border-top-left-radius: 22px;
        border-bottom-left-radius: 22px;
        box-shadow: -12px 0 45px rgba(0,0,0,0.65);
    }



    nav.show {
        right: 0;
    }

    /* ===== SIDEBAR HEADER ===== */
    .sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .sidebar-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        font-weight: 600;
        color: #fff;
    }

    .sidebar-logo span {
        color: #fff;
    }

    .close-btn {
        font-size: 22px;
        color: #fff;
        cursor: pointer;
    }

    /* ===== MENU ITEMS ===== */
    nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        font-size: 15px;
        color: #e5e7eb;
        text-decoration: none;
        border-radius: 12px;
        margin-bottom: 10px;
        transition: 0.3s ease;
    }

    nav a.active,
    nav a:hover {
        background: rgba(220,38,38,0.2);
        color: #f87171;
    }

    .mobile-login {
        margin-top: auto;
        padding: 14px;
        background: #dc2626;
        color: #fff;
        text-align: center;
        border-radius: 12px;
        font-weight: 600;
    }

    .header-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        margin-left: auto;
        position: relative;
        top: -47px;
    }
}

@media (max-width: 768px) {

    .close-btn {
        display: block;
        position: absolute;
        top: 1px;
        right: 17px;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
    }


}

/* Page content neeche shift */


/* ================= FULL WIDTH SLIDER ================= */
.sd-slider-wrapper{
  position:relative;
  width:100%;
}

.sd-slider{
  height:560px;
  width:100%;
  overflow:hidden;
  position:relative;
}

.sd-slide{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.sd-slide.active{display:block}


.sd-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(2,6,23,0) 40%,
      rgba(2,6,23,.75) 75%,
      #020617 100%
    );
  z-index:1;
}

/* ARROWS */
.sd-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
}
.sd-arrow:hover{background:#dc2626}
.sd-arrow.left{left:30px}
.sd-arrow.right{right:30px}
.sd-arrow svg{fill:#fff;width:22px}

/* THUMBS */
.sd-thumbs{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:-55px;
  position:relative;
  z-index:10;
}
.sd-thumbs img{
  width:80px;
  height:55px;
  object-fit:cover;
  border-radius:8px;
  cursor:pointer;
  opacity:.6;
  border:2px solid transparent;
}
.sd-thumbs img.active{
  opacity:1;
  border-color:#dc2626;
}

/* ================= CONTENT WRAPPER ================= */
.sd-page{
  max-width:1400px;
  margin:auto;
  padding:0 20px 80px;
  margin-top:-32px;
  position:relative;
  z-index:20;
}



/* BADGES */
.sd-badges{display:flex;gap:10px;margin-bottom:10px}
.badge{padding:6px 12px;font-size:12px;border-radius:20px}
.green{background:#16a34a}
.red{background:#dc2626}
.yellow{background:#facc15;color:#000}

/* META */
.sd-meta{display:flex;gap:20px;margin:14px 0 26px;color:#cbd5f5}

/* STATS */
.sd-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:26px;
}
.sd-stat{
  background:#0f172a;
  padding:18px;
  border-radius:14px;
  text-align:center;
}

/* GRID */
.sd-container{
  display:grid;
  grid-template-columns:2.2fr 1fr;
  gap:40px;
}

/* TABS */
.sd-tabs{display:flex;gap:10px;margin-bottom:18px}

/* TAB BUTTON */
.sd-tabs button{
  background:#020617;
  color:#cbd5f5;
  border:none;
  padding:8px 16px;
  border-radius:20px;
  cursor:pointer;              /* 👈 cursor show */
  transition:all .25s ease;    /* 👈 smooth effect */
  position:relative;
  overflow:hidden;
}

/* HOVER EFFECT */
.sd-tabs button:hover{
  background:#0f172a;
  color:#fff;
  transform:translateY(-1px);  /* 👈 slight lift */
}

/* CLICK / PRESS EFFECT */
.sd-tabs button:active{
  transform:scale(0.96);       /* 👈 click feel */
}

/* ACTIVE TAB */
.sd-tabs .active{
  background:#dc2626;
  color:#fff;
}

/* OPTIONAL RIPPLE EFFECT */
.sd-tabs button::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.15);
  opacity:0;
  transition:.3s;
}
.sd-tabs button:active::after{
  opacity:1;
}


/* CARD */
.sd-card{
  background:#0f172a;
  padding:24px;
  border-radius:16px;
}

/* RIGHT */
.sd-inquiry{
  background:#0f172a;
  padding:24px;
  border-radius:18px;
  position:sticky;
  top:30px;
}

.btn{
  display:block;
  padding:12px;
  text-align:center;
  border-radius:10px;
  font-weight:600;
  margin-bottom:12px;
}
.btn.red{background:#dc2626;color:#fff}
.btn.yellow{background:#facc15;color:#000}

/* RESPONSIVE */
@media(max-width:900px){
  .sd-slider{height:320px}
  .sd-container{grid-template-columns:1fr}
  .sd-stats{grid-template-columns:1fr 1fr}
}

/* TAB CONTENT */
.sd-tab-content{
  margin-top:20px;
  position:relative;
  min-height:220px; /* jump prevent */
}

.tab-pane{
  display:none;
  opacity:0;
  transform:translateY(18px);
}

.tab-pane.active{
  display:block;
  animation:tabReveal .45s ease forwards;
}

@keyframes tabReveal{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* GALLERY */
.sd-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.sd-gallery img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:14px;
  opacity:0;
  transform:scale(.92);
  animation:imgReveal .45s ease forwards;
}

@keyframes imgReveal{
  to{
    opacity:1;
    transform:scale(1);
  }
}
/* LIST */
.sd-list{
  padding-left:20px;
}
.sd-list li{
  margin-bottom:10px;
  color:#e5e7eb;
}

/* model css */
/* OVERLAY */
.sd-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  z-index:999;
}

/* MODAL BOX */
.sd-modal{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:#020617;
  padding:30px;
  border-radius:18px;
  width:520px;
  max-width:92%;
  display:none;
  z-index:1000;
}

.sd-modal.large{
  width:650px;
}

/* CLOSE */
.sd-close{
  position:absolute;
  right:18px;
  top:14px;
  font-size:26px;
  cursor:pointer;
}

/* SUB HEADING */
.sd-subhead{
  background:#0f172a;
  padding:14px;
  border-radius:12px;
  margin-bottom:20px;
}
.sd-subhead p{
  font-size:14px;
  margin-top:6px;
  color:#cbd5f5;
}

/* ================= FORM GRID ================= */
.sd-form{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

/* INPUTS */
.sd-form input,
.sd-form textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:none;
  background:#0f172a;
  color:#fff;
  font-size:14px;
}

/* FULL WIDTH */
.sd-form .full,
.sd-form textarea,
.sd-form button{
  grid-column:1 / -1;
}

/* TEXTAREA */
.sd-form textarea{
  min-height:90px;
  resize:none;
}

/* BUTTON CENTER */
.sd-form button{
  justify-self:center;
  min-width:260px;
}

/* MOBILE */
@media(max-width:600px){
  .sd-form{
    grid-template-columns:1fr;
  }
}

 /* facilities css */
 /* FACILITIES STYLE */
.sd-facilities{
  background:linear-gradient(180deg,#0f172a,#020617);
}

.sd-fac-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:22px;
  font-size:18px;
}

.sd-fac-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.sd-fac-item{
  background:#0f172a;
  padding:16px 18px;
  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:flex-start;   /* ⭐ MOST IMPORTANT */
  text-align:left;              /* ⭐ ADD THIS */
  gap:12px;

  font-size:15px;
  line-height:1;
  transition:.25s ease;
}


.sd-fac-item:hover{
  transform:translateY(-3px);
  background:#111c3a;
}

.sd-fac-item .icon{
  width:22px;
  height:22px;
  border-radius:50%;
  background:#16a34a;
  position:relative;
  flex-shrink:0;
}

/* PURE CSS CHECK MARK */
.sd-fac-item .icon::after{
  content:"";
  position:absolute;
  width:6px;
  height:11px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(45deg);
  top:4px;
  left:8px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .sd-fac-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:520px){
  .sd-fac-grid{
    grid-template-columns:1fr;
  }
}

 /* fees css */
 /* ================= FEES SECTION ================= */
.sd-fee-wrap{
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* FEE CARD */
.sd-fee-card{
  background:linear-gradient(145deg,#0f172a,#020617);
  padding:15px;
  border-radius:18px;
  display:flex;
  gap:22px;
  align-items:flex-start;
}

.sd-fee-icon{
  width:54px;
  height:54px;
  border-radius:14px;
  background:#7c2d12;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:700;
  color:#fff;
  flex-shrink:0;
}

.sd-fee-label{
  color:#cbd5f5;
  font-size:14px;
  margin-bottom:6px;
}

.sd-fee-amount{
  font-size:23px;
  margin:0 0 10px;
}

.sd-fee-note{
  font-size:14px;
  line-height:1.6;
  color:#94a3b8;
}

/* SCHOLARSHIP CARD */
.sd-scholar-card{
  background:linear-gradient(145deg,#1a1207,#020617);
  padding:26px;
  border-radius:18px;
  display:flex;
  gap:20px;
  align-items:center;
  border:1px solid rgba(250,204,21,.25);
}

.sd-scholar-icon{
  width:50px;
  height:50px;
  border-radius:14px;
  background:#facc15;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#000;
  flex-shrink:0;
}

.sd-scholar-info h3{
  margin:0 0 6px;
  color:#facc15;
}

.sd-scholar-info p{
  font-size:14px;
  color:#e5e7eb;
  margin-bottom:12px;
}

.sd-scholar-btn{
  display:inline-block;
  padding:8px 6px;
  background:#facc15;
  color:#000;
  font-weight:600;
  border-radius:10px;
  text-decoration:none;
  transition:.25s;
}

.sd-scholar-btn:hover{
  transform:translateY(-2px);
  background:#fde047;
}

/* MOBILE */
@media(max-width:600px){
  .sd-fee-card,
  .sd-scholar-card{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* admisstion */
/* ================= ADMISSION CARD ================= */
.sd-admission-card{
  background:linear-gradient(145deg,#0f172a,#020617);
  padding:28px;
  border-radius:20px;
}

/* HEADER */
.sd-admission-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
  gap:14px;
  flex-wrap:wrap;
}

.sd-admission-title{
  display:flex;
  align-items:center;
  gap:10px;
}

.sd-admission-title h3{
  margin:0;
  font-size:20px;
}

.sd-admission-title .icon{
  font-size:18px;
  color:#ef4444;
}

/* BADGE */
.sd-admission-badge{
  background:#16a34a;
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}

/* TEXT */
.sd-admission-text{
  color:#cbd5f5;
  font-size:15px;
  line-height:1.7;
  margin-bottom:22px;
}

/* BUTTON */
.sd-admission-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#dc2626;
  color:#fff;
  padding:12px 22px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:.25s ease;
}

.sd-admission-btn:hover{
  background:#ef4444;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:600px){
  .sd-admission-card{
    padding:22px;
  }
}
/* icon */
/* ================= STATS ICON ================= */
.sd-stat{
  background:#0f172a;
  padding:22px;
  border-radius:16px;
  text-align:center;
  transition:.25s ease;
}

.sd-stat:hover{
  transform:translateY(-4px);
  background:#111c3a;
}

/* ICON BOX */
.sd-stat-icon{
  width:42px;
  height:42px;
  margin:0 auto 12px;
  border-radius:10px;
  background:#020617;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ICON SVG */
.sd-stat-icon svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:#ef4444;
  stroke-width:2;
}

/* TEXT */
.sd-stat h3{
  margin:0;
  font-size:20px;
}

.sd-stat p{
  margin-top:6px;
  font-size:13px;
  color:#cbd5f5;
}
/* form send unquiry */
/* WHITE BUTTON */
.btn.white{
  background:#fff;
  color:#facc15;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn.white svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:#facc15;
  stroke-width:2;
}

/* RED BUTTON ICON */
.btn.red svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:#fff;
  stroke-width:2;
}

/* DIVIDER */
.sd-divider{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:18px 0;
}

/* CONTACT LIST */
.sd-contact{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.sd-contact-row{
  display:flex;
  align-items:center;
  gap:14px;
}
/* ICON BOX */
.sd-icon{
  width:40px;
  height:40px;
  border-radius:10px;
  background:#020617;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

/* COMMON SVG STYLE */
.sd-icon::after{
  content:"";
  width:18px;
  height:18px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  display:block;
}

/* PHONE */
.sd-icon.phone::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ef4444' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L8 9a16 16 0 0 0 7 7l.6-1.2a2 2 0 0 1 2.1-.5c.8.3 1.7.5 2.6.6A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E");
}

/* EMAIL */
.sd-icon.email::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ef4444' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E");
}

/* WEBSITE */
.sd-icon.web::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ef4444' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E");
}

/* LOCATION */
.sd-icon.loc::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ef4444' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-6-5.3-6-10a6 6 0 0 1 12 0c0 4.7-6 10-6 10z'/%3E%3Ccircle cx='12' cy='11' r='2'/%3E%3C/svg%3E");
}

/* TEXT */
.sd-contact-row small{
  font-size:12px;
  color:#94a3b8;
}
.sd-contact-row p{
  margin:2px 0 0;
  font-size:14px;
  color:#fff;
}
/* BUTTON BASE */
.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;           /* 👈 IMPORTANT */
  user-select:none;
}

/* HOVER FEEL */
.btn:hover{
  opacity:.95;
  transform:translateY(-1px);
}

/* ACTIVE CLICK */
.btn:active{
  transform:scale(.97);
}

/* SVG POINTER SAFE */
.btn svg{
  pointer-events:none;
}
/* blog section */

.blog-section {
  padding: 60px;
  background: #0b1220;
  color: #fff;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.blog-header h2 {
  font-size: 24px;
}

.blog-header .count {
  color: #9aa4b2;
  font-size: 14px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


/* CARD */
.blog-card {
  background: #141f33;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #9aa4b2;
  margin-bottom: 10px;
}

.tag {
  background: #1e2a44;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.blog-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 13px;
  color: #aab4c3;
  margin-bottom: 15px;
}

/* AUTHOR */
.author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #9aa4b2;
}

.avatar {
  width: 26px;
  height: 26px;
  background: #e63946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
}

.date {
  margin-left: auto;
  font-size: 11px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-section {
    padding: 30px 20px;
  }
  /* Tablet */
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* blog detail */
/* body {
  background: #0b1220;
  color: #fff;
  font-family: Arial, sans-serif;
} */

.blog-detail {
  padding: 60px;
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.blog-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.back {
  color: #9aa4b2;
  text-decoration: none;
  font-size: 14px;
}

.badge {
  /* background: #e63946; */
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

/* TITLE */
.blog-detail h1 {
  font-size: 36px;
  max-width: 900px;
  margin-bottom: 20px;
}

/* META */
.blog-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 14px;
  color: #9aa4b2;
  margin-bottom: 40px;
}

.avatar {
  background: #e63946;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LAYOUT */
.blog-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

/* CONTENT */
.blog-content img {
  width: 50%;
  border-radius: 14px;
  margin-bottom: 30px;
}

.blog-content h2 {
  margin-bottom: 15px;
}

.blog-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.blog-content p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog-content li {
  margin-bottom: 8px;
}

/* SIDEBAR */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.author-card,
.cta-card {
  background: #141f33;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
}

.avatar.big {
  width: 50px;
  height: 50px;
  margin: auto;
}

.author-card h4 {
  margin-top: 10px;
}

.author-card p {
  font-size: 13px;
  color: #9aa4b2;
}

/* CTA */
.cta-card h4 {
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 13px;
  margin-bottom: 15px;
  color: #cbd5e1;
}

.cta-card button {
  background: #e63946;
  border: none;
  padding: 10px;
  width: 100%;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail h1 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .blog-detail {
    padding: 30px 20px;
  }
}
/* BLOG FOOTER */
.blog-footer {
  margin-top: 40px;
}

/* TAGS */
.blog-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.tag {
  padding: 6px 14px;
  border: 1px solid #2a3754;
  border-radius: 20px;
  font-size: 12px;
  color: #cbd5e1;
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid #1f2a40;
  margin: 25px 0;
}

/* SHARE */
.blog-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9aa4b2;
  font-size: 14px;
}

.share-text p {
  margin: 0;
}

/* ICONS */
.share-icons {
  display: flex;
  gap: 10px;
}

.blog_icon {
  width: 36px;
  height: 36px;
  background: #1a2438;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .blog-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Contact */
.contact-section{
    padding:80px 8%;
}

.section-title{
    text-align:center;
    font-size:38px;
    font-weight:600;
}

.section-subtitle{
    text-align:center;
    color:#aaa;
    margin-bottom:60px;
}

.contact-wrapper{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

/* LEFT SIDE */
.contact-info{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.info-card{
    background:linear-gradient(145deg,#111,#1a1a1a);
    padding:30px;
    border-radius:15px;
    border:1px solid #222;
    transition:0.4s;
}

.info-card:hover{
    border:1px solid #ff6600;
    transform:translateY(-5px);
}

.info-card i{
    font-size:22px;
    color:#ff6600;
    margin-bottom:10px;
}

.info-card h3{
    margin-bottom:8px;
    font-weight:500;
}

.info-card p{
    color:#bbb;
    font-size:14px;
}

/* Social Icons */
.social-links{
    margin-top:10px;
}

.social-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#111;
    margin-right:10px;
    color:#ff6600;
    border:1px solid #222;
    transition:0.4s;
    text-decoration:none;
}

.social-links a:hover{
    background:#ff6600;
    color:#000;
}

/* RIGHT SIDE FORM */
.contact-form{
    flex:1.2;
    background:linear-gradient(145deg,#111,#1a1a1a);
    padding:40px;
    border-radius:15px;
    border:1px solid #222;
}

.form-group{
    margin-bottom:20px;
}

input, select, textarea{
    width:100%;
    padding:14px;
    background:#0d0d0d;
    border:1px solid #222;
    border-radius:8px;
    color:#fff;
    outline:none;
    transition:0.3s;
}

input:focus, select:focus, textarea:focus{
    border-color:#ff6600;
}

textarea{
    height:120px;
    resize:none;
}

.btn{
    background:#ff6600;
    padding:12px 30px;
    border:none;
    border-radius:25px;
    color:#fff;
    cursor:pointer;
    font-weight:500;
    transition:0.4s;
}

.btn:hover{
    background:#ff8533;
    box-shadow:0 0 15px #ff6600;
}

/* Responsive */
@media(max-width:1000px){
    .contact-wrapper{
        flex-direction:column;
    }

    .contact-info{
        grid-template-columns:1fr;
    }
}

