﻿/* ================= GLOBAL ================= */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #212529;
    line-height: 1.6;
   
}

/* ================= HERO ================= */
.jumbotron {
    padding: 8rem 1rem;
    background: linear-gradient(135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100%);
}

    .jumbotron h1 {
        font-weight: 700;
    }

    .jumbotron .badge {
        font-size: 1rem;
        padding: 8px 14px;
    }
/* ================= GLOBAL GRADIENT TITLES ================= */

/* All H2 headings */
h2{
    font-weight: 700;
    background: linear-gradient( 135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* All service / card titles */
.service-title,
.value-title,
.card h4,
.card h5 {
    font-weight: 700;
    background: linear-gradient( 135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


/* ================= BOOTSTRAP CARDS ================= */
.card {
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    }

/* ================= UI CARD (FIX) ================= */
.ui-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .ui-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    }

.ui-card-content {
    padding: 24px;
}

/* ================= VALUES SECTION ================= */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-container {
    max-width: 1200px;
    margin: auto;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
   
}

.value-desc {
    font-size: .95rem;
    line-height: 1.6;
    color: #333;
   
}
/* ================= CLIENTS ================= */
.clients {
    background: #f8f9fa;
    padding: 60px 30px;
    border-radius: 16px;
}

.client-logo {
    max-height: 80px;
    opacity: 0.85;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

    .client-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(1.05);
    }




/* ================= FEATURED COURSES ================= */

.featured-title {
    font-weight: 800;
    margin-bottom: 8px;
}

.featured-subtext {
    color: #555;
    font-size: 15px;
}

.featured-course-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

    .featured-course-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

.featured-course-title {
    font-weight: 700;
    font-size: 18px;
}



/* ================= PROJECT DOMAIN CARDS ================= */

.project-card {
    display: flex;
    flex-direction: column;
}

.project-img {
    height: 180px; /* SAME HEIGHT FOR ALL IMAGES */
    object-fit: cover; /* CROPS WITHOUT DISTORTION */
}

.project-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ================= SERVICES (NO GRADIENTS) ================= */

.service-card {
    border-radius: 16px;
    padding: 40px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WHITE CARD STYLE */
.service-card-white {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    color: #212529;
}

/* Hover stays SAME */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.service-card-body {
    text-align: center;
}

.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;

}

.service-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.service-btn {
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
}
/* ================= BRAND TEXT (HEADER LOGO) ================= */

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 22px;
    font-weight: 900;
    color: hsl(237 47% 34%);
    margin: 0;
    padding: 0;
}

.brand-tagline {
    font-size: 11px;
    color: #6c757d;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* ================= NAVBAR BASE ================= */

.custom-navbar {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: visible; /* IMPORTANT */
}



.navbar-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ================= NAV LINK UNDERLINE EFFECT (FIXED) ================= */
.custom-navbar .nav-link {
    position: relative;
    padding: 10px 16px;
    color: hsl(237 47% 34%);
    font-weight: 700;
    transition: color 0.3s ease;
    margin-right:20px;
}



    /* underline hidden */
    .custom-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px; /* KEY FIX */
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: linear-gradient( 135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100% );
        transition: width 0.3s ease;
        border-radius: 3px;
    }

    /* hover underline */
    .custom-navbar .nav-link:hover::after {
        width: 60%;
    }

    /* active underline */
    .custom-navbar .nav-link.active::after {
        width: 60%;
    }
/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(135deg, hsl(237 47% 34%), hsl(237 47% 24%));
    color: #ffffff;
}

/* LOGO */
.footer-logo-box {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 8px;
    padding: 4px;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        opacity: 0.9;
    }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

/* SOCIAL ICONS */
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f7c600;
    color: #1b1f5a;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .footer-socials a:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

/* CONTACT LINKS */
.footer a {
    color: #ffffff;
    text-decoration: none;
}

    .footer a:hover {
        text-decoration: underline;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* ===================================================== */
/* ================= COURSES LIST PAGE ================= */
/* ===================================================== */

/* HERO */
.courses-hero {
    background: linear-gradient(135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100%);
    color: #fff;
    padding: 120px 20px 80px;
    text-align: center;
}

.courses-hero-title {
    font-size: 48px;
    font-weight: 700;
}

.courses-hero-sub {
    font-size: 18px;
    opacity: 0.9;
}

/* FILTER SECTION */
.filters-section {
    background: #f8f9fa;
    padding: 50px 0 40px;
}

.filters-grid {
    display: grid;
    grid-template-columns: 1.4fr 2fr 1fr;
    gap: 32px;
    align-items: end;
}

@media (max-width: 992px) {
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: hsl(237 47% 34%);
    margin-bottom: 8px;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid #e2e6f0;
    font-size: 15px;
}

    .filter-input::placeholder {
        color: #9aa4bf;
    }

/* DOMAIN TABS */
.domain-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #f3f4f8;
    padding: 8px;
    border-radius: 20px;
}

    .domain-tabs .tab {
        border: none;
        background: transparent;
        padding: 10px 18px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 600;
        color: #6b7280;
        cursor: pointer;
    }

        .domain-tabs .tab.active {
            background: #fff;
            color: hsl(237 47% 34%);
            box-shadow: 0 6px 16px rgba(0,0,0,0.08);
        }

/* META */
.courses-meta {
    margin-top: 18px;
    font-size: 14px;
    color: #64748b;
}

/* COURSES GRID */
.courses-section {
    padding: 60px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* COURSE CARD (LIST PAGE) */
.course-card {
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

    .course-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

.course-card-header {
    height: 190px;
    background: linear-gradient(135deg, hsl(237 47% 34%), hsl(237 47% 24%));
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 0 16px;
}

.course-card-body {
    padding: 20px;
}

.course-badge {
    display: inline-block;
    background: #e9f0ff;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.course-card-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.course-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #6c757d;
}

.course-card-footer {
    padding: 20px;
    padding-top: 0;
}

.btn-course {
    background: #070766;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
}

    .btn-course:hover {
        background: #050552;
        color: #fff;
    }

.courses-empty {
    text-align: center;
    padding: 60px;
    color: #777;
}

/* ===================================================== */
/* ================= COURSE DETAILS PAGE =============== */
/* ===================================================== */

.course-details-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #070766, #050552);
    color: #fff;
}

.course-back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: rgba(255,255,255,.9);
    font-weight: 500;
}

.course-details-title {
    font-size: 48px;
    font-weight: 800;
    margin: 16px 0;
}

.course-details-desc {
    font-size: 20px;
    opacity: 0.95;
}

.course-details-meta {
    display: flex;
    gap: 24px;
    margin: 24px 0;
    font-size: 18px;
}

.course-details-content {
    padding: 80px 0;
}

.course-details-wrapper {
    max-width: 900px;
    margin: auto;
}

.course-details-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
}

    .course-details-card.highlight {
        background: linear-gradient(135deg, #0d6efd, #084298);
        color: #fff;
    }

.tools-grid,
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.course-details-cta {
    text-align: center;
    padding: 60px;
    background: #f3f4f6;
    border-radius: 20px;
}

/* ===================================================== */
/* ============ PROJECT DEVELOPMENT (PD) =============== */
/* ===================================================== */

/* HERO */
.pd-hero {
    padding: 120px 20px 90px;
    background: linear-gradient(135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100%);
    color: #ffffff;
    text-align: center;
}

.pd-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pd-hero-sub {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* ================= PROJECT DOMAINS ================= */

.pd-domains {
    padding: 80px 0;
}

/* Card Wrapper */
.pd-domain-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Left Panel */
.pd-domain-left {
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .pd-domain-left h3 {
        font-size: 26px;
        font-weight: 800;
        margin: 20px 0 8px;
        color: #1f2a6d;
    }

    .pd-domain-left p {
        font-size: 15px;
        color: #6b7280;
    }

/* Icon */
.pd-domain-icon {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

/* Background Variants */
.it-bg {
    background: #edf3ff;
}

.circuit-bg {
    background: #eafaf1;
}

.mechanical-bg {
    background: #fff3e6;
}

.civil-bg {
    background: #f3e8ff;
}

/* Right Panel */
.pd-domain-right {
    padding: 40px;
}

    .pd-domain-right h4 {
        font-size: 22px;
        font-weight: 800;
        color: #1f2a6d;
        margin-bottom: 24px;
    }

/* List */
.pd-domain-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pd-domain-list li {
        font-size: 15px;
        color: #374151;
        position: relative;
        padding-left: 16px;
    }

        .pd-domain-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #f7c600;
            font-weight: bold;
        }

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .pd-domain-wrapper {
        grid-template-columns: 1fr;
    }

    .pd-domain-list {
        grid-template-columns: 1fr;
    }

    .pd-domain-left {
        padding: 40px 20px;
    }
}


/* ================= PROCESS ================= */

.pd-process {
    padding: 90px 0;
    background: #f8f9fa;
}

/* Title */
.pd-process-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1f2a6d;
}

/* Grid */
.pd-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Card */
.pd-process-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

    .pd-process-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

/* Step Circle */
.pd-process-step {
    width: 72px;
    height: 72px;
    background: #f7c600;
    color: #1f2a6d;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Heading */
.pd-process-heading {
    font-size: 22px;
    font-weight: 800;
    color: #1f2a6d;
    margin-bottom: 14px;
}

/* Text */
.pd-process-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .pd-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pd-process-grid {
        grid-template-columns: 1fr;
    }

    .pd-process-title {
        font-size: 28px;
    }
}


/* ================= STATS ================= */

.pd-stats {
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
}

.pd-stats-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2a7a;
    margin-bottom: 16px;
}

