body{
    padding: 0px;
    margin: 0px;
}
@font-face {
    font-family: 'Amsterdam';
    src: url('./fonts/Amsterdam_Deenatype/Amsterdam.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/*home*/
.home-section{
    background-image: url(./img/Homee.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; 
    text-align: center;
    flex-direction: column;
}
.content-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.background-text {
    position: absolute;
    font-size: 214px; 
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1); 
    white-space: nowrap;
    font-family: 'Unbounded', sans-serif;
}
.foreground-text {
    font-family: 'Amsterdam', sans-serif;
    font-size: 252px;
    position: relative;
    color: white;
}
.marquee-container {
    position: absolute;
    bottom: 10px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Unbounded', sans-serif;

}
.marquee-container .marquee {
    display: flex;
    width: 200%;  
    animation: marqueeAnimation 10s linear infinite;
}
.marquee-container .marquee span {
    font-size: 36px;
    font-family: 'Unbounded', sans-serif;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
}
@keyframes marqueeAnimation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/*photos section*/
.image-grid {
    text-align: center;
    padding: 40px 0;
}

.image-grid img {
    /*max-width: 100%; */
    height: auto;
}


.grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: auto;
    align-items: flex-start;
}

.grid img {
    width: 406px;
    height: 406px;
    border-radius: 10px;
    transition: all 0.3s ease;
    object-fit: cover;
    flex-shrink: 0;
    filter: grayscale(50%);

}

.grid img:hover {
    transform: scale(1.03);
        filter: grayscale(0%);

}

.stacked-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stacked-images img {
    width: 406px;
    height: 199px;  
    border-radius: 10px;
}
/*   Sessions Section */
.session-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center;
}
.session-container, .session-container2 {
    display: flex;
    gap: 10px;
    margin-bottom: 80px;
}
.session, .session2 {
    position: relative;
    width: 492px;
    height: 210px;
}
.session img {
    border-radius: 15px;
    filter: grayscale(100%);
    width: 100%;
    transition: all 0.3s ease;
}

.session img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}
.session-text {
    position: absolute;
    font-family: 'Unbounded', sans-serif;  
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
}
    .session-title {
        text-align: center ;
        align-content: center;
        width: 1253px;
        height: 130px;
        font-size: 40PX;
        font-family: 'Unbounded', sans-serif;  
        color: #F85A40;
        margin: 20px;
        border: 10px solid #F85A40;  
        border-radius: 20px;  
    }
    
    
     

    .Quiz-Section{
        justify-content: center;
        background-image: url(./img/Quiz\ Background.png);
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white; 
        text-align: center;
        flex-direction: column;
    
    }
    .Quiz-Section p{
        font-size: 32px;
        width: 50%;
        color: #2D2E2E;
        font-family: 'Roboto Flex', sans-serif;

    }
    .Quiz-Section h2{
        font-family: 'Unbounded', sans-serif;  
        font-size: 64px;
        color: black;
    }
    button{
        background-image: url(./img/gradient\ 2.png);
        width: 465px;
        height: 56px;
        color: white;
        font-family: 'Unbounded', sans-serif;  
        border-radius: 10px;
        border: 10px solid white;  

    }
    footer{
        height: 50px;
        text-align: center;
        padding: 5px;
        font-family: 'Roboto Flex', sans-serif;

    }
    @media screen and (max-width: 980px) {

        .session-title {
            width: 913px;
            font-size: 40PX;
              
        }
        .session img, .session2 img {
            width:90%;

        }
        .home-section, .session-title, .session-container, .session-container2 {
            max-width: 100%;
            overflow: hidden;
        }
        
        .Quiz-Section{
            justify-content: center;
            background-image: url(./img/Quiz\ Background.png);
            background-position: center;
            background-repeat: no-repeat;
            height: 80vh;
            background-size:120%;
           
        }

        footer {
            padding: 15px;
            font-size:25px;
        }
        
      


    }
    
    /* Base grayscale image style */
