﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.navbar {
    background: black;
    color: white;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Brand container: column layout to stack image and text */
.navbar-brand {
    display: flex;
    flex-direction: column; /* stacks image above span */
    align-items: center; /* centers horizontally */
    text-decoration: none;
    gap: 0.10rem; /* small gap between image and text */
    transition: transform 0.3s ease;
    text-align: center;
    margin-left:-10px;
}

   

    /* Logo image style */
    .navbar-brand img {
        height: 70px;
        width: auto;
        border-radius: 50%;
        display: block;
        margin: 0 auto; /* ensures centering within flex column */
       
    }

    /* Text under logo - solid color, no gradient */
    .navbar-brand span {
        font-size: 0.9rem;
        font-family: 'Halimun', sans-serif;
        color: white; /* solid dark color */
       /* text-transform: uppercase;*/
        letter-spacing: 2px;
        background: none; /* no gradient */
       
        margin-top: 4px;
        display: inline-block;
    }

       

/* Navigation items - solid colors, no gradients */
.navbar-nav {
    gap: 0.15rem;
    margin-left: 0px;
    color: white;
}

.nav-link {
    font-weight: 700;
    padding: 0.6rem 1rem !important;
    border-radius: 40px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
  margin-left:18px;
    font-size:18px;
    color: white !important; /* solid dark text */
    background: transparent;
}

    .nav-link i {
        font-size: 1rem;
        color: white; /* solid icon color */
        transition: transform 0.2s ease;
    }

    .nav-link:hover {
        background-color: rgba(230, 126, 34, 0.1);
        color: #fcdd4e !important;
        transform: translateY(-2px);
    }

        .nav-link:hover i {
            color: #d35400;
            transform: translateY(-2px);
        }

/* Dropdown Menu Styles - clean, no gradients */
.dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    padding: 0.6rem 0;
    margin-top: 0.5rem;
    animation: slideDown 0.25s ease;
    min-width: 260px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: #1e2a3e;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

    .dropdown-item i {
        color: #e67e22;
        font-size: 1rem;
        width: 24px;
        text-align: center;
    }

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #e67e22;
        padding-left: 1.8rem;
    }

        .dropdown-item:hover i {
            color: #d35400;
        }

/* Navbar Toggler - solid styling */
.navbar-toggler {
    border: 1px solid rgba(230, 126, 34, 0.3);
    background: transparent;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.25);
        outline: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e67e22' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Responsive adjustment for mobile */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 0.5rem;
    }

    .nav-link {
        justify-content: flex-start;
    }

    .dropdown-menu {
        background: #ffffff;
        border-left: 2px solid #e67e22;
        border-radius: 12px;
        margin-left: 1rem;
    }

    .navbar-brand img {
        height: 65px;
    }

    .navbar-brand span {
        font-size: 0.9rem;
    }
}

/* ===== MAIN CONTENT AREA ===== */
.body-content {
    padding: 3rem 0;
    min-height: calc(100vh - 300px);
}

/* ===== FOOTER STYLES ===== */
footer {
    background: lightgrey;
    color: #333;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #e67e22, #1a1a1a, #e67e22);
        background-size: 300% 100%;
        animation: gradientMove 4s ease infinite;
    }

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .footer-links a {
        background: linear-gradient(90deg, #e67e22 0%, #1a1a1a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 0;
    }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e67e22;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            transform: translateY(-2px);
        }

            .footer-links a:hover::after {
                width: 100%;
            }

