@charset "utf-8";
/* CSS Document */

/*
Framework by Andy Shearouse
*/
html, body{
    margin:0px !important;
    padding:0px !important;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}
a{
    color:#070d5c;
}

img{
    max-width:100% !important;	
}

.rounded-corners{
    border-radius:18px;
    width: 100%;
}

.testimonial{
    background-color:#c5ccd7;
    padding:2% 4%;
    font-size:22px;
    border-radius:8px;
    margin:4% 2%;
}

.byline{
    color:#c2113a;
    font-weight:bold;
    font-size:18px;
}

.container{
    max-width:2400px;
    width:100%;
    margin:0 auto;
    position:relative;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.member-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  line-height: 1.4;
}

.member-card strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 6px;
}

.member-card a {
  color: #0066cc;
  text-decoration: none;
}

.member-card a:hover {
  text-decoration: underline;
}

.header{
    width: 100%;
    background: white;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px 50px;
}

.logo {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    gap: 25px;
}

.logo img {
    width: 600px;
    height: auto;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 18px;
}

.social-icons a {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: rgb(2, 41, 80);
}

.icon-img {
    width: 25px;
    height: 26px;
}

/*Use the following for top drop-down nav
Change the background-color in #nav to change the color of the navigation bar
Change the background-color in #nav ul li ul to change the background color of the dropdown menus
These values do also need to be changed further down, in the 600px, 400px, and 300px wide sections
*/
/* -------------------- Start Navigation -------------------- */
#nav{
    width: 100%;
    z-index:10;
    position:relative;
    float:left;
    font-size:18px;
    margin-bottom:0px;
    margin-top: 0px;
    padding: 25px 0;
    background-color: rgb(8, 12, 91);
}

#nav > a{
    display: none;
}

#nav li{
    position: relative;
    list-style-position:inside;
    list-style-type:none;
}
#nav li a{
    color: white;
    display: block;
    text-decoration:none;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

/* first level */

#nav > ul{
    text-align:center;
    padding-left:0px !important;
    margin-left:0px !important;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}
#nav > ul > li{
    margin:0px;
    padding:5px 15px;
    height: 100%;
    display:inline-block;
}
#nav > ul > li > a{
    height: 100%;
    text-align: center;
    color: white;
    font-size: 18px;
}
#nav > ul > li:not( :last-child ) > a{

}

#nav > ul > li:hover > a,
#nav > ul:not( :hover ) > li.active > a{
    background-color: #0a4b8c;
}

    /* second level */

#nav li ul{
    background-color:#ccc;
    display: none;
    position: absolute;
    top: 100%;
    margin-left:0 !important;
    padding-left:0 !important;
    width:170px;
    text-align:left;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
}
#nav li:hover ul{
    display: block;
    left: 0;
    right: 0;
}
#nav li:not( :first-child ):hover ul{
    left: -1px;
}
#nav li ul a{
    color:#000;
    padding: 0.75em; /* 15 (20) */
}
#nav li ul li a:hover,
#nav li ul:not( :hover ) li.active a
{
}
/* -------------------- End Navigation -------------------- */

.content{
    width:100%;
    display:inline-block;
    padding-bottom:20px;
}

.grid-two-thirds-one-third{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns:2fr 1fr;
    grid-template-columns:2fr 1fr;
}

.grid-three-fourths-one-fourth{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns:3fr 1fr;
    grid-template-columns:3fr 1fr;
}

.grid-one-fourth-three-fourths{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns:1fr 3fr;
    grid-template-columns:1fr 3fr;
}

.grid-three-fifths-two-fifths{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns:3fr 2fr;
    grid-template-columns:3fr 2fr;
}

.grid-two-fifths-three-fifths{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns:2fr 3fr;
    grid-template-columns:2fr 3fr;
}

.grid-two-columns{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns:1fr 1fr;
    grid-template-columns:1fr 1fr;
}

.grid-three-columns{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns:1fr 1fr 1fr;
    grid-template-columns:1fr 1fr 1fr;
}

.grid-four-columns{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns:1fr 1fr 1fr 1fr;
    grid-template-columns:1fr 1fr 1fr 1fr;
}

