/* ===== GENERAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
    background-color: #0d1117;
    color: #00ccff;
    padding: 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Smaller and responsive logo */
.logo {
    max-width: 250px;   /* smaller width */
    width: 100%;        /* responsive */
    height: auto;       /* maintain aspect ratio */
}

.tagline {
    margin-top: 10px;
    font-style: italic;
    font-size: 1.2rem;
}

/* Contact email styling */
.header .contact {
    margin-top: 10px;
    font-size: 0.9rem;
}

.header .contact a {
    color: #00ccff;
    text-decoration: none;
}

.header .contact a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 180px;  /* smaller on tablets */
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 140px;  /* smaller on mobile */
    }
}

/* ===== NAVIGATION ===== */
.nav {
    background-color: #111;
}

.nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
}

.nav li {
    margin: 0 10px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    transition: background 0.3s, color 0.3s;
}

.nav a:hover,
.nav a.active {
    background-color: #00ccff;
    color: #111;
    border-radius: 5px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content h1,
.main-content h2,
.main-content h3 {
    margin-bottom: 15px;
    color: #0d1117;
}

.main-content p,
.main-content ul,
.main-content ol {
    margin-bottom: 20px;
}

.main-content ul,
.main-content ol {
    padding-left: 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background-color: #00ccff;
    color: #111;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #0099cc;
    color: #fff;
}

/* ===== IMAGE GALLERIES ===== */
.image-gallery,
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    
}

.image-gallery img,
.video-gallery iframe {
    max-width: 20%;
    height: auto;
    border-radius: 10px;
}

  

/* ===== FOOTER ===== */
.footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 25px 10px;
    margin-top: 40px;
}

.footer a {
    color: #00ccff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .nav li {
        margin: 5px 0;
    }

    .logo {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 10px;
    }
}
.image-gallery,
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
/* ===== CALL TO ACTION ===== */
.call-to-action {
    background-color: #f7f3f3;
    color: #00ccff;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.call-to-action h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.call-to-action .btn {
    margin-bottom: 20px;
}

.call-to-action .image-gallery {
    justify-content: center;
}

.call-to-action .gallery-image {
    max-width: 200px;  /* adjust the size */
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}


