:root {
    --background-color: #ffffff;
    --primary-color: #191d36;
    --secondary-color: #3b4697;
    --button-text: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    zoom: 0.9;
}

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

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(25, 29, 54, 0.8), rgba(25, 29, 54, 0.8)), url('../images/photos/IMG_9933.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    border-radius: 10px;
    margin: 30px 0;
}

.about-hero h6 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #aab2e6;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Overlay Section */
.grid-overlay {
    display: flex;
    gap: 30px;
    margin: -100px auto 100px;
    position: relative;
    z-index: 10;
}

.grid-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.grid-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.grid-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.grid-card p {
    color: #666;
    line-height: 1.6;
}

/* Numbers Section */
.numbers-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fc, #fff);
    text-align: center;
    border-radius: 4rem;
}

.numbers-container {
    max-width: 800px;
    margin: 0 auto;
}

.numbers-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.numbers-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

/* What We Do Best Section */
.expertise-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h6 {
    color: var(--secondary-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.expertise-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.expertise-content {
    flex: 1;
}

.expertise-item {
    margin-bottom: 30px;
    padding-left: 30px;
    border-left: 4px solid var(--secondary-color);
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.expertise-item p {
    color: #555;
    line-height: 1.6;
}

.expertise-image {
    flex: 1;
    text-align: center;
}

.expertise-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fc, #fff);
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-detail i {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

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

.submit-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-color);
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #aab2e6;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {



    .about-hero h1 {
        font-size: 36px;
    }

    .grid-overlay {
        flex-direction: column;
    }

    .expertise-container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .stats-container {
        flex-direction: column;
        gap: 50px;
    }
}