/* Color Variables */
:root {
    --navy: #304771;
    --orange: #FF7731;
    --text-dark: #333;
    --text-light: #666;
    --gray-100: #f8fafc;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #fff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #E3F2FF
}

/* Header */
.header {
    background: #fff;
    padding: 0px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

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

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

.nav-group {
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.cta-button {
    background: var(--orange);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #e85d00;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.my-icon {
  color: orange;
  font-size: 48px; /* or any size you want */
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.hero-image {
    position: relative;
}

.hero-photo {
    width: 400px;
    height: 600px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
}

.hero-text {
    padding-top: 0px;
}

.hero-subtitle {
    color: var(--orange);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 22px;
    line-height: 1.7;
    color: #4b5563;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--orange);
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.5;
}

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

.services-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    color: orange;
    align-items: center;
    height: 48px;
}

.service-icon i {
    font-size: 32px;
    color: var(--orange);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
}

.newsletter-embed {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-embed {
    display: flex;
    justify-content: center;
}

.newsletter-embed iframe {
    border-radius: 0px;
    max-width: 100%;
}

/* Posts Section */
.posts {
    background: #fff;
    padding: 60px 0;
}

.posts-title-small {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy) !important;
    margin-bottom: 40px;
    text-align: center;
}

.posts .container {
    color: var(--text-dark) !important;
}

.posts [data-supascribe-feed] {
    text-align: left;
}

/* Increase font size in Supascribe feed */
.posts [data-supascribe-feed] * {
    font-size: 22px !important;
}

.posts [data-supascribe-feed] h1 {
    font-size: 36px !important;
}
.posts [data-supascribe-feed] h2 {
    font-size: 36px !important;
}
.posts [data-supascribe-feed] h3 {
    font-size: 36px !important;
}

.posts [data-supascribe-feed] p {
    font-size: 20px !important;
    line-height: 1.6 !important;
}

/* Contact Section */
.contact {
    background: #fff;
    padding: 60px 0;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(48, 71, 113, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.submit-btn {
    background: var(--navy);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #243a5e;
}

/* Footer */
.footer {
    background: #f9fafb;
    padding: 40px 0 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.footer-info p {
    color: #6b7280;
    line-height: 1.6;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: #6b7280;
    line-height: 1.6;
}

.footer-disclaimer {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
}

/* About Page Styles */
.about-hero {
    background: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
}

.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.about-image {
    display: flex;
    justify-content: right;
}

.about-photo {
    width: 600px;
    height: 900px;
    object-fit: cover;
    object-position: center top;
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
}

.about-text {
    max-width: 500px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.about-text em {
    font-style: italic;
}

/* Background Section */
.background {
    background: #E3F2FF;
    color: #fff;
    padding: 80px 0;
}

.background-title {
    color: var(--navy);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.background-content {
    max-width: 800px;
    margin: 0 auto;
}

.background-section {
    margin-bottom: 40px;
}

.background-subtitle {
    color: var(--navy);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.background-icon {
    width: 24px;
    height: 24px;
    filter: invert(45%) sepia(99%) saturate(1789%) hue-rotate(6deg) brightness(103%) contrast(105%);
}

.background-list {
    list-style: none;
    padding-left: 24px;
}

.background-list li {
    font-size: 18px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 8px;
    position: relative;
}

.background-list li:before {
    content: "•";
    color: var(--navy);
    font-weight: bold;
    position: absolute;
    left: -16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
    }
    
    .cta-button {
        margin-top: 1rem;
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
        color: navy;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-photo {
        width: 300px;
        height: 450px;
        margin: 0 auto;
    }
    
    .about-photo {
        width: 300px;
        height: 450px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .container {
        padding: 0 15px;
    }
}