.session img {
    border-radius: 15px;
    filter: grayscale(100%);
    width: 100%;
    height: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  /* Hover effect */
  .session img:hover {
    filter: grayscale(0%);
    transform: scale(1.03); /* optional zoom effect */
  }
  


footer {
    padding: 16px 0;
    text-align: center;
    color: white;
    font-size: 14px;
  }
  .session img,
  .session2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .session img:hover,
  .session2 img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
  }
  .session-container,
  .session-container2 {
    gap: 16px;
    padding: 10px 12px;
    margin-top: 12px;
  }
.session:hover,
.session2:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
      
@media screen and (max-width: 726px) {
  /* General session container style */
  .session-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
    justify-content: center;
  }

  /* Special container override */
  .session-container.special-container {
    flex-direction: column; /* stack sessions vertically */
    padding: 8px 12px;
    max-width: 360px;
    margin: 0 auto 24px auto; /* center container with bottom spacing */
  }

  /* General session styling */
  .session {
    width: 48%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
  }

  .session:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
  }

  .session img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
  }

  /* Special session override */
  .special-session {
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto 16px auto;
    aspect-ratio: 16 / 9;
  }

  .special-session img {
    object-fit: contain;
  }
}

@media screen and (max-width: 600px) {
  .session-container {
    display: flex;
    flex-direction: column; /* stack vertically */
    gap: 16px;
    padding: 12px 16px;
    max-width: 100%;
    margin: 0 auto;
  }

  .session {
    width: 100% !important;     /* full width inside container */
    max-width: 360px;           /* optional max width */
    height: auto !important;    /* height adjusts to content */
    aspect-ratio: 16 / 9;       /* keeps aspect ratio */
    margin: 0 auto;             /* centers horizontally */
    border-radius: 15px;
    overflow: hidden;
  }
}

  .pre-loader {
    position: fixed;
    background-color: #ffffff;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
  }
  .pre-loader img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
  }

@media screen and (max-width: 600px) {
  .session-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 12px 16px;
    max-width: 100vw;  /* full viewport width */
    overflow-x: visible; /* prevent clipping */
    box-sizing: border-box; /* ensure padding included */
    margin: 0 auto;
  }

  .session {
    width: 100%;
    max-width: 320px;  /* max width to fit nicely on phones like iPhone 12 */
    aspect-ratio: 16 / 9;
    height: auto !important;
    margin: 0 auto 16px auto;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .session img {
    width: 100%;
    height: auto !important;
    object-fit: contain;
    display: block;
    border-radius: 15px;
  }
}