.pd-stats-sub {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
    color: #5a6b85;
}

/* Grid */
.pd-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.pd-stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .pd-stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    }

/* Number */
.pd-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #f4b400; /* Yellow like image */
    margin-bottom: 10px;
}

/* Text */
.pd-stat-text {
    font-size: 18px;
    color: #5a6b85;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .pd-stats-title {
        font-size: 28px;
    }

    .pd-stats-sub {
        font-size: 16px;
    }
}


/* ================= CTA ================= */

.pd-cta {
    padding: 90px 0;
    background: #f8f9fa;
}

.pd-cta-card {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient( 135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100% );
    color: #ffffff;
    padding: 70px 60px;
    border-radius: 22px;
    text-align: center;
}

/* Title */
    .pd-cta-card h2 {
        color: #ffffff !important;
        background: none !important;
        -webkit-text-fill-color: #ffffff !important;
    }


/* Subtitle */
.pd-cta-sub {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 36px;
}

/* Buttons wrapper */
.pd-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary button */
.pd-btn-primary {
    background: #f7c600;
    color: #070766;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 999px;
    border: none;
}

    .pd-btn-primary:hover {
        background: #e6b800;
        color: #070766;
    }

/* Outline button */
.pd-btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 999px;
}

    .pd-btn-outline:hover {
        background: #ffffff;
        color: #084298;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .pd-cta-card {
        padding: 45px 24px;
    }

    .pd-cta-title {
        font-size: 32px;
    }

    .pd-cta-sub {
        font-size: 18px;
    }
}



