/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fbfd;
}

a {
    text-decoration: none;
    color: #0056b3;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #003366;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    color: #555;
    font-weight: 600;
}

nav a:hover {
    color: #003366;
    text-decoration: underline; /* Plain hover effect instead of animation */
}

/* Hero Section */
.hero {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #003366;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
}

.btn:hover {
    background-color: #e6b800; /* Plain hover effect */
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #003366;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Very subtle depth, no animation */
}

.service-icon {
    color: #ffcc00;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0056b3;
}

/* Expert Views Section */
.expert-views {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.expert-views h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #003366;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expert-card {
    background: #f9fbfd;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

.expert-icon {
    color: #ffcc00;
    margin-bottom: 15px;
}

.expert-quote {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.expert-name {
    font-weight: 700;
    color: #003366;
    margin-bottom: 5px;
}

.expert-title {
    font-size: 14px;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9fbfd;
    border-top: 1px solid #e0e0e0;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #003366;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #003366;
    text-align: right;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #003366;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

.faq-item p {
    color: #333;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9fbfd;
    border-top: 1px solid #e0e0e0;
}

.about h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #003366;
}

.about-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.about-card strong {
    color: #003366;
}

.about-name {
    color: #0056b3;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: #fff;
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #003366;
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: center;
}

.contact-item {
    background: #f9fbfd;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-width: 250px;
}

.contact-item strong {
    font-size: 18px;
    color: #003366;
}

.contact-item a {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
}

.social-btn:hover {
    background-color: #ffcc00;
    color: #003366;
    text-decoration: none;
    border-color: #ffcc00;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffcc00;
    color: #003366;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 1000;
}

.floating-btn:hover {
    background-color: #e6b800;
    text-decoration: none;
}

/* Hamburger Menu (Desktop Default) */
.menu-toggle, .hamburger {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        position: relative;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hamburger {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #003366;
        user-select: none;
    }

    .logo-link {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-img {
        height: 40px;
    }

    nav.nav-menu {
        display: none;
        width: 100%;
        margin-top: 15px;
    }

    .menu-toggle:checked ~ nav.nav-menu {
        display: block;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        background-color: #f9fbfd;
        border: 1px solid #e0e0e0;
        border-radius: 0;
        border-bottom: none;
        font-size: 16px;
    }

    nav a:last-child {
        border-bottom: 1px solid #e0e0e0;
    }
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero-image {
        margin-top: 30px;
        text-align: center;
    }
    
    .contact-info {
        gap: 20px;
    }
}
