/* IDK STYLE */

:root {
    --primary: #0f2f0f; /* Dark PCC Green */
    --primary-light: #153415;
    --secondary: #ffcc33; /* Yellow/Gold */
    --accent: #2e8b57;
    --light: #f8f9fa;
    --dark: #2b2d42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
    background: #ffffff;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/*Nav Bar */
.main-navbar {
    background: var(--primary) !important;
    padding: 1.2rem 0 !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand .brand-logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--secondary) !important;
    transform: translateY(-2px);
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

/* SIGN UP BUTTON */
.btn-signup {
    background: var(--secondary);
    color: #000 !important;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-signup:hover {
    background: transparent;
    color: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 51, 0.3);
}

/* PROFILE CIRCLE */
.profile-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary), #ffdd66);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.profile-circle:hover {
    transform: scale(1.1);
    border-color: var(--secondary);
}

.profile-circle span {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Dropdown */
.profile-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 0.5rem;
    margin-top: 0.5rem !important;
}

.profile-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.profile-dropdown .dropdown-item:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section Shhh */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Hello  badge */
.hello-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

/* Left text */
.hero-left {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #e8f5e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Buttons */
.hero-btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.hero-btn.btn-warning {
    background: var(--secondary);
    color: #000;
    border-color: var(--secondary);
}

.hero-btn.btn-warning:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 51, 0.3);
}

.hero-btn.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.hero-btn.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

/* Right image container */
.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.circle-bg {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-building-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: none;
    transform: scale(1.15);
    transform-origin: center right;

    /* ⭐ Gradient Glow */
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.35))
            drop-shadow(0 0 60px rgba(255, 255, 0, 0.25));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Facility Carousel */
.facility-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 5px solid white;
}

.facility-carousel .carousel-item img {
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-carousel .carousel-item:hover img {
    transform: scale(1.05);
}

/* Better Caption Style */
.facility-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.6); /* Dark + transparent */
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    text-align: center;
}

/* Improve text readability */
.facility-carousel .carousel-caption h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary); /* Gold color */
}

.facility-carousel .carousel-caption p {
    font-size: 1.1rem;
    opacity: 0.95;
    color: #f1f1f1;
}
.facility-img {
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-facility-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}


.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid transparent;
}

.carousel-indicators button.active {
    background-color: var(--secondary);
    border-color: white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(15, 47, 15, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    backdrop-filter: blur(10px);
}

/* ============================================
   FOOTER
=============================================== */
.footer-section {
    background: var(--primary);
    color: white;
}

/* ============================================
   UTILITY + MOBILE
=============================================== */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 80px;
        text-align: center;
    }
    
    .hero-left {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-desc {
        max-width: 100%;
        font-size: 1.1rem;
    }
    
    .circle-bg {
        width: 350px;
        height: 350px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }
    
    .hero-building-img {
        width: 320px !important;
        height: 320px !important;
    }
    
    .navbar .nav-link {
        text-align: center;
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-building-img {
        width: 280px !important;
        height: 280px !important;
    }
    
    .facility-carousel .carousel-item img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-btn {
        padding: 12px 28px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-building-img {
        width: 250px !important;
        height: 250px !important;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
}