
        /* --- Google Fonts --- */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Lato:wght@400;700&display=swap');
        @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

        /* --- Global Style & Variables --- */
        :root {
            --primary-purple: #4a148c; /* Deep, prominent purple */
            --secondary-purple: #6a1b9a;
            --light-lavender: #f3e5f5;
            --dark-text: #333333;
            --light-text: #fefefe;
            --accent-gold: #c5a47e; /* For prominent CTAs */
            --background-light: #ffffff;
            --background-grey: #f7f9fc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--background-light);
            color: var(--dark-text);
            line-height: 1.8;
            font-size: 16px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-purple);
            font-weight: 700;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            color: var(--secondary-purple);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-purple);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .section {
            padding: 100px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .section.no-pad-top { padding-top: 0; }
        .section.no-pad-bottom { padding-bottom: 0; }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title, .subsection-title {
              text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    font-weight: 800;
    line-height: 58px;
        }
        
        .subsection-title {
        text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    font-weight: 800;
    line-height: 58px;
    color: #4a148c;
}

  .privacy-notice{
        font-family: "Poppins", sans-serif;
  }

        .section-title::after, .subsection-title::after {
              content: '';
    display: block;
    width: 80px;
    height: 4px;
       background: #c5a47e;
    margin: 20px auto 0;
    border-radius: 2px;
        }
        
        .centered-text {
              text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* margin-bottom: 50px; */
    font-family: "Poppins", sans-serif;
    margin-bottom: 0px;

        }
        
        /* --- PAGE SEPARATOR --- */
        .page-divider {
            border: 0;
            height: 2px;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(74, 20, 140, 0.5), rgba(0, 0, 0, 0));
            margin: 40px 0;
        }
        .page-label {
            text-align: center;
    font-family: 'Montserrat';
    font-size: 1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* padding-top: 50px; */
    padding-bottom: 15px;
        }


        /* --- Buttons --- */
        .btn {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
                transition: all 0.3s ease;
        }

        .btn-gold {
                transition: all 0.3s ease;
                 background-color: #ffffff;
    color: #4a148c;
}

        .btn-gold:hover {
              background-color: #2f095e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
        }

   
   


        /* --- Header & Navigation --- */
        /* .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        } */

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 85px;
        }

        .navbar .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-purple);
            text-decoration: none;
        }

        .navbar .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
                margin: 0px;
        }

        .navbar .nav-links li {
            margin-left: 40px;
        }

        .navbar .nav-links a {
            text-decoration: none;
            color: var(--dark-text) !important;
            font-weight: 700 !important;
            font-size: 1rem !important;
            transition: color 0.3s ease !important; 
            position: relative !important;
            padding-bottom: 5px !important;
        }
        
        .navbar .nav-links .navbtn {
               padding: 13px 32px;
    color: #FFFFFF !important;
    background-color: #4a148c;
    height: 49px;
    display: block;
    border-radius: 50px;
    text-transform: uppercase
        }
          .navbar .nav-links .navbtn:hover {

background-color:#6a1b9a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          }

        .navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .navbar .nav-links a:hover::after {
            width: 100%;
        }

        .navbar .nav-links a:hover {
            color: var(--primary-purple);
        }

        /* --- Hero Section (Homepage) --- */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-text);
            padding-top: 85px;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -2;
            transform: translateX(-50%) translateY(-50%);
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
             background: rgb(0 0 0 / 51%);
            z-index: -1;
        }

        .hero-content h1 {
            font-size: 5rem;
            font-weight: 800;
            color: var(--light-text);
            margin-bottom: 10px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
                margin: 0px;
        }

        .hero-content .tagline {
            font-size: 1.8rem;
            font-family: 'Montserrat';
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--light-lavender);
        }

        .hero-content .sub-line {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #e0e0e0;
        }

        .hero-content .btn-gold {
          
              transition: all 0.3s ease;    
                display: inline-block;
       font-size: 1.2rem;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
          background-color: #4a148c;
    color: #fff;
        }
            .hero-content .btn-gold:hover {
   background-color: #fff;
    color: #4a148c;

            }

        /* --- Vision Section --- */
        .vision-section {
            background-color: var(--background-grey);
            text-align: center;
        }
        .vision-section .container {
            max-width:1000px;
        }

        /* --- Quiz Intro Section --- */
        .quiz-intro-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            align-items: center;
            gap: 60px;
        }

        .quiz-logo-container img {
         max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
        }

        .quiz-features ul {
                list-style: none;
    margin-bottom: 45px;
        }

        .quiz-features li {
            font-size: 1.2rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }

        /*.quiz-features .icon {
               font-size: 2rem;
    color: #ffffff;
    margin-right: 20px;
    background-color: #4a148c;
    padding: 16px;
    border-radius: 50px;
        }*/
