﻿/* =========================
   HERO SLIDER MAIN IMAGE
========================= */
.hero-img {
    height: 90vh;
    width: 100%;
    object-fit: cover;
}

/* =========================
   OVERLAY (DARK SHADE)
========================= */
.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* dark overlay */
    z-index: 1;
}

/* =========================
   CAPTION POSITION (CENTER)
========================= */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 80%;
}

/* =========================
   TEXT STYLING
========================= */
.carousel-caption h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.carousel-caption p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* =========================
   BUTTON STYLE
========================= */
.carousel-caption .btn-warning {
    background-color: #f59e0b;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.carousel-caption .btn-warning:hover {
    background-color: #ea580c;
}

/* =========================
   CAROUSEL CONTROLS (ARROWS)
========================= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
}

/* =========================
   INDICATORS (DOTS)
========================= */
.carousel-indicators [data-bs-target] {
    background-color: #ffffff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {

    .hero-img {
        height: 60vh;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-caption {
        width: 90%;
    }
}

.about-section {
    background: #f9fafb;
}

.about-img {
    border-radius: 15px;
}

/* Floating card */
.about-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
}

.about-card h5 {
    margin: 0;
    font-weight: 700;
    color: #f59e0b;
}

.about-card p {
    margin: 0;
    font-size: 14px;
}

/* Mobile fix */
@media (max-width: 768px) {
    .about-card {
        position: static;
        margin-top: 15px;
    }
}

/* SECTION BACKGROUND */
.fields-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

/* CARD STYLE */
.field-card {
    background: rgba(255,255,255,0.05);
    padding: 25px 15px;
    border-radius: 15px;
    transition: 0.3s;
    color: #fff;
    backdrop-filter: blur(5px);
}

/* ICON */
.field-card img {
    height: 70px;
    margin-bottom: 15px;
}

/* TITLE */
.field-card h6 {
    font-weight: 600;
    margin: 0;
}

/* HOVER EFFECT */
.field-card:hover {
    background: #f59e0b;
    transform: translateY(-8px);
    color: #000;
}
.shiksha-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
}

/* Image */
.shiksha-img {
    height: 100%;
    object-fit: cover;
}

/* Floating badge */
.shiksha-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.shiksha-badge h5 {
    margin: 0;
    color: #f59e0b;
    font-weight: 700;
}

.shiksha-badge p {
    margin: 0;
    font-size: 14px;
}

/* Content */
.shiksha-content h2 {
    font-size: 32px;
}

/* Mobile fix */
@media (max-width: 768px) {
    .shiksha-badge {
        position: static;
        margin-top: 15px;
    }
}
.impact-section {
    background: #f9fafb;
}

.impact-card {
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    transition: 0.3s;
}

/* Hover effect */
.impact-card:hover {
    transform: translateY(-8px);
}

/* Colors */
.pink { background: #ec4899; }
.teal { background: #14b8a6; }
.yellow { background: #f59e0b; }
.orange { background: #f97316; }
.green { background: #22c55e; }
.purple { background: #8b5cf6; }

.impact-card h4 {
    font-size: 28px;
    font-weight: 700;
}

.impact-card p {
    font-size: 14px;
    margin-top: 8px;
}
.footer-section {
    background: #0f172a;
}

/* Logo */
.footer-logo {
    height: 60px;
}

/* Links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f59e0b;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f59e0b;
}

/* Bottom */
.footer-bottom {
    background: #020617;
    font-size: 14px;
}

.dev-name {
    color: #f59e0b;
    font-weight: 600;
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background-color: #f59e0b;
    color: #fff;
}

@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.breadcrumb-section {
    background: #f8fafc;
}

.breadcrumb a {
    text-decoration: none;
    color: #f59e0b;
}

.breadcrumb-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/breadcrumb.jpg') center/cover no-repeat;

    padding: 60px 0;
    color: #fff;
}

.breadcrumb-banner h2 {
    font-size: 32px;
}

.breadcrumb a {
    color: #f59e0b;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffffff;
}


.about-page i {
    font-size: 40px;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.team-social a {
    margin: 0 5px;
    color: #555;
    font-size: 16px;
    transition: 0.3s;
}

.team-social a:hover {
    color: #f59e0b;
}

/* Timeline Container */
.timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 3px solid #f59e0b;
}

/* Timeline Item */
.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

/* Dot */
.timeline-item::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #f59e0b;
    border-radius: 50%;
}

/* Year */
.timeline-year {
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 5px;
}

/* Content */
.timeline-content h5 {
    margin-bottom: 5px;
}

.timeline-content p {
    margin: 0;
    color: #6b7280;
}



.timeline-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.timeline-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}




.img-logo-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 70px;
    background: rgba(255,255,255,0.85);
    padding: 6px;
    border-radius: 10px;
}

.mv-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-8px);
}

/* ICON */
.mv-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* COLORS */
.mission-card {
    border-top: 5px solid #f97316;
}

.vision-card {
    border-top: 5px solid #22c55e;
}

.mission-card .mv-icon {
    color: #f97316;
}

.vision-card .mv-icon {
    color: #22c55e;
}

.trans-card {
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.trans-card:hover {
    transform: translateY(-6px);
}

.trans-card i {
    font-size: 35px;
    color: #f59e0b;
    margin-bottom: 10px;
}

/* Documents */
.doc-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Fund boxes */
.fund-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
}

.fund-box h5 {
    font-size: 28px;
    color: #f97316;
}

.program-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

.program-img:hover {
    transform: scale(1.03);
}