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

body {
    font-family: "Exo 2", sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #0f2027 5%, #2c5364 50%, #f9d423 100%);
    min-height: 100vh;
    background-attachment: fixed;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 5px 0;
}

.logo-icon {
    height: 70px;
    width: auto;
    margin-bottom: 2px;
}

.nav-menu { 
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3382b0;
}

.menu-toggle { 
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001; 
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}


.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.main-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 90px 20px 20px 20px;
    color: #ffffff;
}

.main-section-heading {
    font-family: "Exo 2", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-section-subheading {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.main-section-button {
    display: inline-block;
    font-family: "Exo 2", sans-serif;
    background-color: #3382b0;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.main-section-button:hover {
    background-color: #2a7097;
    transform: translateY(-2px);
}

.main-section-button:active {
    transform: translateY(0px);
}


.awareness-section {
    padding: 60px 20px;
    background-color: rgba(0,0,0,0.1); 
}

.section-heading {
    font-family: "Exo 2", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.awareness-cards-container {
    display: flex;
    justify-content: space-around; 
    align-items: stretch; 
    flex-wrap: wrap;      
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.awareness-card {
    background-color: #1d4c56;
    border-radius: 15px;
    padding: 30px 25px;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: calc(33.333% - 20px);
    min-width: 280px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.awareness-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}

.card-icon {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.card-subheading {
    font-family: "Exo 2", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.card-body-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}



body.mobile-view .navbar {
    height: 60px; 
    padding-top: 0.3rem; 
}

body.mobile-view .navbar-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

body.mobile-view .logo-link {
    transform: scale(0.9); 
    padding: 2px 0;
}
body.mobile-view .logo-icon {
    height: 50px; 
}

body.mobile-view .menu-toggle {
    display: block; 
}

body.mobile-view .nav-menu { 
    display: none; 
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px; 
    left: 0;
    background-color: rgba(30, 60, 72, 0.95); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem; 
    z-index: 999; 
}

body.mobile-view .nav-menu.active {
    display: flex; 
}

body.mobile-view .nav-menu li {
    margin: 0; 
    width: 100%;
}

body.mobile-view .nav-menu .nav-link {
    padding: 1rem;
    display: block; 
    text-align: center;
    width: 100%;
    border-radius: 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}
body.mobile-view .nav-menu li:last-child .nav-link {
    border-bottom: none;
}



body.mobile-view .main-section {
    padding-top: 80px; 
    min-height: calc(100vh - 60px); 
}

body.mobile-view .main-section-heading {
    font-size: 2.2rem;
}

body.mobile-view .main-section-subheading {
    font-size: 1rem;
    max-width: 90%;
}

body.mobile-view .main-section-button {
    font-size: 1rem;
    padding: 12px 30px;
}


body.mobile-view .section-heading { 
    font-size: 2rem;
    margin-bottom: 30px;
}

body.mobile-view .awareness-cards-container {
    flex-direction: column; 
    align-items: center;    
    gap: 25px;              
}

body.mobile-view .awareness-card {
    flex-basis: auto;      
    width: 90%;             
    max-width: 400px;       
    padding: 25px 20px;
}

body.mobile-view .awareness-card:hover {
    transform: translateY(-5px); 
}

body.mobile-view .card-icon {
    height: 50px;
    margin-bottom: 20px;
}

body.mobile-view .card-subheading {
    font-size: 1.3rem;
}

body.mobile-view .card-body-text {
    font-size: 0.9rem;
}


.navbar.navbar--mobile .nav-menu {
    display: none;
    flex-direction: column;
    top: 70px; 
}

.navbar.navbar--mobile .nav-menu.active {
    display: flex;
}

.navbar.navbar--mobile .nav-menu li {
    margin: 0;
    width: 100%;
}

.navbar.navbar--mobile .nav-menu .nav-link {
    padding: 1rem;
    display: block;
    text-align: center;
}

.navbar.navbar--mobile .logo-link {
    transform: scale(0.9);
}
.navbar.navbar--mobile .logo-icon {
    height: 25px; 
}
.navbar.navbar--mobile .logo-text { 
    font-size: 0.7rem;
}

.navbar.navbar--mobile .menu-toggle {
    display: block; 
}

.offer-section {
    padding: 80px 20px; 
}

.offer-container {
    max-width: 1100px; 
    margin: 0 auto;    
    background-color: #1d4c56; 
    border-radius: 20px; 
    padding: 40px 50px;   
    display: flex;
    align-items: center; 
    gap: 40px;          
    color: #e0e0e0;     
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.offer-text-content {
    flex: 1 1 55%; 
}

.offer-heading {
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem; 
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.offer-list {
    list-style: disc; 
    padding-left: 25px; 
    margin-bottom: 35px;
}

.offer-list li {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;   
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e0e0e0; 
}

.offer-list li strong {
    font-weight: 600; 
    color: #ffffff; 
}

.offer-image-content {
    flex: 1 1 45%; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px; 
    object-fit: cover; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.offer-image-content:hover .offer-image {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-button {
    margin-top: 10px; 
}

body.mobile-view .offer-section {
    padding: 40px 15px;
}

body.mobile-view .offer-container {
    flex-direction: column; 
    padding: 30px 25px;
    gap: 30px;
}

body.mobile-view .offer-text-content {
    flex-basis: auto; 
    order: 2; 
    text-align: left; 
}

body.mobile-view .offer-image-content {
    flex-basis: auto; 
    order: 1; 
    width: 100%; 
    margin-bottom: 10px; 
}
body.mobile-view .offer-image {
    max-width: 90%; 
    margin: 0 auto; 
}


body.mobile-view .offer-heading {
    font-size: 2rem;
    text-align: center; 
    margin-bottom: 20px;
}

body.mobile-view .offer-list {
    padding-left: 20px; 
    margin-bottom: 25px;
}

body.mobile-view .offer-list li {
    font-size: 0.95rem;
}

body.mobile-view .offer-button {
    display: block; 
    width: fit-content; 
    margin: 0 auto; 
    padding: 12px 30px;
    font-size: 1rem;
}

.site-footer {
    background-color: #1d4c56; 
    color: #e0e0e0; 
    padding: 50px 20px 30px 20px;
    font-family: "Roboto", sans-serif;
}

.footer-content-wrapper {
    max-width: 1100px; 
    margin: 0 auto;
}

.footer-main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about {
    flex: 0 1 400px; 
}

.footer-logo-link {
    display: flex;
    align-items: center; 
    gap: 12px; 
    text-decoration: none;
    color: #ffffff; 
    margin-bottom: 15px;
}

.footer-logo-icon {
    height: 50px; 
    width: auto;
}

.footer-logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-name {
    font-family: "Exo 2", sans-serif;
    font-size: 1.8rem; 
    font-weight: 700;
    color: #ffffff; 
    margin: 0;
    line-height: 1.1;
}

.footer-logo-sparkle {
    font-family: "Exo 2", sans-serif;
    color: #f9d423; 
    font-size: 1.5rem; 
    line-height: 1;
    margin-top: -3px; 
}

.footer-description {
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #c0c0c0; 
    margin-bottom: 15px;
}

.footer-contact-email {
    font-family: "Roboto", sans-serif;
    font-weight: bold;   
    color: #ffffff;       
    text-decoration: none; 
    transition: color 0.3s ease;
}

.footer-contact-email:hover {
    color: #3382b0; 
    text-decoration: underline; 
}

.footer-nav {
    flex: 1 1 auto; 
    display: flex;
    justify-content: flex-end; 
    padding-top: 5px; 
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
}

.footer-nav-list li {
    margin-bottom: 12px; 
}

.footer-nav-list li:last-child {
    margin-bottom: 0;
}

.footer-nav-link {
    font-family: "Exo 2", sans-serif;
    text-decoration: none;
    color: #e0e0e0;    
    font-size: 0.95rem; 
    font-weight: 500;   
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #3382b0; 
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15); 
    margin: 25px 0;
}

.footer-copyright {
    font-family: "Exo 2", sans-serif;
    text-align: center;
    font-size: 0.85rem;
    color: #b0b0b0; 
}


body.mobile-view .site-footer {
    padding: 40px 15px 25px 15px;
}

body.mobile-view .footer-main-content {
    flex-direction: column; 
    align-items: center;   
    text-align: center;    
    gap: 30px;             
}

body.mobile-view .footer-about {
    flex-basis: auto; 
    width: 100%;      
    max-width: 350px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

body.mobile-view .footer-logo-link {
    flex-direction: column; 
    gap: 8px;
    margin-bottom: 10px;
}

body.mobile-view .footer-logo-text-group {
    align-items: center;
} 

body.mobile-view .footer-description {
    font-size: 0.85rem;
    margin-top: 5px;
    margin-bottom: 10px;
}

body.mobile-view .footer-contact {
    font-size: 0.85rem; 
}

body.mobile-view .footer-nav {
    width: 100%; 
    justify-content: center; 
    padding-top: 0; 
}

body.mobile-view .footer-nav-list {
    align-items: center; 
}

body.mobile-view .footer-nav-link {
    font-size: 0.9rem;
    padding: 6px 0; 
}

body.mobile-view .footer-copyright {
    font-size: 0.8rem;
}