.quiz-features .icon {
               font-size: 2rem;
    color: var(--accent-gold);
    margin-right: 20px;
    padding: 16px;
    border-radius: 50px;
        }
        /* --- Services Teaser Section --- */
        .services-teaser {
            background-color: var(--primary-purple);
            color: var(--light-text);
            text-align: center;
        }
        .services-teaser h2 {
            color: var(--light-text);
        }
        .services-display {
               font-size: 2rem;
    font-family: 'Montserrat';
    font-weight: 700;
    margin: 40px 0 40px;
    height: 40px;
    color: var(--accent-gold);
    position: relative;
}
      
        .services-display span {
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            position: absolute;
            left: 50%;
            width: 100%;
            transform: translateX(-50%);
        }
        .services-display span.visible {
            opacity: 1;
        }

        /* --- Social Impact Section --- */
        .social-impact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
        }
        .social-impact-content img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }


        /* --- QUIZ PAGE SPECIFIC STYLES --- */
        .page-header {
            padding: 150px 0 80px 0;
            background: var(--background-grey);
            text-align: center;
        }
        .page-header h1 {
            font-size: 3.5rem;
        }

        .how-to-participate-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .step-card {
             display: block;
    background: #ffffff;
    border-radius: 0 20px 0 20px;
    margin: 0;
    padding: 15px;
    text-align: center;
    transition: all 0.5s;
      box-shadow: 3px 5px 14px 0px rgba(0, 0, 0, 0.10);
}
   .step-card:hover {
    transform: translateY(-10px) !important;

   }
 
   
        .step-card .step-number {
           width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-purple);
    color: var(--light-text);
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-family: 'Montserrat';
    font-weight: 700;
    margin: 0 auto 20px auto;
    border: 4px solid #c5a47e;
     
    box-shadow: 0px 3.307px 3.318px rgba(0, 0, 0, 0.02), 0px 6.994px 8.206px rgba(0, 0, 0, 0.04), 0px 11.89px 16.44px rgba(0, 0, 0, 0.05), 10px 20.718px 33.619px rgba(0, 0, 0, 0.07), 10px 51px 94px rgba(0, 0, 0, 0.11);
        }
        .step-card h3 {
               margin-bottom: 10px;
    color: #4a148c;
    font-size: 20px;
    font-weight: 700;
        }
