
:root {
    --primary: #1e3d59;
    --accent: #d97706;
    --text: #1e293b;
    --muted: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --dark-slate: #0f172a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.logo img { height: 55px; }

.menu1 ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.menu1 a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    transition: var(--transition);
}

.menu1 a:hover, .menu1 a.active { color: var(--primary); }


.second {
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.second video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
    z-index: -1;
}

.second h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 20px;
    padding: 0 10%;
}


.icons {
    display: flex;
    gap: 20px;
}

.icons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    transition: var(--transition);
}

.icons img:hover { transform: scale(1.1); }


.tagline {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

h2 {
    text-align: center;
    margin: 50px 0 30px;
    color: var(--primary);
}


.third, .facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 8%;
}

.one img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* ===== THE NEW SMALLER GALLERY ===== */
.gallery {
    background: var(--dark-slate);
    padding: 60px 5%;
    text-align: center;
    color: white;
}

.gallery h1 { margin-bottom: 30px; letter-spacing: 2px; }

.slideshow {
    max-width: 800px; /* Smaller width for focus */
    height: 450px;    /* Fixed height - won't blow up on big screens */
    margin: 0 auto;
    position: relative;
    background: #000;
    border-radius: 15px;
    border: 5px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Shows full image without cutting */
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active { opacity: 1; }

/* Slide Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    border-radius: 5px;
}

.prev { left: 10px; }
.next { right: 10px; }
.prev:hover, .next:hover { background: var(--accent); }

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: white;
    padding: 50px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.media img {
    width: 35px;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 5px;
}


@media (max-width: 768px) {
    .header {
        flex-direction: column; 
        gap: 15px;
        padding: 15px 5%;
    }

    .menu1 ul {
        gap: 10px;
        flex-wrap: wrap; 
        justify-content: center;
    }

    .menu1 a {
        font-size: 0.85rem;
        background: #f1f5f9; 
        border-radius: 6px;
        padding: 6px 12px;
    }

    .menu1 a.active {
        background: var(--primary);
        color: white;
    }
}

.our {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 60px 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.our div {
    flex: 1; 
}

.our img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our span {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.our p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}


.sto, .fea, .facts-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


@media (max-width: 768px) {
    .our {
        flex-direction: column; 
        text-align: center;
        gap: 30px;
        padding: 40px 6%;
    }

    .our img {
        max-width: 400px; 
        margin: 0 auto;
    }

    .our p {
        font-size: 1rem;
    }
}