@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #003B95;
    --primary-dark: #002D72;
    --secondary: #0056D2;
    --accent: #0066FF;
    --bg-light: #F0F7FF;
    --bg-white: #FFFFFF;
    --text-dark: #0A1D37;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(0, 59, 149, 0.1);
    --text-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

.highlight {
    color: var(--secondary);
}

/* Layout */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar */
.navbar {
    background: white !important;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.btn-contact {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--primary);
    color: white;
}

/* Section */
.section-padding {
    padding: 80px 0;
}

.section-bg-light {
    background-color: var(--bg-light);
}

/* Home Hero */
.hero-wrapper-home {
    position: relative;
    background: #FFFFFF;
    padding: 6rem 0 12rem;
    overflow: hidden;
}

.hero-bg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.hero-content-home {
    position: relative;
    z-index: 2;
}

.hero-image-home {
    position: relative;
    z-index: 1;
}

.floating-card-home {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.news-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    display: inline-block;
}

.calendar-grid-home {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.calendar-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.calendar-cell {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-cell.active {
    background: var(--primary);
    color: white;
}

.calendar-cell:hover:not(.active) {
    background: var(--bg-light);
}

.event-card-home {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box-small {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Course Cards */
.course-card {
    overflow: hidden;
    padding: 0;
}

.course-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.course-body {
    padding: 2rem;
}

/* Leadership */
.leader-card {
    text-align: center;
}

.leader-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid white;
    box-shadow: var(--card-shadow);
}

/* Contact Page */
.contact-sidebar {
    background: var(--primary);
    border-radius: 20px;
    padding: 3rem;
    color: white;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-control {
    border: 1px solid var(--border-color);
    padding: 0.8rem 1rem;
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 59, 149, 0.2);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color:#FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 59, 149, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

  
    .social-icon:hover  {
        color: #0758C8; /* blue color on hover */
        background: white;
    }

/* Chatbot Bubble */
.chatbot-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
}



/*home css*/


#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 5%; /* smaller clickable area if you want */
    top: 50%;
    transform: translateY(-50%);
}

#heroCarousel .carousel-control-prev {
    left: 1%; /* closer to left edge */
}

#heroCarousel .carousel-control-next {
    right: 1%; /* closer to right edge */
}

/* Optional: make icons bigger */
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 100%, 100%;
}

.custom-carousel-indicators {
    display: flex;
    gap: 12px; /* space between dots */
    z-index: 10; /* ensure above images */
}

    .custom-carousel-indicators button {
        width: 14px; /* width of dot */
        height: 14px; /* height of dot */
        border-radius: 50%; /* circle shape */
        background-color: #ffffff; /* white dot */
        border: none;
        opacity: 0.8;
        transition: all 0.3s;
        cursor: pointer;
    }

        .custom-carousel-indicators button.active {
            background-color: #ffc107; /* active dot color */
            opacity: 1;
        }

.btn-learnmore {
    background-color: transparent;
    color: #0758C8;
    border: 2px solid #0758C8;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    align-items: center;
}

    .btn-learnmore:hover,
    .btn-learnmore:focus,
    .btn-learnmore:active {
        background-color: transparent;
        color: #0758C8;
        border: 2px solid #0758C8;
        box-shadow: none;
    }


.btn-scholarship {
    background-color: transparent;
    color: #0758C8;
    border: 2px solid #FFFFFF;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    align-items: center;
}

    .btn-scholarship:hover,
    .btn-scholarship:focus,
    .btn-scholarship:active {
        background-color: transparent;
        color: #0758C8;
        border: 2px solid #FFFFFF;
        box-shadow: none;
    }

/* Common container */
.calendar-box
 {
    background: #fff;
    border-radius: 20px;
    border: 10px solid #E5E7EB;
    padding: 30px;
    height: 100%;
}

/* Calendar grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    justify-items: center;
}

    /* Calendar grid styling */
    .calendar-grid span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s;
        background: #f8f9fa;
    }

        .calendar-grid span.active {
            background-color: #0758C8;
            color: #fff;
        }

        .calendar-grid span:hover {
            background-color: #d9e4ff;
        }

/* Timeline event card colors */
.event-card.blue {
    background-color: #e7f0ff;
}

.event-card.orange {
    background-color: #fff4e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .timeline-row {
        flex-direction: column;
        align-items: flex-start;
    }

        .timeline-row .event-card {
            width: 100%;
            margin-top: 0.5rem;
        }
}

/* Social icon circle style */
.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circle shape */
    background-color: #0758C8; /* Blue circle fill */
    color: white; /* White icon */
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s;
}

    .social-links .social-icon:hover {
        transform: scale(1.1); /* Slight zoom on hover */
    }


.premium-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px 20px; /* top padding for icon */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; /* for absolute positioning of icon */
    height: 100%; /* lets Bootstrap columns control width/height */
    width: 100%;
    text-align: center;
    margin: auto;
}

    .premium-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

/* Icon circle with border */
.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #0758C8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding:1px;
}

.premium-card h4 {
    color: #2F327D;
    font-weight: 600;
    margin-top: 70px;
}

.premium-card p {
    color: #6c757d;
    margin-top: 10px;
    font-size: 1rem;
   
}


.premium-card-whochoose {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px 20px; /* top padding for icon */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; /* for absolute positioning of icon */
    height: 100%; /* lets Bootstrap columns control width/height */
    width: 100%;
    text-align: center;
    margin: auto;
    background: #ffffff;
    border-left: 8px solid #0758C8; /* thick blue left border */
    border-radius: 12px;
    color: #696984;
}

.facilitator-card {
    position: relative;
    background-image: url('/Images/Course/facilitybackgroundpic1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 320px; /* FIXED height */

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

   

    /* Bring content above overlay */
    .facilitator-card > * {
        position: relative;
        z-index: 1;
    }

.facilitator-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
/* Fee Pill */
.fee-pill {
    display: inline-flex; /* change this */
    display: flex; /* <-- use this instead */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #007bff;
    border-radius: 50px;
    background: #f8f9ff;
    color: #007bff;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.25rem; /* bigger */
    transition: background 0.3s, color 0.3s;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem; /* add spacing below */
}



/* Arrow inside circle */
.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #007bff;
    background: #fff;
    color: #007bff;
    font-size: 0.75rem;
    transition: background 0.3s, color 0.3s;
}


/* Register Button */
.register-btn {
    display: block; /* forces new line */
    margin: 0 auto; /* centers it */
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    font-size: 1.25rem; /* bigger text */
    font-weight: 500;
    background-color: #0758C8;
    border: none;
    color: #FFFFFF ;
    transition: background 0.3s, color 0.3s;
}

.form-label-customized {
    display: flex;
    justify-content: start;
    font-weight: 600;
    color: #0A1D37;
}