/* ===================================================== */
/* ============== R&D / PhD ASSISTANCE ================= */
/* ===================================================== */

/* ---------- HERO ---------- */
.rd-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, hsl(237 47% 34%), hsl(237 47% 24%));
    color: #ffffff;
    text-align: center;
}

.rd-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.rd-hero-sub {
    font-size: 20px;
    opacity: 0.95;
    max-width: 850px;
    margin: auto;
}


/* ================= SERVICES ================= */

.rd-services {
    padding: 90px 0;
    background: #ffffff;
}

.rd-services-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1f2a7a;
}

/* GRID → FORCE 3 CARDS PER ROW */
.rd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ EXACTLY 3 PER ROW */
    gap: 32px;
}

/* CARD */
.rd-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e5eaf5;
    transition: all 0.3s ease;
    height: 100%;
}

    .rd-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

/* ICON BOX */
.rd-icon-box {
    width: 64px;
    height: 64px;
    background: #fff7e6;
    color: #f7b500;
    font-size: 28px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* TITLE */
.rd-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2a7a;
    margin-bottom: 12px;
}

/* DESCRIPTION */
.rd-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* FEATURES (KEEP ✔ — NO DOT CHANGE) */
.rd-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .rd-feature-list li {
        position: relative;
        padding-left: 26px;
        font-size: 14px;
        margin-bottom: 10px;
        color: #333;
    }

        .rd-feature-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #f7b500;
            font-weight: bold;
        }