.footer{
    background-color: rgb(8, 12, 91);
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-left p {
    color: #fff;
    margin: 0;
}

.footer-right p {
    color: #fff;
    margin: 0;
}

.footer-right a {
    color: #fff;
    text-decoration: underline;
}

.footer-right a:hover {
    color: #ccc;
}

.no-margin{
    margin:0px !important;
}

.no-padding{
    padding:0px !important;
}

.no-bold{
    font-weight:normal !important;
}

.no-border{
    border:none !important;
}

.center{
    text-align:center;
}

.block{
    display:block !important;
}

.blue{
    color:rgb(8, 12, 91);
}

h3{
    font-size:1.5em;
}
 /* Hero Section with Enhanced Design */
        .hero-section {
            height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                        linear-gradient(135deg, rgb(184, 4, 4), rgb(214, 8, 8));
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-content h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content .subtitle {
            font-size: 1.4em;
            margin-bottom: 15px;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-content .tagline {
            font-size: 1.1em;
            margin-bottom: 30px;
            opacity: 0.8;
        }

        .established-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1em;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
/* Hero Section */
.hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    height: auto;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.feather {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #8B4513, #CD853F);
    border-radius: 50% 10% 50% 10%;
    position: absolute;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}


@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display:grid;
}

.mission-section {
    text-align: center;
    margin-bottom: 80px;
}

.mission-section h2 {
    color: #dc2626;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: normal;
}

.mission-text {
    color: rgb(4, 35, 89);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.mission-statement {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .mission-statement h2 {
            color: rgb(184, 4, 4);
            font-size: 2.5em;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .mission-statement p {
            font-size: 1.2em;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }
        /* Calendar Section */
        .calendar-preview {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .calendar-header h3 {
            color: rgb(184, 4, 4);
            font-size: 1.8em;
            margin: 0;
        }

        .calendar-nav {
            display: flex;
            gap: 10px;
        }

        .calendar-nav button {
            background: linear-gradient(135deg, rgb(6, 13, 212), rgb(34, 93, 255));
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendar-nav button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(6, 13, 212, 0.3);
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }

        .calendar-day {
            background: white;
            padding: 15px 5px;
            text-align: center;
            min-height: 60px;
            position: relative;
            transition: background-color 0.3s ease;
        }

        .calendar-day:hover {
            background: #f8f9fa;
        }

        .calendar-day.header {
            background: linear-gradient(135deg, rgb(184, 4, 4), rgb(214, 8, 8));
            color: white;
            font-weight: bold;
            padding: 10px 5px;
            min-height: auto;
        }

        .calendar-day.has-event {
            background: rgba(184, 4, 4, 0.1);
        }

        .calendar-day.has-event::after {
            content: 'â€¢';
            position: absolute;
            bottom: 5px;
            right: 8px;
            color: rgb(184, 4, 4);
            font-size: 20px;
        }

        .event-indicator {
            font-size: 0.8em;
            color: rgb(184, 4, 4);
            font-weight: bold;
            margin-top: 5px;
        }
        /* Newsletter Section */
        .newsletter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }

        .newsletter-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .newsletter-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .newsletter-header {
            background: linear-gradient(135deg, rgb(6, 13, 212), rgb(34, 93, 255));
            color: white;
            padding: 20px;
            text-align: center;
        }

        .newsletter-header h4 {
            margin: 0 0 10px 0;
            font-size: 1.3em;
        }

        .newsletter-date {
            opacity: 0.9;
            font-size: 0.9em;
        }

        .newsletter-content {
            padding: 20px;
        }

        .newsletter-excerpt {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 30px;
        }

        .service-card {
            background: linear-gradient(135deg, rgb(6, 13, 212), rgb(34, 93, 255));
            color: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
            background: linear-gradient(135deg, rgb(6, 13, 192), rgb(34, 83, 235));
        }

        .service-card .icon {
            font-size: 2em;
            margin-bottom: 15px;
            display: block;
        }

        .service-card .title {
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .service-card .description {
            font-size: 0.9em;
            opacity: 0.9;
        }
 /* Content Sections */
        .content-section {
            background: white;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.6s ease forwards;
        }

        .content-section:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .content-section:nth-child(1) {
            animation-delay: 0.1s;
        }

        .content-section:nth-child(2) {
            animation-delay: 0.2s;
        }

        .content-section:nth-child(3) {
            animation-delay: 0.3s;
        }

        .section-header {
            background: linear-gradient(135deg, rgb(184, 4, 4), rgb(214, 8, 8));
            color: white;
            padding: 25px 30px;
            font-size: 1.4em;
            font-weight: 600;
            border: none;
            cursor: pointer;
            width: 100%;
            text-align: left;
            position: relative;
            transition: all 0.3s ease;
        }

        .section-header:hover {
            background: linear-gradient(135deg, rgb(164, 4, 4), rgb(194, 8, 8));
        }

        .section-header::after {
            content: '▼';
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }

        .content-section[open] .section-header::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .section-content {
            padding: 30px;
            font-size: 1.1em;
            line-height: 1.8;
            color: #555;
        }
        
        .application-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .step-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 25px;
            background: #dc2626;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: normal;
            font-size: 16px;
        }

        .step-title {
            font-size: 20px;
            font-weight: normal;
            margin: 15px 0 10px 0;
            color: #dc2626;
        }

        .step-description {
            color: rgb(4, 35, 89);
            line-height: 1.8;
            font-size: 16px;
        }

        .info-box {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .info-box h4 {
            color: #dc2626;
            margin-bottom: 10px;
            font-size: 18px;
            font-weight: normal;
        }

        .info-box p {
            margin: 5px 0;
            color: rgb(4, 35, 89);
            font-size: 16px;
        }

        .success-story-placeholder {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: center;
        }

        .success-story-placeholder h4 {
            color: #dc2626;
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: normal;
        }

        .success-story-placeholder p {
            margin-bottom: 10px;
            font-style: italic;
            color: rgb(4, 35, 89);
            font-size: 16px;
        }

        /* History Timeline */
        .timeline {
            position: relative;
            padding: 20px 0;
            margin: 30px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(135deg, rgb(184, 4, 4), rgb(214, 8, 8));
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .timeline-item:nth-child(odd) {
            text-align: right;
            padding-right: 50%;
        }

        .timeline-item:nth-child(even) {
            text-align: left;
            padding-left: 50%;
        }

        .timeline-date {
            display: inline-block;
            background: linear-gradient(135deg, rgb(184, 4, 4), rgb(214, 8, 8));
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9em;
            position: relative;
            z-index: 2;
        }

        .timeline-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-top: 15px;
            position: relative;
        }

        .timeline-content h4 {
            color: rgb(184, 4, 4);
            margin-bottom: 10px;
            font-size: 1.2em;
        }
        
        .scholarship-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 30px;
            background: rgb(4, 35, 89);
            border-radius: 15px;
            margin: 30px 0;
        }
        
        .scholarship-requirements {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin: 20px 0;
        }

        .requirements-list {
            list-style: none;
            padding: 0;
            color: rgb(4, 35, 89);
            font-size: 16px;
            line-height: 1.8;
        }

        .requirements-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 30px;
        }

        .requirements-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            color: #dc2626;
            font-weight: bold;
            font-size: 18px;
        }

        .requirements-list li:last-child {
            border-bottom: none;
        }

        .requirements-list h3 {
            color: #dc2626;
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: normal;
        }
        
        .youth-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 30px;
            background: rgb(4, 35, 89);
            border-radius: 15px;
            margin: 30px 0;
        }
        
        .youth-requirements {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin: 20px 0;
        }

        .requirements-list {
            list-style: none;
            padding: 0;
            color: rgb(4, 35, 89);
            font-size: 16px;
            line-height: 1.8;
        }

        .requirements-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 30px;
        }

        .requirements-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            color: #dc2626;
            font-weight: bold;
            font-size: 18px;
        }

        .requirements-list li:last-child {
            border-bottom: none;
        }

        .requirements-list h3 {
            color: #dc2626;
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: normal;
        }

        /* Statistics Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            padding: 30px;
            background: linear-gradient(135deg, rgb(6, 13, 212), rgb(34, 93, 255));
            border-radius: 15px;
            margin: 30px 0;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            color: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1.1em;
            opacity: 0.9;
        }

        /* Leadership Section */
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }

        .leader-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .leader-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .leader-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgb(184, 4, 4), rgb(214, 8, 8));
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5em;
            font-weight: bold;
        }

        .leader-name {
            font-size: 1.3em;
            font-weight: bold;
            color: rgb(184, 4, 4);
            margin-bottom: 10px;
        }

        .leader-title {
            color: rgb(6, 13, 212);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .leader-bio {
            color: #555;
            line-height: 1.6;
            font-size: 0.95em;
        }

        /* Call to Action Section */
        .cta-section {
            background: linear-gradient(135deg, rgb(184, 4, 4), rgb(214, 8, 8));
            color: white;
            text-align: center;
            padding: 60px 30px;
            margin: 60px 0;
            border-radius: 15px;
        }

        .cta-section h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.2em;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 15px 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
        }
