/* --- GLOBAL VARIABLES & RESET --- */
:root {
    --primary: #13403e;    /* Deep Teal */
    --secondary: #a3792d;  /* Gold */
    --secondary-hover: #8c6724; 
    --light-bg: #f4f6f6;
    --dark-text: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--primary); }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 30px;
}
.btn-primary:hover { background-color: #0e2f2d; border-color: #0e2f2d; }

.btn-gold {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 30px;
    transition: 0.3s;
}
.btn-gold:hover { background-color: var(--secondary-hover); color: white; }

/* --- SECTION TITLES --- */
.section-sub {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    color: var(--primary);
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--secondary); margin: 15px auto 0; border-radius: 2px;
}

/* =========================================
   1. PREMIUM HEADER DESIGN ("Just Looking Wow")
   ========================================= */

/* Top Bar - Dark Teal with Gold Text */
.top-bar {
    background-color: var(--primary);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1030;
}

/* Navbar - The "Floating" Effect */
.navbar-wow {
    background: #fff;
    box-shadow: 0 10px 30px rgba(19, 64, 62, 0.1); /* Soft Teal Shadow */
    padding: 0; /* Remove default padding for custom height */
    border-bottom: 4px solid var(--secondary); /* Gold Line at bottom */
    transition: all 0.4s ease;
}

.navbar-brand-wrapper {
    background: var(--primary);
    padding: 15px 25px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); /* Slanted Edge Effect */
    margin-right: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--primary) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 25px 15px !important; /* Taller click area */
    position: relative;
}

