* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat';
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

/* Navigation Bar */
nav {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #66939f 0%, #5c8e9b 40%, #4686a3 60%, #95c3e8 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Sections */
body>section {
    margin: auto;
    padding: 6rem 2rem 4rem;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.fh{
    min-height: 100vh;
}

.section-content {
    margin: auto;
    max-width: 1300px;
    width: 100%;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

p {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Home Section */
#home {
    background: linear-gradient(178deg, #ffffffde 0, #66abacbd 30%, #dac7c74a 40%, #c6baba26 100%), url(static/media/hero_bg2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
}

#home h1, #home p {
    color: #1b3159;
}

.hero-content {
    text-align: center;
    padding-top: 0vh;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.download-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #a7ffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Project Section */
#project {
    background: #effffc;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Team Section */
#team {
    background: #c3e6ff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    display: block;
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.team-member:hover {
    background: #edf2f7;
    transform: scale(1.05);
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    overflow: hidden;
}

  .profile-image-thumb {
    width: 100%;
}

.team-member h3 {
    color: #111;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #222;
    font-size: 0.9rem;
}



/* Gallery */
.gallery {
    margin: 2em 0;
    background: #ccc;
    padding:1em 0;
    margin-bottom: 1em;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and old Edge */
    white-space: nowrap;
    /* text-align: center; */
}

.gallery::-webkit-scrollbar {
    display: none;
}

.gallery-drawer {
    display: inline-flex;
    gap: 1em;
    align-items: center;
    justify-content: center;

}

.drawer-item {
    /* max-width: 280px; */
    max-height: 280px;
}

/* Resources Section */
#resources {
    background: #edf2f7;
}

.resource-list {
    /* display: flex;
    flex-wrap: wrap; */
    /* flex-direction: column; */
    gap: 1.5rem;
    margin-top: 3rem;
}

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 0.25em;
    width: 100%;
    /* border-left: 4px solid #667eea; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



.resource-item h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #788c92 0%, #55a486 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a.active::after {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    body>section {
        padding: 4rem 1rem 3rem;
    }

    .project-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* Display */
.block {
    display: block;
}

.perfect-center, .flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-center-h {
    display: flex;
    justify-content: center;
}


/* Dynamic Box */

section#strip {
    background-color: #468052; /* #1e1c67; */
    color: white;
    padding: 0;
}

.hov-container {
    cursor: pointer;
    /* padding: 2em; */
    min-height: 260px;
    border: 1px solid #a0a0a017;

}

.pop-text-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.hov-container:hover .pop-text-wrapper {
  grid-template-rows: 1fr;
}

.pop-text {
    font-size: 0.8em;
    overflow: hidden;
    border: 1px solid transparent;
    margin-top: 1em;
    padding: 0;
    transition: padding 0.4s ease;;
}

.hov-container:hover .pop-text {
    border: 1px solid #ccc;
    border-radius: 0.25em;
    background-color: white;
    color: #333;
    padding: 0.2em;
}




.button-2 {
    display: inline-block;
    padding: 0.45rem 1.5rem;
    background: #ccc;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.button-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.download-button {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #ccc;
    color: #667eea;
    text-decoration: none;
    border-radius: 0.25em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 0.8em;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Download */


.content-name {
    font-size: 0.9em;
}


.content-download {
    margin-bottom: 1em;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 0.5em;
}
.content-download:hover {
    /* background-color: #718096; */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}


/* Accordion */
  /* The button just needs this class + a data-target attribute
     pointing at the id of the div it should open/close. */
     .acc-btn {
        padding: 10px 18px;
        font-size: 15px;
        cursor: pointer;
        border: 1px solid #333;
        background: #fff;
        border-radius: 4px;
      }
    
      /* The collapsible panel: any element with class acc-panel.
         Collapsed by default via max-height: 0 + hidden overflow.
         Add class "acc-open" (done via JS) to expand it. */
      .acc-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
    
      .acc-panel-inner {
        padding: 14px 2px;
      }




/*  GALLERY   */

/* ============================================================
    Scoped to .gd-gallery-root — classes prefixed with gd- to
    avoid collisions when pasted into an existing page.
    Replace the placeholder <img src="..."> paths with your
    real image files. Each thumb needs a matching data-full
    attribute pointing at the full-size image to preview.
    ============================================================ */

    .gd-gallery-root {
    --gd-ink: #1c2521;
    --gd-paper: #f6f4ee;
    --gd-panel: #ffffff;
    --gd-forest: #21463d;
    --gd-forest-deep: #142e28;
    --gd-clay: #b9704a;
    --gd-line: #dcd6c8;
    --gd-muted: #6b7570;

    /* --gd-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --gd-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;

    font-family: var(--gd-sans); */
    background: var(--gd-paper);
    color: var(--gd-ink);
    padding: 56px 24px 96px;
    box-sizing: border-box;
    }

    .gd-gallery-root *,
    .gd-gallery-root *::before,
    .gd-gallery-root *::after {
    box-sizing: border-box;
    }

    .gd-gallery-root img {
    display: block;
    max-width: 100%;
    }

    .gd-page-head {
    max-width: 1040px;
    margin: 0 auto 48px;
    text-align: left;
    }

    .gd-page-head .gd-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gd-clay);
    font-weight: 600;
    margin: 0 0 10px;
    }

    .gd-page-head h1 {
    /* font-family: var(--gd-serif); */
    font-weight: 500;
    font-size: clamp(28px, 4vw, 40px);
    margin: 0;
    color: var(--gd-forest-deep);
    }

    .gd-sections {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4em;
    }

    .gd-section {
    display: flex;
    flex-direction: column;
    }

    .gd-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--gd-line);
    padding-bottom: 14px;
    margin-bottom: 20px;
    }

    .gd-section-head h2 {
    /* font-family: var(--gd-serif); */
    font-weight: 500;
    font-size: 24px;
    margin: 0;
    color: var(--gd-forest-deep);
    }

    .gd-count {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--gd-muted);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    }

    /* Preview */
    .gd-preview {
    position: relative;
    background: var(--gd-panel);
    border: 1px solid var(--gd-line);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 380px;
    }

    .gd-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    animation: gd-fade-in 0.35s ease forwards;
    }

    @keyframes gd-fade-in {
    from { opacity: 0; transform: scale(1.01); }
    to   { opacity: 1; transform: scale(1); }
    }

    .gd-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 16px;
    background: linear-gradient(0deg, rgba(20, 46, 40, 0.72), rgba(20, 46, 40, 0));
    color: #f6f4ee;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
    }

    .gd-caption .gd-cap-index {
    font-variant-numeric: tabular-nums;
    opacity: 0.85;
    }

    /* Thumbnails */
    .gd-thumbs {
    /* display: flex;
    flex-wrap: wrap;
    gap: 10px; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 10px;
    justify-items: center;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--gd-line) transparent;
    }

    .gd-thumbs::-webkit-scrollbar {
    height: 6px;
    }
    .gd-thumbs::-webkit-scrollbar-thumb {
    background: var(--gd-line);
    border-radius: 4px;
    }

    .gd-thumb {
    flex: 0 0 auto;
    width: 84px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    cursor: pointer;
    position: relative;
    opacity: 0.68;
    transition: opacity 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }

    .gd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .gd-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
    }

    .gd-thumb.gd-active {
    opacity: 1;
    border-color: var(--gd-clay);
    }

    .gd-thumb:focus-visible {
    outline: 2px solid var(--gd-forest);
    outline-offset: 2px;
    }

    @media (max-width: 640px) {
    .gd-gallery-root { padding: 40px 16px 72px; }
    .gd-thumb { width: 70px; height: 50px; }
    .gd-section-head h2 { font-size: 20px; }
    }

    @media (prefers-reduced-motion: reduce) {
    .gd-preview img { animation: none; opacity: 1; }
    .gd-thumb { transition: none; }
    }



    /*   individual Sliders*/

      .ss-body-reset {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: #111318;
    padding: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .ss-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.45); */
    background: #000;
  }

  .ss-track {
    position: absolute;
    inset: 0;
  }

  .ss-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
  }

  .ss-slide.ss-active {
    opacity: 1;
    pointer-events: auto;
  }

  .ss-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
  }

  .ss-slide-caption {
    position: absolute;
    left: 24px;
    bottom: 54px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 0.3px;
  }

  /* invisible click zones on left/right edges of the image */
  .ss-nav-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    z-index: 5;
    cursor: pointer;
    background: transparent;
  }

  .ss-nav-zone.ss-left { left: 0; }
  .ss-nav-zone.ss-right { right: 0; }

  .ss-nav-zone::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
  }

  .ss-nav-zone.ss-left::after { left: 14px; }
  .ss-nav-zone.ss-right::after { right: 14px; }

  .ss-nav-zone:hover::after {
    opacity: 1;
    background: rgba(0,0,0,0.55);
  }

  .ss-nav-zone::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    z-index: 6;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .ss-nav-zone.ss-left::before {
    left: 27px;
    border-right: 3px solid #fff;
    transform: translateY(-50%) rotate(-135deg);
  }

  .ss-nav-zone.ss-right::before {
    right: 27px;
    border-left: 3px solid #fff;
    transform: translateY(-50%) rotate(135deg);
  }

  .ss-nav-zone:hover::before {
    opacity: 1;
  }

  /* dot indicators */
  .ss-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
  }

  .ss-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .ss-dot:hover {
    background: rgba(255,255,255,0.7);
  }

  .ss-dot.ss-dot-active {
    background: #ffffff;
    transform: scale(1.3);
  }


    /*******************/


    .ofc {object-fit: cover;}
    .justify {text-align: justify;}
    .white { color: white; }
    .bold {font-weight: bold;}

    .extra-top-margin-2 {
        margin-top: 2em;
    }

    .extra-top-margin-3 {
        margin-top: 3em;
    }

    .extra-top-margin-4 {
        margin-top: 4em;
    }

    .extra-bottom-margin-1 {
        margin-bottom: 1em;
    }

    .extra-bottom-margin-2 {
        margin-bottom: 2em;
    }

    .extra-bottom-margin-3 {
        margin-bottom: 3em;
    }

    .extra-bottom-margin-4 {
        margin-bottom: 4em;
    }
    .blue {
        color: blue;
    }
    .red {
        color: red;
    }

    .color-1 {
        color: #ab5e27;
    }