@media screen and (max-width: 600px) {
  /* Containers: stack vertically with padding and gap */
  .session-container,
  .session-container2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 16px;
    max-width: 100vw;
    margin: 0 auto 24px auto;
    box-sizing: border-box;
    overflow-x: visible;
    justify-content: center;
  }

  /* Session cards: full width, capped max-width, with aspect ratio */
  .session,
  .session2 {
    width: 100% !important;
    max-width: 360px;
    height: auto !important;
    aspect-ratio: 16 / 9;
    margin: 0 auto 16px auto;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
  }

  /* Hover effects */
  .session:hover,
  .session2:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Images inside sessions */
  .session img,
  .session2 img {
    width: 100%;
    height: auto !important;
    object-fit: contain;
    display: block;
    border-radius: 15px;
    transition: filter 0.3s ease, transform 0.3s ease;
  }

  /* Special session override */
  .special-session {
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto 16px auto;
    aspect-ratio: 16 / 9;
  }
  .special-session img {
    object-fit: contain;
  }

  /* Session title resizing and spacing */
  .session-title {
    width: 90vw;
    max-width: 360px;
    font-size: 32px;
    margin: 16px auto;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 10px solid #F85A40;
    border-radius: 20px;
    text-align: center;
    color: #F85A40;
    font-family: 'Unbounded', sans-serif;
  }

  /* Home section adjustments if needed */
  .home-section {
    height: auto; /* optional: let it shrink on mobile */
    padding: 40px 0; /* optional */
  }

  /* Quiz section adjustments */
  .Quiz-Section {
    height: auto;
    padding: 40px 16px;
  }
  .Quiz-Section p {
    width: 90vw;
    font-size: 24px;
  }
  .Quiz-Section h2 {
    font-size: 48px;
  }

  /* Buttons full width on mobile */
  button {
    width: 100%;
    max-width: 360px;
    height: 56px;
    border-radius: 10px;
    border: 10px solid white;
    font-family: 'Unbounded', sans-serif;
  }

  /* Footer font size and padding */
  footer {
    font-size: 14px;
    padding: 12px 0;
  }

  /* Image grid adjustments */
  .grid,
  .stacked-images {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .grid img,
  .stacked-images img {
    width: 90vw;
    max-width: 360px;
    height: auto;
    border-radius: 10px;
  }
}
/* Navbar container */
.navbar {
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    list-style: none !important;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border-bottom: 1px solid #e6e6e6;
    z-index: 1000; /* Keeps it above other content */
    transition: all 0.3s ease-in-out;
}

/* Navbar fixed on scroll */
.navbar.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    list-style: none !important;
    background: rgba(255, 255, 255, 0.95); /* Slight transparency */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds shadow when fixed */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s;
}

/* Logo image */
.logo img {
    height: 50px;
}

/* Navbar links container */
.nav-links {
    display: flex;
    gap: 30px;
}

/* Navbar collapse justify right */
.navbar-collapse {
    justify-content: flex-end;
}

/* Navbar navigation list style reset */
.navbar-nav {
    list-style: none !important;
    position: relative; /* for ::after pseudo elements */
}

/* Navbar links styling */
.nav-links a,
.navbar-nav .nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 200;
    position: relative;
    padding: 8px 0; /* add some vertical padding */
}

/* Underline effect on links */
.nav-links a::after,
.navbar-nav .nav-link::after,
.navbar-nav .dropdown-toggle::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #037EF3;
    left: 50%;
    bottom: -5px;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Expand underline on hover */
.nav-links a:hover::after,
.navbar-nav .nav-link:hover::after,
.navbar-nav .dropdown-toggle:hover::before {
    width: 100%;
    left: 0;
}

/* Remove default dropdown underline */
.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

/* Dropdown menu styling */
.dropdown-menu {
    padding: 0;
}

/* Dropdown items styling */
.dropdown-menu .dropdown-item {
    text-decoration: none !important;
    padding: 12px 20px;
    display: block;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Dropdown item hover/focus/active */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
    text-decoration: none !important;
    outline: none !important; /* Remove any focus border */
}

