@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


:root {
    --theme-mustered: #FFDB58;
    --theme: #006fd1;
    --theme-yellow: rgb(252, 252, 59);
    --theme-dark-blue: linear-gradient(90deg, #065975, #006fd1);
    --theme-white: wheat;
    --theme-font-family1: "Kaushan Script", cursive;
    --theme-font-family2: "Titillium Web", sans-serif;
    --f-headerTheme: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* Header Layout */

*{
        font-family: var(--theme-font-family2);
        box-sizing: border-box;
}

 .site-header {
     padding: 0;
     background: lightslategray;
     height: 70%;
 }

    /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: white;
        background-color: #000;
    }

          /* Awareness Bar Wrapper */
          .awareness-bar {
              /* background: var(--theme-dark-blue); */
              color: #fff;
              padding: 20px;
              text-align: center;
              padding: 1rem 2rem;
          }

            #gradient-canvas {
                width: 150%;
                height: 65rem;
                position: absolute;
                top: -600px;
                left: -50%;
                z-index: -3;
                pointer-events: none;
                --gradient-color-1: #7c767a;
                --gradient-color-2: #4b9dcc;
                --gradient-color-3: #006FD1;
                --gradient-color-4: #006FD1;
            }
    
          /* Grid Layout */
          .awareness-grid {
              display: grid;
              grid-template-columns: repeat(5, 1fr);
              /* 4 lists + 1 image in middle */
              align-items: center;
              gap: 20px;
          }
    
          /* Reset UL Styles */
          .awareness-grid ul {
              list-style: none;
              border: 2px solid wheat;
              border-radius: 20px;
              padding: 0;
              margin: 0;
          }
    
          .awareness-grid li {
              margin: 10px 0;
          }
    
          .awareness-grid a {
              color: #fff;
              text-decoration: none;
              font-weight: 500;
              transition: color 0.3s;
              border-bottom: 1px solid var(--theme-mustered);
          }
    
          .awareness-grid a:hover {
              color: #ffd700;
          }
    
          /* Middle Image */
            .awareness-image{
              border-left: 1px dashed var(--theme-mustered);
              border-right: 1px dashed var(--theme-mustered);
            }

          .awareness-image img {
              max-width: 120px;
              height: 120px;
              display: block;
              border: 2px solid wheat;
              margin: auto;
              border-radius: 50%;
          }
    
          /* ✅ Responsive */
          @media (max-width: 992px) {
              .awareness-grid {
                  grid-template-columns: repeat(2, 1fr);
              }
    
              .awareness-image {
                  grid-column: span 2;
                  /* image takes full row */
              }
          }
    
          @media (max-width: 600px) {
              .awareness-grid {
                  grid-template-columns: 3fr;
                  text-align: center;
              }
    
              .awareness-image {
                  grid-column: span 1;
              }

            #gradient-canvas {
                height: 60rem;
            }

            .awareness-grid ul{
                display: none;
            }

          }
    /* Navbar */
    .navbar {
        position: relative;
        top: 0;
        width: 100%;
        z-index: 3;
        display: flex;
        justify-content: space-around;
        background: #0f2027;
        align-items: center;
        padding: 1rem 2rem;
        height: 20%;
        border-bottom: 2px solid var(--theme-mustered);
        border-top: 1px dashed var(--theme-mustered);
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: bold;
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
    }

    .logo img {
        height: 60px;
    }

    .nav-links {
        list-style: none;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: nowrap;
    }

    .nav-links>li {
        position: relative;
    }

    .nav-links li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.2rem;
        transition: all 0.3s;
        padding: 0.5rem 0;
        display: block;
        position: relative;
        padding-bottom: 5px;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--theme-mustered);
        transition: width 0.4s ease-out;
    }

    .nav-links li a:hover {
        color: var(--theme-mustered);
    }

    .nav-links li a:hover::after {
        width: 100%;
    }

    /* Dropdown Menu with Fancy Animation */
    .dropdown {
        position: relative;
    }

    .dropdown-content {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0f2027;
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 5px 5px;
        overflow: hidden;
        z-index: 1;
        opacity: 0;
        transform: translateY(-15px);
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }

    .dropdown:hover .dropdown-content {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .dropdown-content li {
        padding: 0.3rem 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
        transform: translateX(-30px);
        opacity: 0;
    }

    .dropdown:hover .dropdown-content li {
        transform: translateX(0);
        opacity: 1;
    }

    /* Staggered dropdown item animation */
    .dropdown-content li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .dropdown-content li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .dropdown-content li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .dropdown-content li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .dropdown-content li:nth-child(5) {
        transition-delay: 0.5s;
    }

    /* Mobile Menu Button */
    .menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .menu-btn:hover {
        transform: scale(1.1);
    }

    /* Mobile Menu with Ancient Scroll Animation */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        background: rgba(0, 111, 209, 0.98);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        max-width: 350px;
        padding: 1.5rem;
        border-radius: 0 0 0 10px;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
        transform-origin: top right;
        animation: menuAppear 0.6s ease-out forwards;
    }

    @keyframes menuAppear {
        0% {
            transform: scale(0.8) translateY(-20px);
            opacity: 0;
        }

        100% {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
    }

    .nav-links.mobile-active>li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        animation: itemAppear 0.5s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    @keyframes itemAppear {
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Staggered mobile menu item animation */
    .nav-links.mobile-active>li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.mobile-active>li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.mobile-active>li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.mobile-active>li:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-links.mobile-active>li:nth-child(5) {
        animation-delay: 0.5s;
    }

    .nav-links.mobile-active>li:nth-child(6) {
        animation-delay: 0.6s;
    }

    .nav-links.mobile-active>li:nth-child(7) {
        animation-delay: 0.7s;
    }

    .nav-links.mobile-active>li:nth-child(8) {
        animation-delay: 0.8s;
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        width: 100%;
        height: 78vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem;
    }

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overlay {
        position: absolute;
        inset: 0;
        background:  rgba(17, 157, 204, 0.25);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: white;
    }

    .hero-content h1 span {
        color: #006fd1;
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        color: white;
    }

    .nasdaq-btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border: 2px solid white;
        border-radius: 999px;
        color: white;
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        background-color: rgba(0, 111, 209, 0.7);
    }

    .nasdaq-btn:hover {
        background-color: white;
        color: #006fd1;
        border-color: #006fd1;
    }

     /* Footer Styles */
/* --- Global & Container Styles --- */

.awards-section {
    /* Subtle background gradient for depth */
    background: linear-gradient(180deg, #f0f4f8 0%, #e0e6ec 100%);
    padding: 60px 20px 80px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    /* A modern, clean font */
    color: #2c3e50;
    /* Deep charcoal blue for text */
}

.awards-section h2 {
    font-size: 3em;
    font-weight: 700;
    color: #1a5276;
    /* Professional deep blue for heading */
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.awards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    /* Increased space for visual breathing room */
}

/* --- Individual Award Item Styles --- */

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: default;
}

.award-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(30, 18, 145, 0.1);
}