.achievements-section {
    text-align: center;
    margin-bottom: 80px;
}

.achievements-section h2 {
    color: #dc2626;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: normal;
}

.achievements-text {
    color: rgb(4, 35, 89);
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    margin-bottom: 60px;
}

.cta-section h3 {
    color: rgb(4, 35, 89);
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-section p {
    color: rgb(4, 35, 89);
    font-size: 16px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #dc2626;
    background: transparent;
    color: rgb(3, 23, 57);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: rgb(4, 35, 89);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

@media only screen and (max-width:1200px){

}

@media only screen and (max-width:960px){
    .grid-four-columns{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr 1fr;
    }
    
    .newsletter-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
                left: 30px;
            }

            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                text-align: left;
                padding-left: 60px;
                padding-right: 20px;
            }

            .leadership-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
}

@media only screen and (max-width:720px){
    /* Header adjustments for mobile */
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .logo img {
        width: 300px; /* Smaller logo for mobile */
    }

    .social-icons {
        justify-content: center;
    }

    /* -------------------- Start Mobile Navigation -------------------- */
    #nav{
        position: relative;
        padding: 0;
        background-color: rgb(8, 12, 91);
    }

    /* Mobile menu toggle buttons */
    #nav > a{
        display: block;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 24px;
        padding: 15px 0;
        text-decoration: none;
        background-color: rgb(8, 12, 91);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    #nav > a:hover {
        background-color: #0a4b8c;
    }

    /* Hide close button by default, show menu button */
    #nav:not(:target) > a:first-of-type {
        display: block;
    }

    #nav:not(:target) > a:last-of-type {
        display: none;
    }

    /* When menu is open, hide menu button, show close button */
    #nav:target > a:first-of-type {
        display: none;
    }

    #nav:target > a:last-of-type {
        display: block;
    }

    /* Mobile menu list */
    #nav > ul{
        display: none;
        position: static;
        flex-direction: column;
        gap: 0;
        background-color: rgb(8, 12, 91);
        margin: 0;
        padding: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    /* Show menu when targeted */
    #nav:target > ul{
        display: flex;
    }

    #nav > ul > li{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    #nav > ul > li:last-child {
        border-bottom: none;
    }

    #nav > ul > li > a{
        padding: 18px 20px;
        text-align: left;
        color: white;
        font-size: 16px;
        display: block;
        transition: all 0.3s;
        border-radius: 0;
    }

    #nav > ul > li > a:hover,
    #nav > ul > li.active > a {
        background-color: #0a4b8c;
        padding-left: 30px;
    }

    /* second level mobile menus */
    #nav li ul{
        position: static;
        width: 100%;
        margin: 0;
        padding: 0;
        background-color: rgba(0,0,0,0.2);
        border-radius: 0;
        box-shadow: none;
    }

    #nav li ul a{
        padding: 12px 40px;
        color: rgba(255,255,255,0.9);
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    #nav li ul a:hover {
        background-color: rgba(0,0,0,0.3);
        padding-left: 50px;
    }
    /*End Mobile Navigation*/
    
    .calendar-grid {
                grid-template-columns: repeat(7, 1fr);
                gap: 1px;
            }

            .calendar-day {
                padding: 8px 2px;
                font-size: 0.9em;
                min-height: 45px;
            }
    
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-section {
        height: 40vh;
    }

    .mission-statement h2 {
        font-size: 2em;
    }
    
    .services-grid {
                grid-template-columns: 1fr;
            }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-right {
        text-align: center;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .grid-two-thirds-one-third{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
    }

    .grid-one-fourth-three-fourths{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
    }

    .grid-two-fifths-three-fifths{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
    }

    .grid-three-fifths-two-fifths{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
    }

    .grid-two-columns{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
    }

    .grid-three-columns{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
    }

    .grid-four-columns{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
    }

    .grid-three-fourths-one-fourth{
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
    }

    .footer{
        text-align:center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .main-content {
        padding: 40px 15px;
    }

    .mission-section h2,
    .achievements-section h2 {
        font-size: 28px;
    }

    .mission-text,
    .achievements-text {
        font-size: 16px;
    }
    
    .mission-section h2,
            .achievements-section h2 {
                font-size: 28px;
            }

            .mission-text,
            .achievements-text {
                font-size: 16px;
            }

            .scholarship-stats {
                grid-template-columns: 1fr;
            }

            .application-steps {
                grid-template-columns: 1fr;
            }
}

@media only screen and (max-width:600px){
    .logo img {
        width: 250px;
    }

    .header-content {
        padding: 15px;
    }

    .social-icons {
        gap: 15px;
    }

    .icon-img {
        width: 22px;
        height: 23px;
    }
}

@media only screen and (max-width:480px){
    .logo img {
        width: 200px;
    }

    .mission-section h2,
    .achievements-section h2 {
        font-size: 24px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}