.step-card p{
     color: #000000;
    font-family: "Poppins", sans-serif;
}
        /* --- REGISTRATION PAGE --- */
      .registration-form-container {
    max-width: 100%;
    margin: 0 auto;
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

        .privacy-notice {
           background-color: var(--light-lavender);
    border-left: 5px solid #5c5c5c;
    padding: 20px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    border-radius: 5px;
        }

        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary-purple);
                text-align: left;
        }
        .form-group input, .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
        }

        .otp-group {
            display: flex;
            gap: 15px;
        }
        .otp-group input { flex-grow: 1; }
        .otp-group button {
            padding: 0 20px;
            font-size: 0.9rem;
            height: 52px;
            margin-top: auto;
            flex-shrink: 0;
        }
        .form-group #age {
            background-color: #eee;
            cursor: not-allowed;
        }

        .confirmation-group {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .confirmation-group input {
            width: auto;
            margin-top: 5px;
            flex-shrink: 0;
        }

        .submit-btn-container {
            text-align: center;
            margin-top: 40px;
        }
        .submit-btn-container .btn {
            width: 100%;
            padding: 20px;
            font-size: 1.2rem;
        }

        /* --- SERVICES PAGE (ENHANCED) --- */
        .service-category {
            margin-bottom: 60px;
        }
        .service-category h3 {
            font-size: 2.2rem;
            text-align: left;
            margin-bottom: 40px;
            border-bottom: 2px solid var(--light-lavender);
            padding-bottom: 15px;
                font-weight: 700;

        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .service-item {
            background: var(--background-light);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #eee;
            border-left: 4px solid var(--primary-purple);
            transition: all 0.3s ease;
        }
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
            border-left-color: var(--accent-gold);
        }
        .service-item h4 {
              font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
        }
        .service-item p {
                font-size: 0.95rem;
    color: #000000;
    font-family: "Poppins", sans-serif;
        }

        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .why-us-card {
              display: block;
    /* background: #ffffff; */
    border-radius: 0 20px 0 20px;
    margin: 0;
       /* padding: 15px 10px 20px; */
    text-align: center;
    transition: all 0.5s;
            
    /* box-shadow: 3px 5px 14px 0px rgba(0, 0, 0, 0.10); */
        }
        .why-us-card .icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
         .why-us-card h4 {
               font-size: 20px;
    font-weight: 700;
        }
     .why-us-card_bgcolor p{
      font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 25px;
     }

        /* --- ABOUT US PAGE (ENHANCED) --- */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .process-step .icon {
                font-size: 3rem;
    color: #c5a47e;
    margin-bottom: 20px;
}
       
        .process-step h4 {
       font-size: 22px;
    margin-bottom: 10px;
    color: #4a148c;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
        }
        .process-step p{
           font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 25px;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
       

        /* --- SOCIAL IMPACT (ENHANCED) --- */
        #social-impact { background-color: var(--background-grey); }
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .partners-grid img {
            height: 60px;
            opacity: 0.6;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }
        .partners-grid img:hover {
            opacity: 1;
            filter: grayscale(0%);
        }
        .impact-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stat-item .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-purple);
        }
        .stat-item .stat-label {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-text);
        }


        /* --- FOOTER --- */
        .main-footer {
            background: var(--dark-text);
            color: var(--light-lavender);
            padding: 60px 0;
            text-align: center;
        }
        .main-footer .social-links a {
            color: var(--light-lavender);
            margin: 0 15px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .main-footer .social-links a:hover {
            color: var(--accent-gold);
        }
        .main-footer p {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        .footer-nav {
            margin: 20px 0;
        }
        .footer-nav a {
            color: #ccc;
            margin: 0 10px;
            font-weight: 700;
        }
        .footer-nav a:hover {
            color: var(--light-text);
        }

        /* --- RESPONSIVE DESIGN --- */
        @media(max-width: 992px) {
            .quiz-intro-content, .social-impact-content {
                grid-template-columns: 1fr;
            }
            .quiz-logo-container {
                margin-bottom: 0px;
            }
        }
        @media(max-width: 768px) {
            .navbar { flex-direction: column; height: auto; padding: 20px 0; }
            .navbar .logo { margin-bottom: 15px; }
            .navbar .nav-links { flex-direction: column; align-items: center; width: 100%; }
            .navbar .nav-links li { margin: 10px 0; }

            .hero-content h1 { font-size: 3rem; }
            .hero-content .tagline { font-size: 1.3rem; }
            .section-title, .subsection-title { font-size: 2.2rem; }
        }


        .about_pargraph{
                font-family: "Poppins", sans-serif;
                margin: 0px;
        }
        .social-impact-text p{
              font-family: "Poppins", sans-serif;
        }
        .social-impact-text h2{
                 font-size: 30px;
    padding-bottom: 10px;
    font-weight: 600;
        }
          /* .section-title span{
             background: linear-gradient(to right, #c5a47e 0%, #4a148c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        } */

        .why_parner_bgcolor{
            background-color: #f7f9fc;
                padding: 100px 0;
        }
		
		.prizes_bgcolor{
            
                position: relative;
    padding: 100px 0 100px;

	background-color: var(--background-grey);
    
        }
        /*.prizes_bgcolor{
            background-image: url(./assets/images/bg-2.png);
                position: relative;
    padding: 100px 0 100px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    
        }*/
        .bg-overlay-black:after {
    content: "";
    position: absolute;
    background-color: black;
    opacity: .8;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
        z-index: -6;
}
.centered-text_white{
    color: #fff;
}
.why-us-card .icon i{
        width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background-color: var(--primary-purple); */
    color: #c5a47e;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    /* font-family: 'Montserrat'; */
    font-weight: 700;
    margin: 0 auto 20px auto;
    /* border: 4px solid #ffffff; */
    /* box-shadow: 0px 3.307px 3.318px rgba(0, 0, 0, 0.02), 0px 6.994px 8.206px rgba(0, 0, 0, 0.04), 0px 11.89px 16.44px rgba(0, 0, 0, 0.05), 10px 20.718px 33.619px rgba(0, 0, 0, 0.07), 10px 51px 94px rgba(0, 0, 0, 0.11); */
}





.about_bgcolor{
    padding: 100px 0px;
}




.btn-purple{
  
    color: #FFFFFF !important;
    padding: 20px 50px !important;
    text-decoration: none !important;
    color: var(--dark-text) !important;
    font-weight: 700 !important;
   font-size: 1.2rem !important;    
    transition: color 0.3s ease !important;
    position: relative !important;
    padding-bottom: 5px !important;
    background-color: #4a148c !important;
    color: #fff !important;
    height: 45px !important;
    border-radius: 50px !important;
    height: 65px !important;
}
.btn-purple:hover {
   background-color: #dab692 !important;
    color: #4a148c !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;    
}

.btn-gold{
        font-size: 1.2rem !important;
    padding: 20px 50px !important;
       transition: all 0.3s ease;   
    color: #FFFFFF !important;
    text-decoration: none !important;
    color: var(--dark-text) !important;
    font-weight: 700 !important;
  
    transition: color 0.3s ease !important;
    position: relative !important;
    padding-bottom: 5px !important;
       
background-color:#c5a47e !important;
    color: #4a148c !important;
   height: 65px !important;
    border-radius: 50px !important;  
}
.btn-gold:hover {
background-color: #dab692 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.process-step icon i{
    color: #4a148c;
}





.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), 
                transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-us-card_bgcolor .icon_icons_bgcoplor i{
    margin-top: -52px;
}
.why-us-card_bgcolor{
  height: 100%;
           transition: all 0.5s;
}
.why-us-card_bgcolor:hover {
    /* transform: translateY(-10px) !important; */
}
.why-choose-us-grid_top{
    margin-top:90px;
}

.page-label1{
    text-align: left;
}
.section-title1{
    text-align: left;
      font-size: 35px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 800;
 
}
.centered-text1{
        text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    font-family: "Poppins", sans-serif;
}
.page-label1{
    text-align: left;
    font-family: 'Montserrat';
    font-size: 1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* padding-top: 50px; */
    padding-bottom: 15px;
}
.social-impact-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about_icon_bgcolor{
    padding: 0px 0px 100px;
}

/* 


.our-team{
      text-align: center;
    margin-bottom: 100px;
    z-index: 1;
    position: relative;
    margin: 10px 10px 80px;
}
.our-team .pic{
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.our-team .pic:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .pic:after{ opacity: 1; }
.our-team .pic img{
    width: 100%;
    height: auto;
}
.our-team .social{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.our-team:hover .social{ opacity: 1; }
.our-team .social li{ display: inline-block; }
.our-team .social li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    font-size: 15px;
    color: #fff;
    margin-right: 10px;
    transition: all 0.5s ease 0s;
}
.our-team .social li a:hover{
    background: #fff;
    color: #000;
}
.our-team .team-content{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dotted #ddd;
    position: absolute;
    bottom: -70px;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease 0s;
}
.our-team:hover .team-content{ border: 2px dotted #4a148c; }
.our-team .team-info{
    width: 100%;
    color: #464646;
    position: absolute;
    bottom: 12px;
    left: 0;
}
.our-team .title{
    font-size: 20px;
    font-weight: 600;
    color: #464646;
    margin: 0 0 5px 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .title{ color: #4a148c; }
.our-team .post{
    display: block;
    font-size: 14px;
    color: #464646;
} */

.our_team_bgcolor{
    padding: 0px 0px 100px;
}

  .subsection-title {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            margin-top: 80px;
            margin-bottom: 60px;
            color: var(--primary-purple);
            position: relative;
        }
        .subsection-title::after {
            content: ''; display: block; width: 80px; height: 4px;
            background: var(--accent-gold); margin: 20px auto 0; border-radius: 2px;
        }

        /* --- Interactive Team Section Styles --- */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 40px;
        }

        .team-card {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
                padding: 0px 10px 0px;
        }

        .team-card-photo-wrapper {
            position: relative;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 50%;
            border: 5px solid var(--background-grey);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .team-card img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .team-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(74, 20, 140, 0.8); /* Primary Purple Overlay */
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .team-card-overlay a {
            color: white;
            font-size: 1.5rem;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-card:hover img {
            transform: scale(1.1);
        }

        .team-card:hover .team-card-overlay {
            opacity: 1;
        }

        .team-card:hover .team-card-overlay a {
            opacity: 1;
            transform: translateY(0);
        }

        .team-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            color: var(--primary-purple);
        }

        .team-card .title {
            color: var(--accent-gold);
            font-weight: 700;
        }

        /* --- Team Modal Styles --- */
        .team-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2000;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .team-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .team-modal-content {
            background: #fff;
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.4s ease;
            display: flex;
            gap: 40px;
        }

        .team-modal.active .team-modal-content {
            transform: scale(1);
        }
        
        .modal-photo {
            flex-basis: 300px;
            flex-shrink: 0;
        }

        .modal-photo img {
            width: 100%;
            border-radius: 10px;
        }
        
        .modal-info h2 {
            font-family: 'Montserrat';
            font-size: 2.2rem;
            color: var(--primary-purple);
        }

        .modal-info .title {
            font-size: 1.2rem;
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .modal-info .bio {
            line-height: 1.8;
            color: #555;
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close-btn:hover {
            color: var(--primary-purple);
        }
        
        @media(max-width: 768px) {
            .team-modal-content {
                flex-direction: column;
                padding: 30px;
            }
            .modal-photo {
                max-width: 200px;
                margin: 0 auto;
            }
        }















.counter{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 210px;
    min-height: 246px;
    padding: 25px 0 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.counter:after{
    content: '';
    background: linear-gradient(to right, #eff0f2, #fefefe);
    height: 152px;
    width: 152px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 5px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    top: 25px;
    left: 50%;
    z-index: -1;
}
.counter .counter-value{
       background: #4a148c;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    width: 100%;
    padding: 10px 0 6px;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6), 0 0 0 2px #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.counter .counter-icon{
       background: linear-gradient(to right, #4a148c, #7f42ca);
    font-size: 30px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
}
.counter h3{
   color: #4a148c;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 22px;
    padding: 0 30px;
    margin: 0 0 15px;
}
.counter.green .counter-value{ background: #01c700; }
.counter.green .counter-icon{ background: linear-gradient(to right,#01c700,#019b01); }
.counter.green h3{ color: #019b01; }
.counter.blue .counter-value{ background: #28a9e2; }
.counter.blue .counter-icon{ background: linear-gradient(to right,#28a9e2,#0057c5); }
.counter.blue h3{ color: #0057c5; }
.counter.gray .counter-value{ background: #36474f; }
.counter.gray .counter-icon{ background: linear-gradient(to right,#36474f,#0d0e10); }
.counter.gray h3{ color: #0d0e10; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
}  

.counter_bgcolor{
    padding: 100px 0px;
}
.clinet_logo img {
    padding: 6px;
    border-radius: 10px;
}














.footer {
  padding: 60px 0px 40px;
  background-color: #f7f9fc;
}
.footer_description > img {
    padding: 8px 8px 8px 8px;
    background-color: #f7f9fc;
    margin-bottom: 15px;
    border-radius: 3px;
    width: 45% !important;
}
.footer_description p {
    font-size: 14px;
    text-align: justify;
    font-family: "Poppins", sans-serif;
    color: #4a148c;
}
.footer_list .footer-title {
    margin: 0px;
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    padding: 0px 0px 20px;
    color: #f7f9fc;
}
.menu-footer ul {
    margin: 0px;
    padding: 0px;
}
.menu-footer ul li {
    list-style: none;
    color: #fff;
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin-bottom: 10px;
}
.menu-footer ul li a {
    color: #fff !important;
}
.footer_list .footer-title {
    margin: 0px;
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    padding: 0px 0px 20px;
    color: #4a148c;
}
.menu-footer ul {
    margin: 0px;
    padding: 0px;
}
.menu-footer ul li {
    list-style: none;
    color: #fff;
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin-bottom: 10px;
}
.menu-footer ul li a {
    color: #4a148c !important;
}
.menu-footer ul li a img {
    width: 62%;
}
.menu-footer ul li a {
    color: #4a148c !important;
}
.menu-footer ul a span {
    margin-left: 10px;
    color: #4a148c;
}










.social-menu ul{
       /* position: absolute; */
    /* top: 50%; */
    /* left: 50%
127.5px
; */
    padding: 0;
    margin: 0;
    /* transform: translate(-50%, -50%); */
    display: flex
;
}

.social-menu ul li {
    list-style: none;
    margin: 0 15px 0px 0px;
}

.social-menu ul li .fab{
       font-size: 20px;
    line-height: 40px;
    transition: .3s;
    color: #000;
}


.social-menu ul li .fab:hover{
    color: #fff;
}

.social-menu ul li a{
       position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0, 0, 0, .5);
}

.social-menu ul li a:hover{
    transform: translate(0, -10%);
}

.social-menu ul li:nth-child(1) a:hover{
       background-color: rgb(39 135 221 / 83%);
}
.social-menu ul li:nth-child(2) a:hover{
    background-color: #E4405F;
}
.social-menu ul li:nth-child(3) a:hover{
    background-color: #FF0000
;
}
.social-menu ul li:nth-child(4) a:hover{
      background-color: #21d34f;
}
.copy_bgcolor {
    background-color: #fff !important;
    padding: 15px;
}
.cpoyright_text h2 {
    text-align: center;
    font-size: 15px;
    color: #000;
    margin: 0px;
    font-weight: 500;
}
.cpoyright_text h2 a {
    text-decoration: underline;
    color: #000;
}
.confirmation-group_top{
    margin-top: 30px;
}
.submit-btn-container .submit-btn_bgcolor{
       background-color: #4a148c !important;
    color: #fff !important;
}
.submit-btn-container .submit-btn_bgcolor:hover{
       background-color: #000 !important;
    color: #fff !important;
}

.otp-group .btn-purple{
      font-size: 12px !important;
}


















/* Header styling */
.header_responsive_fix {
   background-color: #fff;
  color: white;
  /* padding: 15px 20px; */
 display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  z-index: 2;
  display: flex;
}

/* Hamburger Menu Icon */
.hamburger-menu {
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    box-sizing: content-box; /* Include padding in element's total width and height */
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
       background-color: #000000;
    transition: all 0.3s ease;
}

/* Sidebar (Off-canvas menu) */
.sidebar {
   height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  box-sizing: border-box;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li a {
   padding: 15px 25px;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  display: block;
  transition: 0.3s;
  font-weight: 500;
}

.sidebar li a:hover {
    color: #f1f1f1;
    background-color: #575757;
}

/* Close Button */
.close-button {
   position: absolute;
  top: 0px;
  left: 25px;
  font-size: 45px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.close-button:hover {
    color: #f1f1f1;
}

/* Dropdown Styles */
.dropdown .dropbtn {
    position: relative;
}

.dropdown-content {
    display: none;
    background-color: #222;
    min-width: 100%; /* Take full width of parent list item */
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 25px; /* Adjust padding to match parent links */
    text-decoration: none;
    display: block;
    font-size: 18px; /* Slightly smaller for sub-items */
}

.dropdown-content a:hover {
    background-color: #444;
}

/* Show the dropdown menu when hovering over the dropdown button */
.dropdown.active .dropdown-content {
    display: block;
}



.flex_flex{
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 12px;
}


.flex_flex a{
    font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 800;
  color: var(--primary-purple);
  text-decoration: none;
}

  .accordion {
         width: 100%;
        margin: 0 auto;
      }

      .accordion input {
        display: none;
      }

      .accordion-item {
        position: relative;
      }

      .accordion-header {
       width: 100%;
  height: 50px;
  line-height: 50px;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #cecece;
  color: #fff;
  background-color: #4a148c;
  font-weight: 600;
      }

      .accordion-text {
        width: 100%;
        font-size: 11pt;
        color: #555555;
        display: block;
        height: 0;
        overflow: hidden;
        opacity: 0;
        position: relative;
        top: -10px;
      }

      .accordion-text p {
        padding: 10px 30px;
        line-height: 1.68em;
        font-family: "Poppins", sans-serif;
      }

      .closing {
        position: absolute;
        height: 50px;
        width: 100%;
        top: 0;
        left: 0;
        cursor: pointer;
        display: none;
      }

      .inputfeild:checked + .accordion-item {
        height: auto;
      }

      .inputfeild:checked + .accordion-item .accordion-text,
      .inputfeild:checked + .accordion-item .closing {
        display: block;
      }

      .inputfeild:checked + .accordion-item .accordion-text {
        height: auto;
        opacity: 1;
        top: 0;
      }

      .dropdown-arrows .accordion-header {
        padding: 0 0 0 30px;
      }

      .dropdown-arrows .accordion-header:before {
        position: absolute;
        display: block;
        content: "\203a";
        font-size: 18pt;
        left: 12px;
        top: -2px;
       color: #fff;
      }

      .inputfeild:checked + .accordion-item .accordion-header:before {
        transform: rotate(90deg);
        top: 1px;
      }

@media screen and (min-width: 992px) {
.header_responsive{
      display: none;
}
.flex_flex{
    display: none;
}
}

@media screen and (max-width: 992px) {
    .btn-gold {
  font-size: 1.2rem !important;
  padding: 13px 30px !important;
    padding-bottom: 13px;
  color: #FFFFFF !important;
  text-decoration: none !important;
  color: var(--dark-text) !important;
  font-weight: 700 !important;
  transition: color 0.3s ease !important;
  position: relative !important;
  padding-bottom: 5px !important;
  background-color: #c5a47e !important;
  color: #4a148c !important;
  height: 56px !important;
  border-radius: 50px !important;
}


.main-header{
    display: none;
}
.card-link + .card-link {
  margin-left: 0px !important;
}
.section-title, .subsection-title {
 
  line-height: 45px !important;
}
.btn-gold_top{
    margin-top: 50px;
}
.btn-purple {
height: 83px !important;
    font-size: 1.2rem !important;
    padding: 13px 24px !important;
    font-size: 1.2rem !important;
  
}
.service-category h3 {
  font-size: 20px !important;
 
}
  .section-title, .subsection-title {
    font-size: 30px !important;
  }
  .why-us-card_bgcolor_top{
    margin-top: 40px;
  }
  .page-label1_top{
    margin-top: 60px;
  }
  .section-title1 {
 
  font-size: 30px !important;
 
}
.centered-text1 {

  margin-bottom: 0px !important;
  
}
.social-impact-image_top{
    margin-top: 40px;
}
 .counter {
    margin-bottom: 0px;
  }
  .counter_top{
    margin-top: 50px;
  }
  .page-divider {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(74, 20, 140, 0.5), rgba(0, 0, 0, 0));
  margin: 0px 0 30px !important;
}
 .respon_font_size {
    font-size: 11px !important;
    padding: 14px 0px 14px !important;
  }
  .submit-btn-container {
  text-align: center;
  margin-top: 15px;
}
.our-team .title {
  font-size: 17px;
 
}
.our-team .post {
  display: block;
  font-size: 10px;
  color: #464646;
}
.sidebar li a {
  padding: 8px 25px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  display: block;
  transition: 0.3s;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}
.footer_list{
    margin-top: 30px;
}
}

.faq_bgcolor{
    padding: 100px 0px;
}



.section_service_bgcolor{
    padding: 100px 0px 60px;
}


.login_top{
 margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  font-weight: 500;
  margin-bottom: 0px;  
  color: #000;
}
.loging_href{
   font-weight: 600;
  color: #4a148c;
}








.cards-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card Link and Structure */
.card-link {
    text-decoration: none;
    color: inherit;
}

.card {
    background-color: #fff;
    width: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

/* Image with Zoom Effect */
.img-container {
    position: relative;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease; /* Smooth transition for zoom */
}

.card:hover .img-container img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Date Block */
.date-block {
    position: absolute;
    top: 20px;
    left: 0;
   background-color: #4a148c;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
}

.date-block .day {
    display: block;
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
}

.date-block .month {
    display: block;
    font-size: 0.8em;
    font-weight: bold;
}

/* Card Content */
.card-content {
    padding: 20px;
}

.meta-info {
    display: flex;
    gap: 15px;
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
}

.meta-info .author::before,
.meta-info .comments::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.meta-info .author::before {
    /* Replace with an image or font icon for user */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23888"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
}

.meta-info .comments::before {
    /* Replace with an image or font icon for comments */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23888"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"/></svg>');
}

.card-title {
    font-size: 1.2em;
    font-weight: bold;
 font-family: "Poppins", sans-serif;
  padding: 10px 0px 17px;
  margin: 0px;
}

.read-more {
      display: flex
;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #c5a47e;
    background-color: #c5a47e;
    color: #4a148c;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* .read-more::after {
    content: '>';
    font-size: 1.2em;
    transition: transform 0.3s ease;
} */

.card:hover .read-more {
    background-color: #fff;
    color: #000;
}

.card:hover .read-more::after {
    transform: translateX(5px);
}
.blog_bgcolor{
    padding: 100px 0px 0px;
}










.video_sec video{
    width: 100%;
    /* padding: 100px 0px 0px; */
}

.subsection-title_small{
   font-size: 37px;
  
        text-align: center;
   
    margin-bottom: 60px;
    position: relative;
   font-weight: 600;
}
.subsection-title_small:after{
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}




    .service-category_top{
        margin-top: 50px;
    }


    .our_client_logo_top{
        margin-top: 30px;
    }


    .video_firt_bgcolor{
        padding: 100px 0px 0px;
    }
    .respon_font_size_seond_bgcolor{
        
    transform: translateY(0px);
    padding: 16px !important;
    height: 60px !important;
    }







    .progress-wrap {
 right: 25px;
    bottom: 25px;
    color: #ffffff;
    position: fixed;
    right: 50px;
    bottom: 50px;
    background-color: #4a148c;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px white;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}
.progress-wrap input {
  z-index: 10001;
}
.progress-wrap input:checked + html {
  -ms-scroll-snap-type: unset;
      scroll-snap-type: unset;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  
    color: #ffffff;
  left: 0;
  top: -2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap::before {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  -webkit-text-fill-color: #c5a47e;
  left: 0;
  top: -2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #c5a47e;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}