body, html {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    height: 100%;
    background-color: #ffffff;
}

p{
    font-family: sans-serif;
}

.container {
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo {
    width: 150px; /* Increased logo size */
    height: auto; /* Maintain aspect ratio */
}

.contribute-btn {
    padding: 10px 20px;
    border: 2px solid #000;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contribute-btn:hover {
    background-color: #f0f0f0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}

.woman-illustration {
    width: 100%;
    max-width: 250px; /* Slightly larger woman image */
    height: auto;
    margin: 0;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 5vw; /* Use responsive font size */
    line-height: 1.1;
    margin-bottom: 0;
    font-weight: 700;
}

.highlight {
    color: #FF69B4;
}

.ai-highlight {
    color: #4A90E2;
}

.flower {
    width: auto;
    height: 180px;
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 5.5vw; /* Responsive for large screens */
    }
}

@media (max-width: 800px) {
    h1 {
        font-size: 8vw; /* Adjust font size on smaller screens */
    }

    .logo {
        width: 120px; /* Smaller logo */
    }
}

@media (max-width: 500px) {
    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    h1 {
        font-size: 10vw; /* Even larger for extra small screens */
        margin-bottom: 20px;
    }

    .flower {
        width: 80px; /* Smaller flower size on mobile */
        height: 80px;
        right: 0; /* Align the flower image closer to the text */
        top: auto;
        transform: translateY(0);
    }

    .woman-illustration {
        max-width: 220px; /* Adjust woman image for mobile */
    }
}

/* Button Styles */
.button-icon {
    display: flex;
    border: 3px #323232 solid;
    width: fit-content;
    height: fit-content;
    cursor: pointer;
    margin-top: 20px;
}

.icon {
    background-color: #fdfdfd;
    padding: 10px;
}

.icon svg {
    width: 25px;
    height: 25px;
}

.cube {
    transition: all 0.4s;
    transform-style: preserve-3d;
    width: 200px;
    height: 20px;
}

.button-icon:hover {
    border-color: #4A90E2;
}

.button-icon:hover .cube {
    transform: rotateX(90deg);
}

.side {
    position: absolute;
    height: 47px;
    width: 200px;
    display: flex;
    font-size: 0.8em;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.top {
    background: #4A90E2;
    color: #fff;
    transform: rotateX(-90deg) translate3d(0, 13.5px, 2em);
}

.front {
    background: #222229;
    color: #fff;
    transform: translate3d(0, 0, 1em);
}


/* aboutcss */

.abt-container {
    max-width: 1200px;
    margin: 50px auto; /* Added margin from top */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.abt-content {
    flex: 1;
    padding-right: 20px;
}

.abt-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.abt-text {
    font-size: 1.5rem;
    line-height: 1.6;
}

.abt-highlight-pink {
    color: #FF69B4;
}

.abt-highlight-blue {
    color: #4169E1;
}

.abt-image {
    flex: 0 0 40%;
    max-width: 400px;
}

.abt-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .abt-container {
        flex-direction: column;
    }

    .abt-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .abt-title {
        font-size: 3rem;
    }

    .abt-text {
        font-size: 1.2rem;
    }

    .abt-image {
        max-width: 100%;
    }
}


/* abtfreaturescss */
.abtf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.abtf-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.abtf-feature {
    display: flex;
    align-items: flex-start;
}

.abtf-feature-image {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-right: 20px;
}

.abtf-feature-content {
    flex: 1;
}

.abtf-feature-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #000000;
}

.abtf-feature-content p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0;
    color: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .abtf-feature-grid {
        grid-template-columns: 1fr;
    }

    .abtf-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .abtf-feature-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Specific positioning for the third feature */
.abtf-feature-grid .abtf-feature:nth-child(3) {
    grid-column: 1 / -1;
    justify-content: center;
}

@media (min-width: 769px) {
    .abtf-feature-grid .abtf-feature:nth-child(3) {
        max-width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* featurecss */
.ftr-container {
    width: 80%;
    margin: 0 auto;
}
h1 {
    font-size: 52px;
    font-weight: bold;
    margin-top: 50px;
}
.ftr-description {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin: 20px 0;
}
.ftr-features {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
}
.ftr-feature {
    width: 30%;
    margin-bottom: 30px;
}
.ftr-feature img {
    width: 120px;
    height: 120px;
}
.ftr-feature h3 {
    font-size: 26px;
    color: #ff69b4;
    margin-top: 20px;
}
.ftr-feature p {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .ftr-feature {
        width: 100%;
    }
}

/* contributors */
.cbtr-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}
.cbtr-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c5cc5;
    margin-bottom: 40px;
}
.cbtr-contributor {
    display: flex;
    align-items: center;
    border: 2px solid #2c5cc5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.cbtr-contributor img {
    border-radius: 8px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
}
.cbtr-contributor-info {
    text-align: left;
}
.cbtr-contributor-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5cc5;
    margin: 0;
}
.cbtr-contributor-info p {
    font-size: 16px;
    font-weight: 700;
    color: #2c5cc5;
    margin: 5px 0;
}
.cbtr-contributor-info a {
    font-size: 14px;
    color: #2c5cc5;
    text-decoration: none;
}
.cbtr-contributor-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cbtr-contributor-column {
    width: 48%;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .cbtr-contributor-column {
        width: 100%;
    }
    .cbtr-contributor-row {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        max-height: 600px;
    }
    .cbtr-contributor-row::-webkit-scrollbar {
        width: 8px;
    }
    .cbtr-contributor-row::-webkit-scrollbar-thumb {
        background-color: #2c5cc5;
        border-radius: 4px;
    }
    .cbtr-contributor-row::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }
    .cbtr-contributor-row > .cbtr-contributor-column {
        display: block;
    }
}

