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

body {
    font-family: 'Inter', sans-serif; /* CAIT Connect uses Inter font */
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Header Styles - CAIT Connect layout */
.header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo h2 {
    color: #2c5aa0; /* A blue tone similar to CAIT Connect's logo */
    font-size: 28px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 10px;
}

.nav-tab {
    padding: 10px 20px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* CAIT Connect style colored navigation tabs */
.home-tab { background-color: #f0f8ff; color: #4285f4; }
.benefits-tab { background-color: #fff3e0; color: #ff9800; }
.features-tab { background-color: #f3e5f5; color: #9c27b0; }
.testimonials-tab { background-color: #e0f7fa; color: #00bcd4; }
.contact-tab { background-color: #fce4ec; color: #e91e63; }

.nav-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section - CAIT Connect layout */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(to right, #e0f7fa, #f0f8ff);
    color: #333;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Slightly wider left column */
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #2c5aa0;
}

.hero-left h1 strong {
    color: #00bcd4; /* Highlight color */
}

.hero-subtitle-section {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero-subtitle-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.hero-subtitle-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.cta-button {
    background-color: #ff9800; /* Orange color for CTA */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}

/* Hero Card (Inquiry Form) - CAIT Connect style */
.hero-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    color: #333;
}

.hero-card h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.hero-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-form input,
.inquiry-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

.form-submit {
    background-color: #4285f4; /* Blue color for form submit */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
}

.form-note {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
}

/* Section Styles - CAIT Connect layout */
.benefits, .who-we-are, .built-by, .quote-section, .mission-vision, .final-cta {
    padding: 80px 0;
}

.benefits {
    background-color: #f0f8ff;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Text slightly wider than image */
    gap: 60px;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.section-content.reverse .section-text {
    order: 1;
}

.section-content.reverse .section-image {
    order: 2;
}

.section-label {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkmark {
    background-color: #4285f4;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Who We Are Section */
.who-we-are {
    background-color: #fff3e0;
}

.who-we-are .section-label {
    background-color: #ffe0b2;
    color: #f57c00;
}

.who-we-are .section-text h2 {
    color: #f57c00;
}

.who-we-are .section-text p {
    color: #666;
}

/* Built By Section */
.built-by {
    background-color: #e0f7fa;
    text-align: center;
    padding: 60px 0;
}

.built-content h2 {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 20px;
    font-weight: bold;
}

.built-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Quote Section */
.quote-section {
    background-color: #f3e5f5;
    padding: 80px 0;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.quote-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quote-text blockquote {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #9c27b0;
    color: #555;
}

.quote-text cite {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Mission Vision Purpose */
.mission-vision {
    background-color: #fce4ec;
}

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

.mvp-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mvp-item h3 {
    font-size: 1.8rem;
    color: #e91e63;
    margin-bottom: 20px;
    font-weight: bold;
}

.mvp-item p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background-color: #2c5aa0;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta .cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.final-cta .cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .section-content,
    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left h1 {
        font-size: 3rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mvp-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-card {
        padding: 30px;
    }
    
    .section-content.reverse .section-text,
    .section-content.reverse .section-image {
        order: unset;
    }
    
    .section-image img {
        height: auto;
    }
    
    .quote-image img {
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .section-text h2,
    .built-content h2,
    .final-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-tab {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle-section h2 {
        font-size: 1.5rem;
    }
    
    .hero-card h3 {
        font-size: 1.5rem;
    }
    
    .quote-text blockquote {
        font-size: 1.5rem;
    }
    
    .mvp-item h3 {
        font-size: 1.5rem;
    }
}
