* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    scroll-behavior: smooth;
}

#home {
    scroll-margin-top: 150px;
}

#about {
    scroll-margin-top: 150px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Styling */
.header {
    background-color: #ECF0F1;
    color: #2C3E50;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;    
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Flex Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    max-width: 1450px;
    margin: 0 auto;
}

/* Logo & Title */
.logo-title {
    display: flex;
    align-items: center;
    gap: 1px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2C3E50; 
    margin-right: 10px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; 
}

.h2 {
    margin-right: 60px; 
}

/* Navigation */
.nav {
    display: flex;
    margin-right: 15px;
    gap: 40px;
}

.nav a {
    color: #34495E;
    text-decoration: none;
    font-size: 14.5px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #F1C40F;
}

/* Login Navigation Link */
.login-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.login-link i {
    font-size: 16px;
}

/* Mobile Menu */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.icon {
    width: 30px;
    height: 30px;
    color: #34495E;
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #ECF0F1;
    text-align: center;
    padding: 10px 0;
}

.mobile-menu a {
    color: #34495E;
    padding: 10px;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background-color: #F1C40F;
}

/* Footer Styling */
.footer {
    background-color: #2C3E50;
    color: #ECF0F1;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1450px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 20px;
    gap: 40px;
}

.footer-info, .footer-links, .footer-contact {
    max-width: 300px;
}

/* Footer Headings */
.footer h3, .footer h4 {
    color: #F1C40F;
    margin-bottom: 10px;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 400;
}

/* Footer Text & Links */
.footer p, .footer a {
    color: #ECF0F1;
    font-size: 14.5px;
    line-height: 1.5;
    text-decoration: none;
}

.footer a:hover {
    color: #F1C40F; 
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 7px;
}

.footer-links {
    color: #ECF0F1;
}

/* Contact Icons */
.footer-contact p {
    display: flex;
    align-items: left;
    gap: 8px;
}

.footer-contact i {
    margin-right: 8px;
    color: #F1C40F;
    font-size: 16px;
}

.footer-bottom {
    margin-top: 1px;
    font-size: 12px;
    border-top: 1.5px solid #ECF0F1;
    padding-top: 13px;
    padding-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info, .footer-links, .footer-contact {
        margin-bottom: 20px;
    }

    .header {
        padding: 10px;
    }
}

/* Get Started Section */
.get-started {  
    padding: 80px 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 90px;
}

/* Container Styling */
.get-started .container {
    max-width: 1400px;
    width: 100%;
}

/* Content Box */
.get-started-box {
    background: none;
    padding: 55px;
    width: 100%;
    max-width: 1500px;
    border-radius: 15px;
    text-align: left;
    margin-right: 300px;
}

/* Heading Styling */
.get-started-box h1 {
    color: #F1C40F;
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Paragraph Styling */
.get-started-box p {
    color: #ECF0F1;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* Button Styling */
.btn-get-started {
    display: inline-block;
    padding: 20px 40px;
    background-color: #1a11d0;
    color: #ECF0F1;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-get-started:hover {
    background-color: #084aff;
    color: #ECF0F1;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .get-started {
        padding: 60px 5%;
    }

    .get-started-box {
        max-width: 90%;
        margin: 0 auto;
        padding: 40px;
    }

    .get-started-box h1 {
        font-size: 2.2rem;
    }

    .get-started-box p {
        font-size: 1.2rem;
    }

    .btn-get-started {
        padding: 18px 35px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .get-started {
        padding: 50px 5%;
    }

    .get-started-box {
        max-width: 95%;
        padding: 35px;
        text-align: center;
    }

    .get-started-box h1 {
        font-size: 2rem;
    }

    .get-started-box p {
        font-size: 1.1rem;
    }

    .btn-get-started {
        padding: 16px 30px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .get-started {
        padding: 40px 5%;
    }

    .get-started-box {
        max-width: 100%;
        padding: 30px;
    }

    .get-started-box h1 {
        font-size: 1.8rem;
    }

    .get-started-box p {
        font-size: 1rem;
    }

    .btn-get-started {
        padding: 14px 25px;
        font-size: 16px;
    }
}

.about-section {
    text-align: center;
    background: none;
}

.about-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-content h2 {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-content p {
    font-size: 1.2rem;
    color: #2C3E50;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 60px;
    text-align: center;
    margin-bottom: 25px;
}

.feature-card {
    background: linear-gradient(to bottom, #FFFFFF 30%, #b2b9bb 90%);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 40px;
    transition: transform 0.3s ease-in-out;
}

.feature-card i {
    font-size: 2rem;
    color: #F1C40F;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #2C3E50;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        padding: 40px; 
        gap: 15px;
    }

    .feature-card {
        padding: 30px; 
    }

    .feature-card i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .features-container {
        padding: 30px;
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px; 
    }
}