/* Reset & Font */
body, html { margin:0; padding:0; font-family:'Rubik', sans-serif; }

@import "~@fortawesome/fontawesome-free/css/all.min.css";

/* Top Bar */
.top-bar { 
    background:#FFD700; 
    color:#000; 
    font-size:0.9rem; 
    padding:5px 0; 
    text-align:center; 
}
.top-bar .container { 
    max-width:1200px; 
    margin:auto; 
    display:flex; 
    justify-content:center; 
    gap:20px; 
}

/* Header */
.main-header { 
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95); /* slightly transparent */
    z-index: 9999;
    box-shadow: 0 8px 15px rgba(0,0,0,0.15); /* subtle shadow */
    transition: all 0.3s ease;
}
.header-inner { 
    max-width:1200px; 
    margin:auto; 
    display:flex; 
    justify-content:space-between; 
    align-items:center; 
    padding:10px 15px; 
}
.logo img { 
    height: 100px; /* adjust if needed */
    width: auto;  /* keep aspect ratio */
    object-fit: contain; /* ensures it doesn’t stretch */
}

/* Logo + Badge */
.logo-badge-wrapper { display:flex; align-items:center; gap:10px; }
.anniversary-badge { 
    background:#B99240; 
    color:#fff; 
    font-size:0.8rem; 
    font-weight:700; 
    padding:5px 10px; 
    border-radius:12px; 
    cursor:pointer; 
    transition: transform 0.2s; 
}
.anniversary-badge:hover { transform: scale(1.1); }