/* footer */
.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100vh;
    text-align: center;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

/* Left Section */
.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left h1 {
    font-size: 4rem;
    color: #333;
}

.footer-left p {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}

.footer-line-drawing {
    /* width: 90%; */
    margin-top: 30px;
}

/* Right Section */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.footer-right .footer-contribute-btn {
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.footer-right .footer-contribute-btn i {
    margin-right: 10px;
}

.footer-right h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: right;
}

.footer-right .footer-socials-list {
    font-size: 1.2rem;
    line-height: 2;
    color: #333;
    text-align: right;
}

.footer-reach-out {
    margin-top: 40px;
    font-size: 1.2rem;
    color: #333;
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer-left h1 {
        margin-top: 45%;
        font-size: 3rem;
        text-align: center;
    }

    .footer-left p {
        text-align: center;
    }

    .footer-line-drawing {
        /* width: 100%; */
        margin-top: 20px;
    }

    .footer-right h3 {
        font-size: 1.5rem;
    }

    .footer-reach-out {
        font-size: 1rem;
    }

    .footer-right {
        align-items: center;
    }

    .footer-right .footer-contribute-btn {
        justify-content: center;
    }

    .footer-right .footer-socials-list, .footer-reach-out {
        text-align: center;
        margin-bottom: 5%;
    }
}


