/* ------------------------------
   Global Styles (General Reset & Body)
------------------------------ */
body {
    font-family: Arial, "Trebuchet MS", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #f5f5f5;
    background:
        radial-gradient(circle at 15% 0%, rgba(56, 189, 248, 0.35), transparent 55%),
        radial-gradient(circle at 85% 100%, rgba(236, 72, 153, 0.35), transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.2), transparent 60%),
        linear-gradient(135deg, #020617, #050014, #020617);
    background-size: 200% 200%;
    animation: neonShift 18s ease-in-out infinite alternate;
    min-height: 100vh;
}

@keyframes neonShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 100% 0%;
    }
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* General section spacing */
section {
    padding: 20px;
    margin: 20px 0;
}

/* ------------------------------
   Typography (Fonts and Text Styling)
------------------------------ */
h1 {
    font-family: 'Dancing Script', "Trebuchet MS", cursive;
    text-align: center;
    margin: 0;
    padding: 10px 20px;
    font-size: 3.1em;
    color: #ffffff;
    background: linear-gradient(90deg, #020617, #020617);
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.45),
        0 0 20px rgba(139, 92, 246, 0.9),
        0 0 40px rgba(56, 189, 248, 1);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

h2, h3 {
    font-family: 'Jaldi', "Trebuchet MS", sans-serif;
}

#hero h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.6em;
    margin-bottom: 10px;
    color: #f9fafb;
    text-shadow:
        0 0 12px rgba(56, 189, 248, 0.9),
        0 0 24px rgba(236, 72, 153, 0.9);
}

#hero h3 {
    font-family: 'Jaldi', "Trebuchet MS", sans-serif;
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #e5e7eb;
}

#hero p {
    font-family: 'Jaldi', "Trebuchet MS", sans-serif;
    font-size: 1.2em;
    margin: 10px 0;
    color: #d1d5db;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------
   Header Styles (Logo and Navigation)
------------------------------ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    background: rgba(3, 7, 18, 0.96);
    color: white;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(14px);
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.9),
        0 0 20px rgba(56, 189, 248, 0.4);
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

nav {
    margin-left: 90px;
    flex: 2;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 100%;
    gap: 6px;
}

nav ul li {
    margin: 0 3px;
}

nav ul li a {
    color: #e5e7eb;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.95em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease,
        text-shadow 0.25s ease;
    border: 1px solid transparent;
}

nav ul li a:hover {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.4), rgba(236, 72, 153, 0.5));
    color: #ffffff;
    box-shadow:
        0 0 14px rgba(56, 189, 248, 0.9),
        0 0 24px rgba(236, 72, 153, 0.9);
    border-color: rgba(148, 163, 184, 0.8);
    text-shadow:
        0 0 6px #e0f2fe,
        0 0 14px #38bdf8;
    transform: translateY(-1px);
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-left: auto;
}

.social-icons a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: radial-gradient(circle at top, #0f172a, #020617);
    box-shadow:
        0 0 8px rgba(56, 189, 248, 0.6),
        0 0 16px rgba(236, 72, 153, 0.7);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.social-icons a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 16px rgba(56, 189, 248, 1),
        0 0 28px rgba(236, 72, 153, 1);
    background: radial-gradient(circle at bottom, #0ea5e9, #4c1d95);
}

.social-icons img {
    width: 22px;
    height: 22px;
}

/* ------------------------------
   Hero Section (Main Call-to-Action)
------------------------------ */
#hero {
    padding: 40px 20px 60px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-content {
    padding: 30px 26px 34px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 55%),
        radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.28), transparent 55%),
        rgba(15, 23, 42, 0.9);
    color: #f9fafb;
    text-align: center;
    display: inline-block;
    max-width: 900px;
    border-radius: 24px;
    border: 1px solid rgba(129, 140, 248, 0.9);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.95),
        0 0 35px rgba(56, 189, 248, 0.7),
        0 0 55px rgba(236, 72, 153, 0.8);
    backdrop-filter: blur(18px);
}

#hero h2, #hero h3, #hero p {
    text-align: center;
}