/* Nav Links Desktop */
.nav { display:flex; align-items:center; position:relative; text-transform: uppercase;}
.nav-links { display:flex; gap:25px; list-style:none; margin:0; padding:0; }
.nav-links a { text-decoration:none; color:#0A1941; font-weight:500; }
.nav-links a:hover { color:#B99240; }
.apply-btn { background:#B99240; color:#fff; padding:7px 15px; border-radius:5px; }

.apply-btn:hover { background:#0A1941; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { height:3px; width:25px; background:#0A1941; border-radius:2px; }

/* Close Button */
.close-menu { display:none; font-size:2.5rem; cursor:pointer; position:absolute; top:20px; right:25px; color:#0A1941; }

/* Mobile Menu */
@media(max-width:992px){
    .hamburger { display:flex; }
    .nav { 
        position:fixed; top:0; right:-100%; width:100%; height:100vh; 
        flex-direction:column; align-items:center; justify-content:center; gap:40px; 
        z-index:9999; transition:right 0.3s ease;

        /* Mobile background image */
        background: url('../images/more-matured-image-fcc-school-background-much-better.png') center center/cover no-repeat;
    }
    .nav.active { right:0; }
    .nav-links { flex-direction:column; gap:40px; font-size:1.2rem; }
    .close-menu { display:block; }

    /* Overlay to make text readable on mobile background */
    .nav::before {
        content:"";
        position:absolute;
        top:0; left:0;
        width:100%; height:100%;
        background: rgba(174,172,172,0.4);
        z-index:-1;
    }
}

/* Hero Section */
.hero { 
    position:relative; width:100%; height:90vh; 
    background:url('../images/HOMEPAGE.png') center/cover no-repeat; 
    display:flex; align-items:center; justify-content:center; color:#fff; 
}
.hero-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.4); }
.hero-content { position:relative; text-align:center; max-width:800px; z-index:2; padding:0 15px; }
.hero-content h1 { font-size:3rem; margin-bottom:20px; }
.hero-content p { font-size:1.2rem; margin-bottom:30px; }
.btn-primary { background:#B99240; color:#fff; padding:12px 30px; border-radius:6px; text-decoration:none; }
.btn-primary:hover { background:#8c751d; }

/* Footer */
footer { background:#0A1941; color:#fff; padding:40px 15px; text-align:center; }
footer img { height:50px; margin-bottom:20px; }
footer a { color:#fff; margin:0 10px; text-decoration:none; }
footer a:hover { color:#B99240; }
footer .footer-copy { margin-top:20px; font-size:0.9rem; }

/* Anniversary Modal */
#anniversary-modal { 
    display:none; position:fixed; top:0; left:0; width:100%; height:100%; 
    background: rgba(0,0,0,0.6); justify-content:center; align-items:center; z-index:10000; 
}
#anniversary-modal .modal-content { 
    background:#fff; padding:30px; border-radius:8px; max-width:400px; text-align:center; position: relative; 
}
#anniversary-modal .close-modal { position:absolute; top:10px; right:15px; font-size:1.5rem; cursor:pointer; }

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slider-container { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background-size: cover;
    background-position: center;
    opacity:0;
    transition: opacity 1s ease-in-out;
    display:flex; align-items:center; justify-content:center;
}
.slide.active { opacity:1; z-index:1; }

.slide-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.4); z-index:1;
}

/* Slide Text Layout */
.slide-content {
    position: relative;
    color:#fff;
    max-width:600px;
    padding: 20px;
    z-index:2;
    text-align: left; /* left-aligned like screenshot */
    animation: slideIn 1s ease forwards;
}
.slide-content .sub-title { font-size:1.2rem; color:#7CFC00; margin-bottom:10px; }
.slide-content .main-title { font-size:2.5rem; font-weight:bold; margin-bottom:15px; }
.slide-content .slide-text { font-size:1rem; line-height:1.5; margin-bottom:20px; }

/* Slide Animations */
@keyframes slideIn { from { opacity:0; transform: translateX(-50px); } to { opacity:1; transform: translateX(0); } }
@keyframes slideOut { from { opacity:1; transform: translateX(0); } to { opacity:0; transform: translateX(50px); } }

/* Navigation Arrows */
.slider-nav { position:absolute; top:50%; width:100%; display:flex; justify-content:space-between; transform: translateY(-50%); padding: 0 20px; z-index:3; }
.slider-nav span { font-size:2rem; cursor:pointer; color:#fff; user-select:none; background: rgba(0,0,0,0.3); padding:10px; border-radius:50%; }

/* Responsive: Landscape/Portrait */
@media(max-width:992px){
    .slide-content { max-width:90%; text-align:center; }
    .slide-content .main-title { font-size:2rem; }
    .slide-content .sub-title { font-size:1rem; }
    .slide-content .slide-text { font-size:0.9rem; }
}
@media(max-width:576px){
    .slide-content .main-title { font-size:1.5rem; }
    .slide-content .sub-title { font-size:0.9rem; }
    .slide-content .slide-text { font-size:0.8rem; }
}

/* Footer Base */
.footer {
    background:#0A1941;
    color:#fff;
    padding:40px 15px 20px;
    font-size: 0.95rem;
}

.footer-container {
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:30px;
}

/* About + Social */
.footer-about {
    flex:1 1 300px;
}
.footer-about img {
    height:100px;
    margin-bottom:15px;
}
.footer-about p {
    line-height:1.6;
    margin-bottom:15px;
}
.footer-social a {
    color:#fff;
    margin-right:10px;
    font-size:1.2rem;
    transition:color 0.3s;
}
.footer-social a:hover { color:#B99240; }

/* Extra Links */
.footer-links { flex:1 1 200px; }
.footer-links h4 {
    color:#FFA500;
    margin-bottom:10px;
    font-size:1.1rem;
}
.footer-links ul { list-style:none; padding:0; margin:0; }
.footer-links ul li { margin-bottom:8px; }
.footer-links ul li a {
    color:#fff;
    text-decoration:none;
    transition:color 0.3s;
}
.footer-links ul li a:hover { color:#B99240; }

/* Contact Info */
.footer-contact { flex:1 1 250px; }
.footer-contact h4 { color:#FFA500; margin-bottom:10px; font-size:1.1rem; }
.footer-contact p { margin:5px 0; line-height:1.5; }
.btn-footer {
    display:inline-block;
    margin-top:10px;
    padding:10px 20px;
    background:#FFA500;
    color:#fff;
    border-radius:5px;
    text-decoration:none;
    transition:all 0.3s;
}
.btn-footer:hover { background:#e69900; }

/* Affiliations */
.footer-affiliations {
    flex:1 1 150px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:20px;
}
.footer-affiliations img { max-height:80px; }

/* Footer Bottom */
.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:20px;
    padding-top:15px;
    text-align:center;
    font-size:0.85rem;
}

/* Responsive */
@media(max-width:992px){
    .footer-container { flex-direction:column; align-items:center; text-align:center; }
    .footer-about, .footer-links, .footer-contact, .footer-affiliations { flex:1 1 100%; margin-bottom:20px; }
    .footer-links ul li { margin-bottom:5px; }
    .footer-contact p { margin:3px 0; }
}

/* Footer Base */
.footer {
    background:#030712;
    color:#fff;
    padding:50px 15px 20px;
    font-size: 0.95rem;
}

.footer-container {
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap: wrap;
}

/* Column Base */
.footer-column { flex:1 1 300px; }

/* 1st Column: About + Social */
.footer-about img { height:60px; margin-bottom:15px; display:block; }
.footer-about p { line-height:1.6; margin-bottom:15px; text-align:left; }
.footer-social { display:flex; gap:10px; }
.footer-social a { color:#fff; font-size:1.2rem; transition:color 0.3s; }
.footer-social a:hover { color:#B99240; }

/* 2nd Column: Extra Links */
.footer-links h4 { color:#FFA500; margin-bottom:10px; font-size:1.1rem; text-align:left; }
.footer-links ul { list-style:none; padding:0; margin:0; }
.footer-links ul li { margin-bottom:8px; text-align:left; }
.footer-links ul li a { color:#fff; text-decoration:none; transition:color 0.3s; }
.footer-links ul li a:hover { color:#B99240; }

/* 3rd Column: Contact + Affiliations */
.footer-contact h4 { color:#FFA500; margin-bottom:10px; font-size:1.1rem; text-align:left; }
.footer-contact p { margin:5px 0; line-height:1.5; text-align:left; }
.btn-footer {
    display:inline-block;
    margin-top:10px;
    padding:10px 20px;
    background:#FFA500;
    color:#fff;
    border-radius:5px;
    text-decoration:none;
    transition:all 0.3s;
    text-align:left;
    margin-left: -210px;
}
.btn-footer:hover { background:#e69900; }

/* Glow effect */
.glow-button {
    box-shadow: 0 0 8px #FFA500, 0 0 20px #FFA50066;
}

/* Divider */
.footer-contact hr {
    margin:15px 0;
    border:0.5px solid rgba(255,255,255,0.2);
}

/* Affiliations */
.affiliation-logo { max-height:80px; display:block; margin:10px 0; }
.affiliation-text { font-size:0.85rem; margin-top:5px; }

/* Footer Bottom */
.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:20px;
    padding-top:15px;
    text-align:center;
    font-size:0.85rem;
}

/* Responsive */
@media(max-width:992px){
    .footer-container { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; /* Center all text */
    }
    .footer-column { 
        flex:1 1 100%; 
        margin-bottom:25px; 
        text-align: center; /* Ensure each column is centered */
    }
    .footer-links ul li, 
    .footer-contact p, 
    .btn-footer { 
        text-align: center; 
        margin-left: auto; 
        margin-right: auto; 
    }

    
    /* Extra Links column */
    .footer-links h4,
    .footer-links ul li,
    .footer-links ul li a {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

        /* Contact Info column */
    .footer-contact h4,
    .footer-contact p,
    .btn-footer {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social { justify-content: center; } /* Center social icons */
    .affiliation-logo { margin-left:auto; margin-right:auto; } /* Center affiliation logo */
}

.footer-social a {
    color: #fff; /* base color */
    font-size: 1.5rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #B99240; /* accent color on hover */
    transform: scale(1.2);
}

/* Footer Social SVG Styling */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.footer-social a svg {
    width: 30px;   /* icon size */
    height: 30px;
    fill: #fff;    /* default color */
    transition: all 0.3s ease;
    border-radius: 50px;
}

.footer-social a:hover svg {
    fill: #B99240; /* hover accent color */
    transform: scale(1.2); /* slight zoom on hover */
}

/* Top Bar Icons */
.topbar-icon {
    display: inline-flex;
    align-items: center;
    gap: 5px; /* space between SVG and text */
    color: #FFD700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.topbar-icon svg {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    fill: #FFD700;
}

/* Hover effect */
.topbar-icon:hover {
    color: #B99240;
}
.topbar-icon:hover svg {
    fill: #B99240;
}

/* Mobile adjustments */
@media(max-width:992px){
    .topbar-icon {
        font-size: 0.6rem; /* smaller text */
    }
    .topbar-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Scrollbar Track */
::-webkit-scrollbar {
    width: 10px;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    background-color: #B99240;
    border-radius: 10px;
    border: 2px solid #fff;  /* optional: adds padding around thumb */
}

/* Scrollbar Background */
::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #090d2c #B99240;
}

.pioneers-section {
    padding: 60px 15px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0A1941;
    position: relative;
}

.pioneer-card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pioneer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pioneer-card.reverse { flex-direction: row-reverse; }

.pioneer-image img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 0 0 0 12px;
}

.pioneer-content {
    padding: 30px;
    flex:1;
    text-align: left;
}

.pioneer-content h3 { font-size: 1.8rem; margin-bottom: 5px; color: #B99240; }
.pioneer-content h4 { font-size: 1rem; margin-bottom: 15px; color: #0A1941; font-weight: 500; }
.pioneer-content p { font-size: 1rem; line-height: 1.6; margin-bottom: 20px; color: #333; }
.read-more {
    text-decoration: none;
    color: #fff;
    background: #B99240;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.3s;
}
.read-more:hover { background: #8c751d; }

/* Responsive */
@media(max-width:992px){
    .pioneer-card, .pioneer-card.reverse {
        flex-direction: column;
        text-align: center;
    }
    .pioneer-image img { width: 100%; border-radius: 12px 12px 0 0; }
    .pioneer-content { padding: 20px; }
}

@media(max-width:992px){
    .pioneer-card, .pioneer-card.reverse {
        flex-direction: column-reverse; /* text comes first, image second */
        text-align: center;
    }
    .pioneer-image img {
        width: 30%;
        border-radius: 50px;
    }
    .pioneer-content {
        padding: 20px;
    }
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A1941 0%, #B99240 100%);
    color: #fff;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%); /* subtle slant */
}

.cta-block {
    flex: 1 1 30%;
    background: rgba(255,255,255,0.05); /* semi-transparent overlay for readability */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-block img {
    width: 20%;
    margin-bottom: 15px;
}

.cta-block h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-block p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-btn {
    text-decoration: none;
    background: #fff;
    color: #0A1941;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #B99240;
    color: #fff;
}

/* Responsive */
@media(max-width:992px){
    .cta-section {
        flex-direction: column;
        padding: 60px 20px;
        clip-path: none;
    }
    .cta-block {
        flex: 1 1 100%;
    }
}

/* Section Base */
.learning-classes {
    padding: 80px 15px;
    background: #f9f9f9;
    text-align: center;
}

.learning-classes .section-title {
    font-size: 2.5rem;
    color: #0A1941;
    margin-bottom: 50px;
}

/* Grid Layout */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card */
.class-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.class-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.class-card h3 {
    font-size: 1.5rem;
    color: #B99240;
    margin: 15px 0 10px;
}

.class-card p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 15px 20px;
    color: #333;
}

/* Highlight Card */
.class-card.highlight {
    border: 2px solid #B99240;
}

/* Responsive */
@media(max-width:992px){
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width:576px){
    .classes-grid {
        grid-template-columns: 1fr;
    }
}

/* Admissions Section */
.admissions-section {
    position: relative;
    padding: 100px 20px;
    background: #f0f8ff;
    overflow: hidden;
    text-align: center;
    border-radius: 12px;
    
}

.admissions-content h2 {
    font-size: 2rem;
    color: #0A1941;
    margin-bottom: 20px;
}

.admissions-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #333;
}

.admissions-content .cta-btn {
    display: inline-block;
    background: #B99240;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admissions-content .cta-btn:hover {
    background: #8c751d;
}

/* CSS Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(50px);
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #B99240;
    top: -50px;
    left: -50px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #0A1941;
    bottom: -100px;
    right: -100px;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: #FFA500;
    top: 50%;
    left: 70%;
}

/* Blob animation */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(15px); }
}

/* Responsive */
@media(max-width:992px){
    .admissions-content h2 { font-size: 1.7rem; }
    .admissions-content p { font-size: 0.95rem; }
}
@media(max-width:576px){
    .admissions-content h2 { font-size: 1.5rem; }
    .admissions-content p { font-size: 0.9rem; }
}

/* Scroll Fade-In Animations */
.admissions-content, .blob {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.admissions-content.visible, .blob.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Existing blob animations remain */
.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(100px);
    z-index: 0;
}

/* Float animation (already implemented) */
.blob-1 { width: 50px; height: 300px; background: #897035; top: -50px; left: -50px; animation: float 8s ease-in-out infinite; }
.blob-2 { width: 200px; height: 400px; background: #3f5ba8; bottom: -100px; right: -100px; animation: float 10s ease-in-out infinite; }
.blob-3 { width: 100px; height: 200px; background: #996f22; top: 50%; left: 70%; animation: float 12s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(15px); }
}

/* Facilities Section */
.facilities-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    text-align: center;
}

.facilities-section .section-title {
    font-size: 2.5rem;
    color: #0A1941;
    margin-bottom: 50px;
}

/* Grid Layout */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Facility Card */
.facility-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.facility-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.facility-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
    color: #B99240;
}

.facility-card p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 15px 20px;
    color: #333;
}

/* Responsive */
@media(max-width:992px){
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width:576px){
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Blob Backgrounds for Facilities */
.facilities-section {
    position: relative;
    padding: 80px 20px;
    background: #f9f9f9;
    overflow: hidden;
    border-radius: 12px;
}

.facilities-section .blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
    z-index: 0;
    animation: float 12s ease-in-out infinite;
}

.facilities-section .blob-1 {
    width: 300px;
    height: 300px;
    background: #c8b58b;
    top: -50px;
    left: -50px;
}

.facilities-section .blob-2 {
    width: 400px;
    height: 400px;
    background: #0A1941;
    bottom: -100px;
    right: -100px;
}

.facilities-section .blob-3 {
    width: 200px;
    height: 200px;
    background: #dbceb5;
    top: 50%;
    left: 70%;
}

/* Float animation */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(15px); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.scroll-top {
    display: none; /* hidden by default */
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 9999;
    background-color: #B99240;
    color: #fff;
    border: none;
    outline: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s, opacity 0.3s;
    opacity: 0;
}

.scroll-top.show {
    display: block;
    opacity: 1;
}

.scroll-top:hover {
    background-color: #8c751d;
    transform: scale(1.1);
}

.scroll-top {
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.3s ease;
}

.scroll-top.show {
    opacity: 1;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 9999;
    background-color: #B99240;
    color: #fff;
    border: none;
    outline: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    opacity: 0;           /* hidden initially */
    transition: opacity 0.4s ease, transform 0.3s ease;
}

.scroll-top.show {
    opacity: 1;
}

.scroll-top:hover {
    background-color: #8c751d;
    transform: scale(1.1);
}