/* Unique hover colors for each dropdown item (customize as needed) */
.dropdown-menu li:nth-child(1) .dropdown-item:hover { background: #f85a40; color: white; }
.dropdown-menu li:nth-child(2) .dropdown-item:hover { background: #f85a40; color: white; }
.dropdown-menu li:nth-child(3) .dropdown-item:hover { background: linear-gradient(90deg,#0CB9C1, #F48924); color: white; }
.dropdown-menu li:nth-child(4) .dropdown-item:hover { background: linear-gradient(135deg, #F48924, #0CB9C1); color: white; }
.dropdown-menu li:nth-child(5) .dropdown-item:hover { background: #037ef3; color: white; }
.dropdown-menu li:nth-child(6) .dropdown-item:hover { background: #0e33af; color: white; }
.dropdown-menu li:nth-child(7) .dropdown-item:hover { background: #7552CC; color: white; }
.dropdown-menu li:nth-child(8) .dropdown-item:hover { background: #0DA15D; color: white; }

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }
    
    .collapse.navbar-collapse {
        background: white;
        padding: 10px 0;
        text-align: center;
    }
}

/* Navbar toggler button styling (Bootstrap default styles will apply, you can customize) */

/* Optional: Navbar visibility on scroll (requires JS to toggle classes) */
@media (max-width: 768px) {
    .navbar.visible {
        position: fixed;
        transform: translateY(0);
        opacity: 1;
    }
}

/* Add any other small helper styles as needed */
.navbar,
.nav-links a,
.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400; /* normal weight */
}


@media (max-width: 768px) {
  .navbar,
  .nav-links a,
  .navbar-nav .nav-link,
  .navbar-nav .dropdown-toggle {
    font-weight: 400; /* normal weight for mobile */
    font-size: 16px;  /* slightly larger font for readability */
  }

  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
  }

  .collapse.navbar-collapse {
    background: white;
    padding: 10px 0;
    text-align: center;
  }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo left, toggler right */
  padding: 20px 40px;
  background: white;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  position: relative;
  z-index: 1000;
}

/* Logo does not shrink */
.logo {
  flex-shrink: 0;
}

/* On desktop, nav links appear */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
    flex-grow: 1;
  }
}

/* On mobile, toggler is visible and menu collapses */
@media (max-width: 991px) {
  .navbar-toggler {
    order: 2; /* Make toggler come after logo (order doesn't matter usually) */
  }

  .logo {
    order: 1;
  }

  .navbar-collapse {
    order: 3;
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: white;
  font-family: 'Unbounded', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo img {
  height: 40px;
}

.navbar-toggler {
  border: none;
  background: #ef5350;
  padding: 6px 10px;
  border-radius: 6px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar {
  padding: 10px 20px;
  background-color: white;
  font-family: 'Unbounded', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.navbar-toggler {
  background-color: #ef5350;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}

.navbar-brand img {
  height: 40px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1rem;
  }

  .navbar-brand.d-none.d-lg-block {
    display: block !important;
    margin-bottom: 1rem;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px 0;
  }
}

@media (max-width: 768px){

    .navbar-brand{
    display: none !important;
  }
}

.navbar {
  background-color: white;
  padding: 10px 20px;
  font-family: 'Unbounded', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.navbar-brand img.main-logo {
  height: 40px;
}

.menu-logo {
  height: 40px;
  display: inline-block;
}

.navbar-toggler {
  background-color: #ef5350;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}


.home-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
    background: linear-gradient(90deg, #f85a40, #903426);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: white;
  padding: 20px;
  animation: gradientMove 2s infinite alternate;
              background-size: 200% 200%;


}
      @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 100% 50%;
            }
        }
.content-section {
  position: relative;
  z-index: 2;
}

.foreground-text {
  font-size: 12vw; /* Smaller on mobile */
  font-weight: 600;
  margin: 0;
}

.background-text {
  position: absolute;
  font-size: 15vw; /* Background text size reduced */
  opacity: 0.9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.marquee-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: white;
  color: black;
  padding: 6px 0;
  font-size: 12px;
  overflow: hidden;
  z-index: 2;
}

.marquee {
  display: inline-block;
  animation: scroll-left 12s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 480px) {
  .foreground-text {
    font-size: 40vw; /* larger text on small phones */
  }
}

.session {
  cursor: pointer;
}


.footer-text {
    background: linear-gradient(90deg, #f85a40, #903426);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 768px) {
.footer-text{
    font-size: 10px;
}
}


.navbar-toggler {
  background-color: #ef5350;
  border: none;
  border-radius: 6px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .grid {
    flex-direction: column;
    align-items: center;
  }

  .grid img {
    width: 100%;
    max-width: 350px;
    height: 350px;
  }

  .stacked-images {
    flex-direction: column;
    width: 96%;
    max-width: 406px;
  }

  .stacked-images img {
    width: 96%;
    height: 199px;
  }
}