/* ================= RESPONSIVE ================= */

/* TABLET → 2 PER ROW */
@media (max-width: 992px) {
    .rd-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE → 1 PER ROW */
@media (max-width: 576px) {
    .rd-services-grid {
        grid-template-columns: 1fr;
    }

    .rd-services-title {
        font-size: 32px;
    }
}



/* ================= PUBLICATIONS ================= */

.rd-publications {
    padding: 80px 0;
    background: #ffffff;
}

.rd-publications-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #2c2f8c;
    margin-bottom: 50px;
}

/* GRID */
.rd-publications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.rd-publication-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 32px;
    border: 1px solid #e3e7f3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .rd-publication-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.1);
    }

    /* TITLE */
    .rd-publication-card h3 {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 20px;
        font-weight: 700;
        color: #2c2f8c;
        margin-bottom: 8px;
    }

/* YELLOW DOT */
.rd-dot {
    width: 12px;
    height: 12px;
    background: #f7b500;
    border-radius: 50%;
    flex-shrink: 0;
}

/* DESCRIPTION */
.rd-publication-card p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .rd-publications-grid {
        grid-template-columns: 1fr;
    }
}



/* ---------- RESEARCH DOMAINS ---------- */
.rd-domains {
    padding: 80px 0;
}

.rd-domain-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e5e5;
    height: 100%;
}

    .rd-domain-card h5 {
        font-weight: 700;
        margin-bottom: 12px;
    }

    .rd-domain-card ul {
        padding-left: 18px;
    }

    .rd-domain-card li {
        font-size: 14px;
        margin-bottom: 6px;
    }

/* ---------- STATS ---------- */
.rd-stats {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.rd-stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.rd-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0d6efd;
}

/* ---------- CTA ---------- */
.rd-cta {
    padding: 80px 0;
    text-align: center;
}

    .rd-cta h2 {
        margin-bottom: 12px;
    }

    .rd-cta p {
        font-size: 18px;
        color: #555;
        margin-bottom: 24px;
    }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .rd-hero-title {
        font-size: 36px;
    }

    .rd-hero-sub {
        font-size: 18px;
    }
}
/* ===================================================== */
/* ================= ABOUT PAGE ======================== */
/* ===================================================== */

/* ---------- HERO ---------- */
.about-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero-sub {
    font-size: 20px;
    opacity: 0.95;
}

/* ---------- STORY ---------- */
.about-story {
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 14px;
    line-height: 1.7;
}

.about-story-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* ---------- MISSION / VISION ---------- */
.about-mv {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-mv-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all .3s ease;
}

    .about-mv-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 32px rgba(0,0,0,.12);
    }

.about-mv-icon {
    font-size: 48px;
    color: #0d6efd;
    margin-bottom: 16px;
}

.mv-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
/* ================= CORE VALUES ================= */

.about-values {
    padding: 80px 0;
    background: #ffffff;
}