/* Animated Gold Underline on Hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-enquiry-wow {
    background: linear-gradient(45deg, var(--secondary), #d4a045);
    color: white !important;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(163, 121, 45, 0.4);
    transition: 0.4s;
    border: 2px solid white;
}
.btn-enquiry-wow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(163, 121, 45, 0.6);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative; padding: 100px 0;
    /* Updated Image URL directly in HTML inline style or here */
    background-size: cover; background-position: center; color: white;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(19, 64, 62, 0.85), rgba(19, 64, 62, 0.7));
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {color:#ffffff;}
/* --- NEW ABOUT SECTION --- */
.about-full-section { position: relative; background-color: #fff; overflow: hidden; }
.about-text h3 { color: var(--secondary); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.about-text h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 25px; line-height: 1.2; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 20px; text-align: justify; }
.about-img-wrapper { position: relative; padding-left: 30px; padding-bottom: 30px; }
.about-img-main { width: 90%; border-radius: 10px; box-shadow: 0 15px 40px rgba(19, 64, 62, 0.15); border: 5px solid #fff; }
.about-img-small { position: absolute; bottom: 0; left: 0; width: 50%; border-radius: 10px; border: 5px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 2; }
.about-shape { position: absolute; top: -20px; right: 20px; width: 150px; height: 150px; border: 5px solid var(--secondary); z-index: -1; opacity: 0.3; border-radius: 10px; }
.check-list li { margin-bottom: 10px; color: var(--primary); font-weight: 500; }
.check-list i { color: var(--secondary); margin-right: 10px; }
/* =========================================
   NOTICE SECTION ("The Wow Factor")
   ========================================= */

.notice-wow-section {
    position: relative;
    margin-top: -40px; /* Pulls it up to overlap the Hero slightly */
    z-index: 50;
    padding-bottom: 20px;
}

.notice-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-left: 5px solid var(--secondary); /* Gold Accent */
    position: relative;
    padding: 15px 0;
}

/* Left Side: The "Updates" Label */
.notice-label {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-left: 15px;
    border-radius: 5px;
    flex-shrink: 0; /* Prevents shrinking */
    box-shadow: 0 5px 15px rgba(19, 64, 62, 0.3);
}

/* Animated Bell Icon */
.notice-icon-box {
    display: inline-block;
    margin-right: 10px;
    animation: bell-ring 2s infinite ease-in-out;
}
.notice-icon-box i {
    color: var(--secondary); /* Gold Bell */
}

/* Keyframes for Bell Ringing */
@keyframes bell-ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* The Scrolling Area */
.notice-content-wrapper {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 0 20px;
}

.notice-text {
    display: inline-block;
    padding-left: 100%;
    animation: notice-scroll 20s linear infinite;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.notice-text span {
    color: var(--primary);
    font-weight: 700;
}

@keyframes notice-scroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notice-wow-section { margin-top: 0; padding: 20px 0; background: var(--light-bg); }
    .notice-box { flex-direction: column; text-align: center; padding: 20px; }
    .notice-label { margin-left: 0; margin-bottom: 15px; width: 100%; justify-content: center; }
    .notice-content-wrapper { width: 100%; }
}
/* --- SERVICE CARDS --- */
.service-box {
    background: var(--white); padding: 35px 25px; border-radius: 8px; border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: 0.4s ease; height: 100%; position: relative; overflow: hidden; z-index: 1;
}
.service-box::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 100%; background-color: var(--primary); transition: 0.4s; z-index: -1; }
.service-box:hover::before { width: 100%; }
.service-box:hover { transform: translateY(-7px); border-color: var(--primary); }
.service-box:hover h5, .service-box:hover p { color: white; }
.service-box:hover .service-icon { background: white; color: var(--secondary); }
.service-icon { width: 70px; height: 70px; background: rgba(163, 121, 45, 0.1); color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; transition: 0.4s; }

/* --- LEADERSHIP --- */
.quote-box { border-left: 5px solid var(--secondary); background: var(--light-bg); padding: 25px; font-style: italic; color: #555; border-radius: 0 8px 8px 0; }
.leadership-img { border-bottom: 5px solid var(--secondary); box-shadow: 0 10px 30px rgba(19, 64, 62, 0.15); width: 100%; object-fit: cover; }

/* --- STATS --- */
.stats-section { background-color: var(--primary); color: white; }

/* --- FACILITIES --- */
.facility-card { position: relative; overflow: hidden; border-radius: 10px; height: 260px; }
.facility-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.facility-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, var(--primary) 10%, transparent); padding: 20px; transform: translateY(50px); transition: 0.4s; opacity: 0.9; }
.facility-overlay h5 { color: white; margin: 0; }
.facility-card:hover img { transform: scale(1.1); }
.facility-card:hover .facility-overlay { transform: translateY(0); }

/* --- GALLERY --- */
.gallery-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; transition: 0.3s; cursor: pointer; }
.gallery-img:hover { transform: scale(1.03); filter: brightness(0.9); }

/* --- TESTIMONIALS --- */
.testimonial-card { background: var(--white); padding: 40px; border-radius: 10px; text-align: center; border: 1px solid #eee; border-top: 5px solid var(--secondary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.client-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); margin-top: -60px; background: white; }

/* --- FOOTER & WHATSAPP --- */
.footer-wow {
    background-color: var(--primary);
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 50px; /* Space for the wave */
}

/* The Wave Shape SVG at the top */
.footer-wave-svg {
    position: absolute;
    top: -100px; /* Pull it up */
    left: 0;
    width: 100%;
    height: 100px;
    line-height: 0;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    /* Subtle Pattern Overlay */
    background-image: radial-gradient(circle at 20% 50%, rgba(163, 121, 45, 0.05) 0%, transparent 50%);
}

.footer-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Gold dash under titles */
.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Links with Arrow Hover */
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
    display: flex;
    align-items: center;
}
.footer-links a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color: var(--secondary);
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px; /* Slide effect */
}

/* Contact Card in Footer */
.footer-contact-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-item {
    display: flex;
    margin-bottom: 15px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Social Buttons */
.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover {
    background: var(--secondary);
    transform: rotate(360deg);
}

.copyright-bar {
    background-color: #0b2230; /* Darker shade of Teal */
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}