/* --- Badge Base Styles --- */

.award-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    font-weight: 800;
    margin-bottom: 20px;

    /* Transition for subtle effect when combined with hover on award-item */
    transition: all 0.3s ease;
}

/* --- Runner-Up (Silver/White) Styles --- */

.award-badge.runner-up {
    /* White with a very light blue inner circle for professionalism */
    background: #ffffff;

    /* Silver/light grey border */
    box-shadow: 0 0 0 5px rgba(189, 195, 199, 0.4),
        /* Subtle outer glow */
        inset 0 0 10px rgba(0, 0, 0, 0.05);
    /* Inner shadow for depth */

    color: #4b6584;
    /* Medium blue-grey text */
    font-size: 3em;
}

.award-badge.runner-up:hover {
    /* Slight pulse/color shift on badge hover */
    box-shadow: 0 0 0 5px rgba(189, 195, 199, 0.7),
        inset 0 0 15px rgba(0, 0, 0, 0.1);
}

/* --- Winner (Gold) Styles --- */

.award-badge.winner {
    /* Rich, warm gold gradient */
    background: linear-gradient(145deg, #ffd700, #daa520);

    /* Elegant gold border/shadow */
    box-shadow: 0 0 0 5px rgba(255, 223, 0, 0.5),
        /* Gold outer glow */
        inset 0 0 20px rgba(255, 255, 255, 0.7);
    /* Bright inner reflection */
}

.award-badge.winner:hover {
    /* Slight rotate and stronger glow for winner */
    transform: rotate(-3deg);
    box-shadow: 0 0 0 8px rgba(255, 223, 0, 0.8),
        inset 0 0 25px rgba(255, 255, 255, 0.9);
}

.award-badge.winner img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    /* Optional: Give the wreath a dark border for contrast */
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4)) saturate(1.2);
    transition: transform 0.5s ease;
}

.award-badge.winner:hover img {
    /* Subtle rotation effect on the image inside */
    transform: scale(1.05);
}

.award-badge.winner span {
    position: relative;
    z-index: 1;
    font-size: 1.6em;
    color: #795548;
    /* Dark brown/bronze for contrast */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* --- Text Styles --- */

.award-description {
    font-size: 0.9em;
    color: #8e8e8e;
    /* Soft grey */
    margin-top: -15px;
    /* Pull text slightly into the badge space */
    font-weight: 500;
}

.award-title {
    font-size: 1.1em;
    /* Slightly larger, easier to read */
    color: #2c3e50;
    line-height: 1.4;
    margin-top: 5px;
    font-weight: 600;
}

.award-item:hover .award-title {
    /* Emphasize the title on hover */
    color: #1a5276;
}
     
.feedback-section {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #0f2027;
}

.feedback-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: white;
}