/* ------------------------------
   Button Styles
------------------------------ */
.btn {
    background: radial-gradient(circle at top left, #f97316, #ea580c);
    color: #fff;
    padding: 12px 26px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition:
        background 0.25s ease,
        transform 0.18s ease,
        box-shadow 0.25s ease;
    display: inline-block;
    text-align: center;
    box-shadow:
        0 8px 20px rgba(248, 113, 113, 0.5),
        0 0 16px rgba(251, 146, 60, 0.9);
    margin-top: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.35), transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.btn:hover {
    background: radial-gradient(circle at top right, #fb923c, #f97316);
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 12px 26px rgba(248, 113, 113, 0.65),
        0 0 24px rgba(251, 146, 60, 1);
}

.btn:hover::after {
    opacity: 1;
}

.btn:focus {
    outline: 3px solid #22c55e;
    outline-offset: 4px;
}

/* Generic button element */
button {
    background: radial-gradient(circle at top left, #f97316, #ea580c);
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.18s ease,
        box-shadow 0.25s ease;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

button:hover {
    background: radial-gradient(circle at top right, #fb923c, #f97316);
    transform: translateY(-1px) scale(1.03);
    box-shadow:
        0 10px 24px rgba(248, 113, 113, 0.6),
        0 0 20px rgba(251, 146, 60, 1);
}

/* ------------------------------
   Section Styles (General Styling for All Sections)
------------------------------ */
.service {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 60%),
        rgba(15, 23, 42, 0.9);
    margin: 15px 0;
    padding: 18px 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.9),
        0 0 22px rgba(56, 189, 248, 0.5);
}

footer {
    text-align: center;
    padding: 14px 0 16px;
    background-color: #020617;
    color: #9ca3af;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.95em;
}

/* ------------------------------
   Contact Form Styles
------------------------------ */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 10px auto 30px;
    background: rgba(15, 23, 42, 0.9);
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.85),
        0 0 24px rgba(56, 189, 248, 0.5);
}

label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #e5e7eb;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    font-family: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.9),
        0 0 18px rgba(56, 189, 248, 0.7);
    background: rgba(15, 23, 42, 0.95);
}

/* ------------------------------
   Image Gallery (Setup & About Images)
------------------------------ */
.setup-images, .about-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 18px;
}

.setup-images img, .about-images img {
    max-width: 30%;
    height: auto;
    margin: 0;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.9),
        0 0 22px rgba(56, 189, 248, 0.5);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    object-fit: cover;
}

.setup-images img:hover, .about-images img:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 1),
        0 0 30px rgba(56, 189, 248, 0.9);
    filter: saturate(1.2);
}

/* Gallery container */
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Individual gallery item */
.gallery-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 18%;
    box-sizing: border-box;
}

/* Image styling for gallery items */
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.9),
        0 0 22px rgba(56, 189, 248, 0.6);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.gallery-item img:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, 1),
        0 0 34px rgba(236, 72, 153, 1);
    filter: saturate(1.25);
}

.gallery-break {
    width: 100%;
    height: 0;
}

.setup-images img {
    max-width: 100%;
    height: auto;
}

/* ------------------------------
   Slideshow Styles
------------------------------ */
/* ------------------------------
   Slideshow Styles
------------------------------ */
/* ------------------------------
   Slideshow Styles
------------------------------ */
/* ------------------------------
   Slideshow Styles
------------------------------ */
/* ------------------------------
   Slideshow Styles (Fixed-Size Container)
------------------------------ */
#slideshow {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 30px auto 10px;
    padding: 12px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 55%),
        radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.28), transparent 55%),
        rgba(15, 23, 42, 0.96);
    box-shadow:
        0 25px 55px rgba(15, 23, 42, 0.95),
        0 0 30px rgba(56, 189, 248, 0.7),
        0 0 40px rgba(236, 72, 153, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.9);
}

.slideshow-container {
    position: relative;
}

