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

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

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

/* Header */
header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    flex: 0 0 auto;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0.25rem 0 0 0;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Navigation */
.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: transparent;
    border: none;
    margin-left: auto;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hide mobile close button on desktop */
.mobile-close {
    display: none;
}

/* Main Content */
main {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.hero {
    background: linear-gradient(rgba(44, 90, 160, 0.9), rgba(30, 58, 138, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23e0f2fe" width="1200" height="400"/><circle fill="%23b3e5fc" cx="200" cy="100" r="50" opacity="0.3"/><circle fill="%2381d4fa" cx="800" cy="300" r="80" opacity="0.2"/><circle fill="%234fc3f7" cx="1000" cy="150" r="60" opacity="0.3"/></svg>');
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #10b981;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Contact Page Blue Section */
.contact-cta {
    color: white !important;
}

.contact-cta h2,
.contact-cta p,
.contact-cta * {
    color: white !important;
}

.content-section.contact-cta h2 {
    color: white !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.content-section.contact-cta p {
    color: white !important;
}

/* Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #2c5aa0;
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    color: #2c5aa0;
    margin: 1rem 2rem 0.5rem 2rem;
    font-size: 1.3rem;
    text-align: center;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding: 0 2rem 2rem 2rem;
}

/* Content sections */
.content-section {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: #1e3a8a;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.content-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #1e3a8a;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

.contact-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.8rem;
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: relative;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed !important;
        right: -100% !important;
        top: 0 !important;
        left: auto !important;
        height: auto !important;
        max-height: 60vh !important;
        flex-direction: column !important;
        background-color: #1e3a8a !important;
        width: 100% !important;
        text-align: center !important;
        transition: right 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0,0,0,0.5) !important;
        z-index: 9999 !important;
        padding: 2rem 0 1rem 0 !important;
        justify-content: flex-start !important;
        display: flex !important;
        list-style: none !important;
        margin: 0 !important;
        border-radius: 0 0 0 15px !important;
        gap: 0 !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1.5rem;
        display: block;
        width: 100%;
        font-size: 1.1rem;
        border-radius: 0;
        color: white;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: none;
        color: white;
    }
    
    .mobile-close {
        position: absolute;
        top: 0.5rem;
        right: 1rem;
        margin: 0;
        display: block;
    }
    
    .close-menu {
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
        line-height: 1;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }
    
    .close-menu:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        margin: 1rem 1rem 0.5rem 1rem;
        text-align: center;
    }
    
    .service-card p {
        padding: 0 1rem 1rem 1rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-image {
        width: 250px;
        margin: 0 auto;
        order: 1;
    }
    
    .about-text {
        margin-left: 0;
        flex: none;
        order: 2;
    }
    
    .about-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .welcome-content {
        gap: 1.5rem;
    }
    
    .welcome-image {
        width: 200px;
    }
    
    .welcome-text p {
        font-size: 1.2rem;
    }
}

/* Welcome Section Styles */
.welcome-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.welcome-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-image {
    width: 180px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.welcome-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.welcome-text {
    flex: 1;
    margin: 0;
}

.welcome-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

/* Responsive adjustments for welcome section */
@media (max-width: 768px) {
    .welcome-section {
        padding: 2rem 1rem;
    }
    
    .welcome-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .welcome-image {
        width: 150px;
    }
    
    .welcome-text p {
        font-size: 1.2rem;
        text-align: center;
    }
    
    /* About Section Mobile */
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-image {
        width: 250px;
        margin: 0 auto;
        order: 1;
    }
    
    .about-text {
        margin-left: 0;
        flex: none;
        order: 2;
    }
    
    .about-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    /* Mobile CTA buttons */
    .cta-button + .cta-button {
        margin-top: 20px;
        margin-left: 0;
    }
}

/* About Section Styles */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1rem;
}

.about-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    order: 1;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-text {
    flex: 1;
    margin-left: 0;
    order: 2;
}

.about-text p {
    text-align: justify;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}