.feedback-section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #ffcc00;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.feedback-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feedback-steps .step {
    width: 40px;
    height: 40px;
    border: 1px dashed #555;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-steps .step.active {
    border: 2px solid #e7f1e7;
    font-weight: bold;
    color: #eff5ef;
    background: rgba(255, 255, 255, 0.1);
}

.feedback-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
    color: #ddd;
    display: none;
}

.feedback-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: #ffcc00;
}

.signup-section {
    text-align: center;
    padding: 3rem 1rem;
    background: #006FD1;
}

.signup-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e9e8f0;
    margin-bottom: 0.5rem;
}

.signup-section p {
    color: #dad3d3;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.signup-form input[type="email"] {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    min-width: 220px;
    outline: none;
}

.signup-form button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: #e0dfeb;
    border: 2px solid #e0dfeb;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover {
    background: #0c084c;
    color: #fff;
}

@media (max-width: 600px) {
    .signup-form {
        flex-direction: column;
        gap: 1rem;
    }

    .signup-form button {
        width: 100%;
    }
}


        .footer-dark {
            background: #0f2027;
            backdrop-filter: blur(10px);
            padding: 1.2rem 1rem;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin: 0 auto;
            width: 100%;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem;
            margin-bottom: 0.8rem;
        }

        .footer-column {
            flex: 1;
            min-width: 180px;
            padding: 0.5rem;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #5ba9ec;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 35px;
            height: 2px;
            background: linear-gradient(90deg, #ffd700, transparent);
        }

        .footer-column p {
            margin-bottom: 0.7rem;
            display: flex;
            color: white;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .footer-column p:hover {
            color: #ffd700;
            transform: translateX(5px);
        }

        .footer-column img {
            width: 18px;
            height: 18px;
            object-fit: contain;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .footer-column p:hover img {
            transform: scale(1.2);
            filter: brightness(1.2);
        }

        .social-row {
            display: flex;
            gap: 0.7rem;
            margin-bottom: 0.8rem;
        }

        .social-icons {
            display: flex;
            gap: 0.7rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-3px) scale(1.1);
            background: rgba(255, 215, 0, 0.2);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .social-icons img {
            width: 85%;
            height: 85%;
            object-fit: contain;
        }

        .copyR {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            letter-spacing: 0.5px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 0.8rem;
            }

            .footer-column {
                min-width: 100%;
                text-align: center;
            }

            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-column p {
                justify-content: center;
            }

            .social-row {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-dark {
                padding: 1rem 0.4rem;
            }

            .footer-column h3 {
                font-size: 1rem;
            }

            .footer-column p {
                font-size: 0.8rem;
            }

            .social-icons a {
                width: 30px;
                height: 30px;
            }

            .social-icons img {
                width: 16px;
                height: 16px;
            }
        }

        /* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.whatsapp-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg') no-repeat;
    background-size: contain;
    margin-right: 10px;
}

        /* Responsive Design */
        @media (max-width: 1144px) {
            .hero-content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 850px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 811px) {
            .navbar {
                padding: 1rem;
                height: auto;
                background-color: #000;
            }

            .hero-section{
                height: 80vh;
            }

            .menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
            }

            .nav-links.mobile-active {
                display: flex;
            }

            .dropdown-content {
                position: static;
                display: none;
                margin-top: 0.5rem;
                border-radius: 5px;
                animation: none;
                transform: none;
                opacity: 1;
                visibility: visible;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown-content li {
                transform: none;
                opacity: 1;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 550px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .nasdaq-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .logo img {
                height: 45px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float a {
                padding: 10px 15px;
            }

            .whatsapp-float span {
                font-size: 0.9rem;
            }

    
        }

        @media (max-width: 480px) {
            .whatsapp-float span {
                display: none;
            }

            .hero-section{
                height: 50vh;
            }

            .whatsapp-float i {
                margin-right: 0;
                font-size: 1.8rem;
            }

            .whatsapp-float a {
                padding: 12px;
                width: 50px;
                height: 50px;
                justify-content: center;
            }

    
        }


/* LOADER CSS */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 200000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

  #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
  }

.loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

  .loader-logo {
      width: 200px;
      height: auto;
      margin-right: 2rem;
      animation: pulse 2s infinite ease-in-out;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 0.8;
      }

      50% {
          transform: scale(1.1);
          opacity: 1;
      }

      100% {
          transform: scale(1);
          opacity: 0.8;
      }
  }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