/* FIXED HEIGHT HERE */
.slide {
    display: none;
    width: 100%;
    height: 480px;        /* <<< DESKTOP FIXED HEIGHT */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;     /* hides excess if needed */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* keeps image fully visible */
    border-radius: 18px;
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.95),
        0 0 28px rgba(56, 189, 248, 0.6);
    background-color: #020617;
}

.dots {
    text-align: center;
    padding: 12px 0 4px;
}

.dot {
    height: 14px;
    width: 14px;
    margin: 0 4px;
    background: radial-gradient(circle at 30% 0%, #4b5563, #020617);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    box-shadow:
        0 0 8px rgba(148, 163, 184, 0.8),
        0 0 16px rgba(15, 23, 42, 0.9);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.dot:hover {
    transform: scale(1.1);
    box-shadow:
        0 0 12px rgba(56, 189, 248, 0.9),
        0 0 20px rgba(236, 72, 153, 0.9);
}

.dot.active {
    background: radial-gradient(circle at 30% 0%, #22d3ee, #4c1d95);
    box-shadow:
        0 0 14px rgba(56, 189, 248, 1),
        0 0 26px rgba(236, 72, 153, 1);
}

/* ------------------------------
   Section-Specific Styling (Setup & About)
------------------------------ */
#setup h2, #about h2, #contact h2, #gallery h2 {
    text-align: center;
    font-family: 'Jaldi', "Trebuchet MS", sans-serif;
    font-size: 2.1em;
    margin-bottom: 6px;
    color: #f9fafb;
    text-shadow:
        0 0 16px rgba(56, 189, 248, 0.9),
        0 0 24px rgba(236, 72, 153, 0.9);
}

#contact p, #setup p, #about p, #gallery p {
    margin-top: 10px;
    text-align: center;
    font-family: 'Jaldi', "Trebuchet MS", sans-serif;
    font-size: 1.1em;
    color: #e5e7eb;
}

#gallery h3 {
    margin-top: 14px;
    text-align: center;
    font-family: 'Jaldi', "Trebuchet MS", sans-serif;
    font-size: 1.7em;
    color: #f97316;
    text-shadow:
        0 0 10px rgba(248, 113, 113, 0.85),
        0 0 18px rgba(251, 146, 60, 0.95);
}

#setup li {
    margin-top: 8px;
    text-align: center;
    font-family: 'Jaldi', "Trebuchet MS", sans-serif;
    color: #e5e7eb;
}

.centered-list {
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
}

/* ------------------------------
   Responsive Styles (Media Queries)
------------------------------ */
@media (max-width: 960px) {
    nav {
        margin-left: 30px;
    }

    #slideshow {
        max-width: 90%;
    }

    .hero-content {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 10px;
        text-align: center;
        gap: 8px;
    }

    nav {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .social-icons {
        margin-top: 6px;
    }
	
    .hero-content {
        padding: 24px 18px 28px;
    }

	#slideshow {
        max-width: 100%;
        width: 100%;
        padding: 8px;
    }

    .slide {
        height: 360px;   /* <<< FIXED MOBILE HEIGHT */
    }

    .slide img {
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    /* Small mobile view */
    header {
        flex-direction: column;
        padding: 10px 5px;
        text-align: center;
    }

    nav {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
    }

    nav ul {
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
        flex-direction: row;
        gap: 5px;
        flex-wrap: wrap;
    }

    nav ul li {
        list-style: none;
    }

    nav ul li a {
        color: #fff;
        padding: 6px 10px;
        font-size: 0.8em;
        border-radius: 999px;
        transition: background-color 0.3s, color 0.3s;
        white-space: nowrap;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        width: 100%;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        margin: 0 6px;
    }

    .btn, button {
        width: 90%;
        padding: 9px 14px;
        font-size: 0.95em;
    }

    .setup-images img {
        max-width: 100% !important;
        height: auto !important;
    }

    h1 {
        font-size: 2.4em;
    }

	#slideshow {
        max-width: 100%;
        width: 100%;
        padding: 8px;
    }

    .slide {
        height: 360px;   /* <<< FIXED MOBILE HEIGHT */
    }

    .slide img {
        object-fit: contain;
    }
}
