/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #8CA9AE;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff; 
    padding: 15px 50px;
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav .logo img {
    height: 120px;             
    width: auto;
    object-fit: contain;    
    margin-top: 5px;          
}


nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin-top: 30px;
    margin-left: 50px;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #003235;  
    font-weight: 600;
}

nav ul li a:hover {
    color: #AEDFF2;   
}

.login-btn {
    padding: 8px 20px;
    background: #0E4D53; 
    color: white;
    border-radius: 25px;
    cursor: pointer;
}
/* HERO SECTION */

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* Full-width image */
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; 
    display: block;
}

/* Soft overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);  
    z-index: 1;
}

/* Text styling */
.hero-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 550px;
    color: #0A3A47;      
}

/* Title */
.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Paragraph */
.hero-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #063641;    
}

/* Button */
.join-btn {
    padding: 12px 30px;
    background: #0E4D53;  
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}



/* ABOUT SECTION (FIXED) */


.about-section {
    background: white;
    padding: 50px 60px 40px;
    text-align: center;
    margin-bottom: 0;   
    
}


.about-section h2 {
    font-size: 38px;
    font-weight: 800;       
    color: #0E4D53;         
    margin-bottom: 35px;    
    letter-spacing: 1px;
}

/* Wrapper */
.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;      
}

/* Image section */
.hands-img img {
    width: 100%;
    max-width: 460px;      
    border-radius: 10px;
    display: block;

}

/* Right text */
.about-right {
    width: 50%;
    text-align: left;
    font-size: 18px;
    line-height: 1.65;
    color: #1a1a1a;
    background: #ccddf6;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.08);

}

.view-btn {
    margin-top: 25px;
    padding: 12px 32px;
    
    color: white;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    background: #0E4D53;
}
.view-btn:hover {
    box-shadow: 0 10px 20px rgba(26,115,232,0.35);
    transform: translateY(-3px);
    transition: 0.3s;
}


/* Responsive Fix */
@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-right {
        text-align: center;
        width: 100%;
    }

    .hands-img img {
        margin: 0 auto;
        width: 70%;
    }
}
/* WHY AASRA – NEW DESIGN */
.why-aasra {
    background: #ccddf6;
    padding: 60px 50px;
    color: white;
    text-align: center;
}

.why-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0E4D53;
}

.why-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
    color: #0E4D53;
}

/* Grid layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards */
.why-card {
    background: white;
    color: #0E4D53;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

/* Card hover effect */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.22);
}

/* Icons */
.why-card i {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1A73E8;
}

/* Heading */
.why-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Para */
.why-card p {
    font-size: 16px;
    line-height: 1.6;
}



/* Toggle button */
.why-btn-toggle {
    margin-top: 40px;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    background: #0E4D53;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.why-btn-toggle:hover {
    background: #094048;
}

.extra-card {
    display: none;
}
.extra-card.show {
    display: block;
    animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
    from {opacity: 0; transform: translateY(15px);}
    to {opacity: 1; transform: translateY(0);}
}


/* BLOG SECTION */
.blogs-section {
    background: white;
    padding: 60px 50px;
    text-align: center;
}

.blogs-title {
    font-size: 42px;
    font-weight: 800;
    color: #0E4D53;
    margin-bottom: 40px;
}

.blogs-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.blog-card {
    background: #ccddf6;
    width: 48%;
    max-width: 520px;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto 25px auto;
}

.blog-text {
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.65;
    text-align: left;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .blogs-container {
        flex-direction: column;
        align-items: center;
    }

    .blog-card {
        width: 100%;
        max-width: 500px;
    }

    .blog-img {
        width: 150px;
        height: 150px;
    }
}
/* JOIN AASRA SECTION */
.join-section {
    background: #ffffff;          /* WHITE BACKGROUND */
    padding: 10px 10px;
}

.join-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #0E4D53;
    margin-bottom: 50px;
}

/* Flex Container */
.join-wrapper {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
}

/* LEFT IMAGE */
.join-left {
    width: 45%;
    text-align: center;
}

.join-img {
    width: 85%;
    max-width: 380px;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);   /* Added shadow */
}

/* RIGHT TEXT BOX */
.join-right {
    width: 55%;
}

.join-text-card {
    background: #ffffff;                     /* WHITE CARD */
    padding: 35px 40px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.join-text-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0E4D53;
    margin-bottom: 15px;
}

.join-text-card p {
    font-size: 17px;
    line-height: 1.75;
    color: #063641;
    margin-bottom: 25px;
}

/* BUTTON */
.join-btn-main {
    display: inline-block;
    background: #0E4D53;
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.join-btn-main:hover {
    background: #093d45;
}


/* APP BOX */
.app-box {
    background: #093d45;               /* BLUE CARD */
    padding: 35px 40px;
    margin: 60px auto 0 auto;
    max-width: 900px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.app-box h3 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.app-box p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 22px;
}

.app-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.app-btn {
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 10px;
    color: #0E4D53;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

.app-btn:hover {
    background: #093d45;
}


/* RESPONSIVE */
@media (max-width: 900px) {

    .join-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .join-left, .join-right {
        width: 100%;
    }

    .join-img {
        max-width: 260px;
    }

    .join-text-card {
        text-align: center;
    }
}
/* CONTACT SECTION */
.contact-section {
    background: #ccddf6;       /* Light blue background */
    padding: 50px 0;
    color: #063641;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* 3 COLUMNS */
.contact-left,
.contact-center,
.contact-right {
    width: 30%;
}

/* HEADINGS */
.contact-left h3,
.contact-center h3,
.contact-right h3 {
    font-size: 22px;
    color: #0E4D53;
    margin-bottom: 12px;
}

/* TEXT */
.contact-left p,
.contact-center p,
.contact-right a {
    font-size: 15px;
    line-height: 1.5;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 12px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    background: #0E4D53;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social-icons a:hover {
    background: #094048;
}

/* RIGHT LINKS */
.contact-right a {
    display: block;
    color: #063641;
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-right a:hover {
    color: #0E4D53;
}

/* VERTICAL LINES */
.vertical-line {
    width: 1px;
    background: rgba(0,0,0,0.25);
    height: 160px;     /* Shorter height to save space */
    margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .vertical-line {
        display: none;
    }

    .contact-left,
    .contact-center,
    .contact-right {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
}
