body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #f4f6f8;
    color: #333;
}

/* SLIM HERO STYLING */
.hero-slim {
    padding: 100px 20px 40px 20px; /* Top padding accounts for fixed navbar */
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.hero-slim h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 15px 0 10px 0;
    font-weight: 700;
}

.hero-slim p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-mini {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #2575fc;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background: #f8f9fa;
}

/* Ensure Gallery starts close to the hero */
.gallery-section {
    padding-top: 30px !important; 
}

        /* GALLERY SECTION */
        .gallery-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: auto;
        }
        #my_nanogallery2 {
            margin-top: 20px;
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 40px 20px;
            background: #343a40;
            color: white;
            font-size: 0.9em;
        }
        footer a {
            color: #ffc107;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        /* PAGINATION STYLING */
        .custom-pagination {
            margin: 40px 0;
            display: flex;
            justify-content: center;
        }

        .custom-pagination nav {
            display: flex;
            gap: 5px;
            align-items: center;
        }

        /* Hide the "Showing X to Y of Z results" text if it's too cluttered */
        .custom-pagination .small.text-muted, 
        .custom-pagination .hidden.flex-1 {
            display: none !important;
        }

        /* Style the individual links/buttons */
        .custom-pagination a, 
        .custom-pagination span {
            display: inline-block;
            padding: 10px 18px;
            background: #fff;
            color: #2575fc;
            border: 1px solid #ddd;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .custom-pagination a:hover {
            background: #2575fc;
            color: #fff;
            border-color: #2575fc;
        }

        /* Style the "Active" page number */
        .custom-pagination .active span,
        .custom-pagination [aria-current="page"] span {
            background: #6a11cb;
            color: white !important;
            border-color: #6a11cb;
        }

        /* Style disabled Prev/Next buttons */
        .custom-pagination .disabled span {
            color: #ccc;
            background: #f9f9f9;
            cursor: not-allowed;
        }

        /* Fix for giant SVG icons (common in Laravel pagination) */
        .custom-pagination svg {
            width: 20px;
            height: 20px;
            vertical-align: middle;
        }

        /* NAVIGATION STYLING */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px); /* Modern blur effect */
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo span { color: #2575fc; }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 30px;
            margin: 0;
        }

        .nav-link {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: 0.3s;
        }

        .nav-link:hover { color: #2575fc; }

        .btn-contact {
            background: #2575fc;
            color: #fff !important;
            padding: 8px 20px;
            border-radius: 20px;
        }

        /* HAMBURGER MENU */
        .hamburger {
            display: none;
            cursor: pointer;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease-in-out;
            background-color: #333;
        }

        /* RESPONSIVE QUERIES */
        @media (max-width: 768px) {
            .hamburger { display: block; }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background-color: #fff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0,0,0,0.05);
            }

            .nav-menu.active { left: 0; }

            .nav-menu li { margin: 15px 0; }

            .hamburger.active .bar:nth-child(2) { opacity: 0; }
            .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        }