/* Import the Raleway and Didact Gothic fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;900&family=Didact+Gothic&display=swap');

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background: #172D63;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    height: 100px; /* Adjust the height as needed */
    width: auto; /* Maintains aspect ratio */
    transition: height 0.3s; /* Smooth transition for the logo size */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease 0s;
    font-family: MierB, Inter, Arial, sans-serif;
    cursor: pointer !important;
}

.nav-links a:hover {
    color: #7DE2D1; /* Color change on hover */
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar {
    height: 4px;
    width: 30px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s;
}

.menu-icon.open .bar:nth-child(1) {
   
    transform: rotate(-45deg) translate(-12px, 6px);
  
}

.menu-icon.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.open .bar:nth-child(3) {
    transform: rotate(45deg) translate(-11px, -5px);
}

.hero-section {
    background: #172D63;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    padding-top: 60px; /* Adjust for the fixed header height */
}

/* Heading styles */
.hero-section h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 900; /* Black font weight */
    color: #fff; /* White color */
    font-size: 64px; /* Font size 34 */
    text-align: left;
}

.hero-section h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400; /* Regular font weight */
    color: #fff; /* White color */
    font-size: 30px; /* Font size 24 */
    text-align: left;
    margin-bottom: 40px;
}

/* Paragraph styles */
.hero-section p {
    font-family: 'Didact Gothic', sans-serif;
    color: #fff; /* White color */
    font-size: 18px; /* Font size 24 */
    text-align: left;
}

.hero-section .btn {
    background: #7DE2D1;
    color: #20377D;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.about-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 200px; /* Adjust for the fixed header height */
}

.features-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 200px; /* Adjust for the fixed header height */
}

.contact-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 200px; /* Adjust for the fixed header height */
}

/* Heading styles */
.about-section .features-section .contact-section h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 900; /* Black font weight */
    color: #000000; /* Black color */
    font-size: 64px; /* Font size 34 */
    text-align: left;
}

.about-section .features-section .contact-section h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800; /* Regular font weight */
    color: #000000; /* Black color */
    font-size: 30px; /* Font size 24 */
    text-align: left;
}

.about-section .features-section .contact-section h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600; /* Regular font weight */
    color: #000000; /* Black color */
    font-size: 30px; /* Font size 24 */
    text-align: left;
}

/* Paragraph styles */
.about-section .features-section .contact-section p {
    font-family: 'Didact Gothic', sans-serif;
    color: #000000; /* Black color */
    font-size: 18px; /* Font size 24 */
    text-align: left;
}



.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}


.feature-item {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    flex: 1 1 300px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-section {
    text-align: center;
}

footer {
    background: #20377D;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}



/* Responsive styles */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100px;
        left: 0;
        background: #20377D;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}