/* missioncss */
.msn-vision-mission {
        position: relative;
        height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #000;
        background-color: #ffffff; /* White background */
        
        /* Background image */
        background-image: url('hndmisn.png');
        background-size: contain;
        background-position: right center;
        background-repeat: no-repeat;
        
        /* Transparent overlay effect */
        background-color: rgba(255, 255, 255, 0.1);
        background-blend-mode: overlay;
        box-sizing: border-box; /* Consistent padding/margins */
    }

    .msn-content {
        max-width: 800px;
        width: 100%;
    }

    .msn-title {
        font-size: 4em;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .msn-text {
        font-size: 1.5em;
        line-height: 1.6;
        padding: 0 20px;
    }

    .msn-highlight-blue {
        color: #007bff;
    }

    .msn-highlight-pink {
        color: #ff69b4;
    }

/* Media Queries for Responsiveness */

/* For devices with a max width of 1200px (large tablets/desktops) */
@media (max-width: 1200px) {
.msn-title {
font-size: 3em;
}
.msn-text {
font-size: 1.4em;
}
}

/* For devices with a max width of 768px (tablets) */
@media (max-width: 768px) {
.msn-vision-mission {
height: auto; /* Adjust the height for smaller screens */
background-position: center top; /* Move background image to the top */
}
.msn-title {
font-size: 2.5em;
}
.msn-text {
font-size: 1.3em;
}
}

/* For devices with a max width of 480px (phones) */
@media (max-width: 480px) {
.msn-vision-mission {
flex-direction: column;
padding: 20px; /* Adds padding to prevent content from touching screen edges */
background-size: cover; /* Ensure background scales on smaller screens */
background-position: top; /* Adjust image position */
}
.msn-title {
font-size: 2.5em;
}
.msn-text {
font-size: 1.2em;
}
}


/* contibutetocss */

.contro-vision-mission {
position: relative;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 40px;
box-sizing: border-box;
color: #000;
background-color: #ffffff; /* White background */

/* Background image */
background-image: url('hrthand.png');
background-size: contain;
background-position: left center;
background-repeat: no-repeat;

/* Transparent overlay effect */
background-color: rgba(255, 255, 255, 0.2);
background-blend-mode: overlay;
}

.contro-content {
max-width: 800px;
width: 100%;
}

.contro-title {
font-size: 4em;
margin-bottom: 20px;
font-weight: bold;
}

.contro-text {
font-size: 1.5em;
line-height: 1.6;
}

.contro-highlight-blue {
color: #007bff;
}

.contro-highlight-pink {
color: #ff69b4;
}

/* Media Queries for Responsiveness */

/* For devices with a max width of 1200px (large tablets/desktops) */
@media (max-width: 1200px) {
.contro-title {
font-size: 2.5em;
}
.contro-text {
font-size: 1.3em;
}
}

/* For devices with a max width of 768px (tablets) */
@media (max-width: 768px) {
.contro-vision-mission {
height: auto; /* Adjust the height for smaller screens */
background-position: center top; /* Adjust the background image position */
}
.contro-title {
font-size: 2.5em;
}
.contro-text {
font-size: 1.3em;
}
}

/* For devices with a max width of 480px (phones) */
@media (max-width: 480px) {
.contro-vision-mission {
flex-direction: column;
padding: 20px; /* Adds padding to avoid content touching the screen edges */
background-size: cover; /* Ensure background scales properly on smaller screens */
background-position: top; /* Adjust background image position */
}
.contro-title {
font-size: 2.5em;
}
.contro-text {
font-size: 1.3em;
}
}


/* learnmorebuttonabtsec */

.button {
padding: 15px 20px;
border: none;
outline: none;
background-color: #151515;
color: #eee;
border-radius: 7px;
font-weight: 600;
cursor: pointer;
transition: all 0.25s ease-out;
}

.button:hover {
transform: translateY(-3px);
}

.button-span {
color: #aaa;
}



.vdo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.vdo-container {
    width: 80%;
    max-width: 800px;
    padding: 20px;
    background-color: #f9e6ff;
    border-radius: 20px;
    box-shadow: 10px 10px 20px #a0c4ff;
}

.vdo-video-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
}

.vdo-video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.vdo-footer {
    margin-top: 20px;
    padding: 10px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vdo-footer a {
    text-decoration: none;
    color: black;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
}

.vdo-footer a i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .vdo-container {
        width: 90%;
        padding: 15px;
    }

    .vdo-footer {
        padding: 15px;
    }

    .vdo-footer a {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .vdo-container {
        width: 95%;
        padding: 10px;
    }

    .vdo-footer {
        padding: 10px;
    }

    .vdo-footer a {
        font-size: 1em;
    }
}