.values-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* GRID FIX */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.about-value-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .about-value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

    /* ICON */
    .about-value-card i {
        font-size: 36px;
        color: #0d6efd;
        margin-bottom: 16px;
    }

    /* TITLE */
    .about-value-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    /* TEXT */
    .about-value-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
    }

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- CERTIFICATIONS ---------- */
.about-certs {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.about-cert-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

    .about-cert-card i {
        font-size: 36px;
        color: #0d6efd;
        margin-bottom: 10px;
    }

/* ---------- GROUP COMPANY ---------- */
.about-group {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c2f8c, #1f2266);
    color: #ffffff;
    text-align: center;
}

    .about-group .container {
        max-width: 1000px;
        margin: 0 auto;
    }

/* ICON */
.about-group-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

    .about-group-icon i {
        font-size: 32px;
        color: #ffffff;
    }


/* TITLE */
.about-group-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* TEXT */
.about-group-text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

    /* LINK */
    .about-group-text a {
        color: #ffffff;
        font-weight: 700;
        text-decoration: underline;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-group-title {
        font-size: 28px;
    }

    .about-group-text {
        font-size: 16px;
    }
}




/* ---------- WHY ---------- */
.about-why {
    padding: 80px 0;
    background: #ffffff;
}

.about-section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* GRID */
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

/* PILL ITEM */
.about-why-item {
    background: #f1f3f5;
    border-radius: 999px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #1e2a78; /* deep blue like image */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .about-why-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

/* YELLOW DOT */
.about-why-dot {
    width: 10px;
    height: 10px;
    background: #f4b400;
    border-radius: 50%;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-why-item {
        font-size: 16px;
    }
}

/* ================= CHAIRMAN PROFILE ================= */

.chairman-section {
    padding: 90px 0;
    background: #ffffff;
}

.chairman-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE */
.chairman-image-wrap {
    text-align: center;
}

.chairman-image {
    width: 100%;
    max-width: 250px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* CONTENT */
.chairman-content {
    color: #444;
}

.chairman-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e2460;
    margin-bottom: 24px;
}

.chairman-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.chairman-content strong {
    color: #1e2460;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .chairman-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-title {
        font-size: 34px;
    }

    .chairman-content p {
        font-size: 16px;
    }
}


/* ---------- STATS ---------- */
.about-stats {
    padding: 80px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.about-stat-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0,0,0,.1);
}

    .about-stat-card i {
        font-size: 36px;
        color: #0d6efd;
        margin-bottom: 10px;
    }

.about-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0d6efd;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-title {
        font-size: 36px;
    }
}


/* ================= CONTACT HERO ================= */
.contact-hero {
    background: linear-gradient(135deg, hsl(237 47% 34%) 0%, hsl(237 47% 24%) 100%);
    color: #fff;
    padding: 120px 20px 80px;
}

.contact-hero-title {
    font-size: 46px;
    font-weight: 800;
}

.contact-hero-sub {
    font-size: 18px;
    opacity: 0.9;
}

/* ================= CONTACT INFO ================= */
.contact-main {
    padding: 70px 0;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .contact-info-card i {
        font-size: 32px;
        color: #0d6efd;
        margin-bottom: 12px;
    }

    .contact-info-card h4 {
        font-weight: 700;
        margin-bottom: 8px;
    }

    .contact-info-card a {
        color: #333;
        text-decoration: none;
    }

        .contact-info-card a:hover {
            color: #0d6efd;
        }

/* ================= MAP ================= */
.contact-map {
    padding: 70px 0;
    background: #f8f9fa;
}

.map-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* ================= QUICK CONTACT ================= */

.quick-contact {
    padding: 80px 0;
    background: #ffffff;
}

.quick-contact-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #2c2f8c;
    margin-bottom: 50px;
}

/* GRID */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.quick-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .quick-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

/* ICON */
.quick-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

    /* ICON COLORS */
    .quick-icon.call {
        background: #fff4d6;
        color: #f4b400;
    }

    .quick-icon.whatsapp {
        background: #e9f9ef;
        color: #25d366;
    }

    .quick-icon.email {
        background: #fff4d6;
        color: #f4b400;
    }

/* TEXT */
.quick-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c2f8c;
    margin-bottom: 8px;
}

.quick-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 34px;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .jumbotron {
        text-align: center;
    }

    .btn {
        width: 100%;
    }
}