.social-icons {
    display: flex;
    gap: 1rem;
}

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(230, 126, 34, 0.1);
        border-radius: 50%;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        color: #e67e22; /* Default icon color: darker saffron */
    }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, #e67e22 0%, #1a1a1a 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            border-radius: 50%;
        }

        .social-icons a i {
            position: relative;
            z-index: 2;
        }

        .social-icons a:hover {
            transform: translateY(-5px);
        }

            .social-icons a:hover::before {
                opacity: 1;
            }

            .social-icons a:hover i {
                color: white; /* Hover: icon becomes white (same as before) */
            }

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    color: #555;
}

    .copyright strong {
        background: linear-gradient(90deg, #e67e22 0%, #1a1a1a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
    }

    .copyright small {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.85rem;
        opacity: 0.8;
    }

    .copyright i {
        margin: 0 0.2rem;
    }

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
    }

    .dropdown-menu {
        background: rgba(255, 255, 255, 0.98);
        margin-left: 1rem;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

        .navbar-brand img {
            height: 40px;
        }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links, .social-icons {
        justify-content: center;
    }

    .body-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 1rem;
    }

        .footer-links a {
            font-size: 0.85rem;
        }

    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.body-content {
    animation: fadeIn 0.8s ease;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(90deg, #e67e22 0%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(90deg, #e67e22 0%, #1a1a1a 100%);
}

/* ===== SCROLLBAR STYLES ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #e67e22 0%, #1a1a1a 100%);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, #1a1a1a 0%, #e67e22 100%);
    }








/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg,#0f0f0f,#1b1b1b,#2a2a2a);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top:30px;
}

    /* subtle glow */
    .hero-section::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(255,193,7,0.3), transparent 70%);
        z-index: 0;
    }

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
}

    .hero-content h1 {
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 20px;
    }

        .hero-content h1 span {
            color: #ffc107;
            font-weight: 900;
        }

    /* PARAGRAPH */
    .hero-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #d1d1d1;
        margin-bottom: 30px;
        text-align: justify;
    }

    /* BUTTONS */
    .hero-content .btn-warning {
        background: #ffc107;
        border: none;
        transition: all .3s ease;
    }

        .hero-content .btn-warning:hover {
            background: #ffb300;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,193,7,.35);
        }

    .hero-content .btn-outline-light {
        border: 2px solid #fff;
        transition: all .3s ease;
    }

        .hero-content .btn-outline-light:hover {
            background: #fff;
            color: #000;
            transform: translateY(-3px);
        }

/* IMAGE */
.hero-image {
    position: relative;
    text-align: center;
}

    .hero-image img {
        border-radius: 20px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.5);
        transition: transform .5s ease;
    }

        .hero-image img:hover {
            transform: scale(1.05);
        }

/* RESPONSIVE */
@media (max-width: 992px) {

    .hero-section {
        padding: 70px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        text-align: justify;
    }

    .hero-content .btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}


.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grayscale-hover {
   height:100px;
   border-radius:16px;
    transition: all 0.3s ease;
}

    .grayscale-hover:hover {
        filter: grayscale(0%);
        transform: scale(1.05);
        cursor: pointer;
    }

.ff-main {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* layout wrapper */

.ff-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* sections */

.ff-offer-section,
.ff-founder-section {
    background: #d9d3cc;
    padding: 80px 0;
}

/* text */

.ff-offer-text {
    width: 50%;
}

.ff-founder-text {
    width: 55%;
}

    .ff-offer-text h2,
    .ff-founder-text h2 {
        color: #f26522;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .ff-offer-text p,
    .ff-founder-text p {
        font-size: 18px;
        line-height: 1.6;
        color: #111;
        margin-bottom: 20px;
        text-align:justify;
    }

/* images */

.ff-offer-image {
    width: 40%;
}

.ff-founder-image {
    width: 35%;
}

    .ff-offer-image img,
    .ff-founder-image img {
        width: 100%;
        height: auto;
    }

/* responsive */

@media(max-width:900px) {

    .ff-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .ff-offer-text,
    .ff-founder-text,
    .ff-offer-image,
    .ff-founder-image {
        width: 100%;
    }

    .ff-offer-image {
        margin-top: 30px;
    }

    .ff-founder-image {
        margin-bottom: 30px;
    }
}



.testimonial-card, .program-card, .event-card, .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial-card:hover, .program-card:hover, .event-card:hover, .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
    }

.stat-item {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.col-md-3:last-child .stat-item {
    border-right: none;
}

@media (max-width: 768px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .col-md-3:last-child .stat-item {
        border-bottom: none;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #764ba2, #667eea);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(102,126,234,0.4);
    }

.btn-outline-primary {
    border-color: #667eea;
    color: #667eea;
}

    .btn-outline-primary:hover {
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-color: transparent;
        color: white;
    }

.event-date {
    min-width: 80px;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
}

.program-card {
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-image img {
    border: 5px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 10px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

    .whatsapp-float img {
        width: 35px;
        height: 35px;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }




.call-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ff4d4d;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

    .call-float img {
        width: 35px;
        height: 35px;
    }

    .call-float:hover {
        padding-right: 18px;
        background: #e60023;
    }

.career-form-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .career-form-container h2 {
        color: #333;
        margin-bottom: 25px;
        text-align: center;
        border-bottom: 2px solid #007bff;
        padding-bottom: 10px;
    }

.form-panel {
    background-color: white;
    padding: 25px;
    border-radius: 6px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: 600;
        color: #555;
        margin-bottom: 5px;
        display: block;
    }

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    }

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

    .btn-secondary:hover {
        background-color: #545b62;
    }