.about-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2a3a;
}

/* Image */
.about-img img {
    width: 100%;
    border-radius: 25px;
    display: block;
}

/* Content */
.about-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background: #f5f5f5;
}

/* Title */
.values-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2a3a;
}

.values-desc {
    max-width: 800px;
    margin: 15px auto 0;
    color: #666;
    line-height: 1.7;
}

/* Card */
.value-card {
    background: #eee;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

/* Icon */
.value-card .icon {
    width: 60px;
    height: 60px;
    background: #0f2a44;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    margin: 0 auto 20px;
}

/* Heading */
.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a2a3a;
}

/* Text */
.value-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Hover */
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a2a3a;
}

.faq-subtitle {
    color: #777;
    margin-top: 10px;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #1a2a3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Plus Icon */
.faq-question span {
    font-size: 24px;
    transition: 0.3s;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

/* Active */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.contact-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-box {
    background: #0f2a44;
    border-radius: 25px;
    padding: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    color: #fff;
}

/* Left */
.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Right Form */
.contact-right {
    flex: 1;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-right .row {
    display: flex;
    gap: 15px;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: #1a3a5a;
    color: #fff;
    font-size: 14px;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
    color: #bbb;
}

.contact-right textarea {
    height: 120px;
    resize: none;
}

/* Button */
.contact-right button {
    width: 150px;
    padding: 12px;
    border: none;
    background: #ff6a2b;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #e85c20;
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2a3d, #1f3c50);
    color: #fff;
}

/* TITLE */
.team-title {
    font-size: 36px;
    font-weight: 700;
}

.team-title span {
    color: #ff5a1f;
}

.team-subtitle {
    color: #ccc;
    margin-top: 10px;
}

/* CARD */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

/* IMAGE PLACEHOLDER */
.team-img {
    width: 80px;
    height: 80px;
    background: #ff5a1f;
    border-radius: 50%;
    margin: 0 auto 15px;
}

/* TEXT */
.team-card h5 {
    margin-bottom: 5px;
}

.team-card p {
    font-size: 14px;
    color: #ccc;
}

/* HOVER EFFECT */
.team-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.1);
}



/* =========================
   LARGE DEVICES (≤1199px)
========================= */
@media (max-width: 1199px) {

    .section-title,
    .values-title,
    .team-title {
        font-size: 32px;
    }

    .faq-title {
        font-size: 34px;
    }

    .contact-left h2 {
        font-size: 34px;
    }

    .contact-box {
        padding: 40px;
        gap: 30px;
    }

    .value-card {
        padding: 30px 20px;
    }
}

/* =========================
   TABLETS (≤992px)
========================= */
@media (max-width: 992px) {
    .about-img img {
        width: 60%;
    }

    .about-section,
    .values-section,
    .faq-section,
    .contact-section,
    .team-section {
        padding: 60px 0;
    }

    .section-title,
    .values-title,
    .team-title {
        font-size: 28px;
        text-align: center;
    }

    .values-desc {
        text-align: center;
        font-size: 14px;
    }

    .about-content {
        text-align: center;
        margin-top: 20px;
    }

    /* CONTACT STACK */
    .contact-box {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .contact-left h2 {
        font-size: 28px;
    }

    .contact-info p {
        font-size: 16px;
    }

    .contact-right .row {
        flex-direction: column;
    }
}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {

    .about-img img {
        width: 100%;
    }

    .section-title,
    .values-title,
    .team-title {
        font-size: 24px;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .value-card {
        padding: 25px 15px;
    }

    .value-card h4 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 14px;
    }

    .contact-left h2 {
        font-size: 24px;
    }

    .contact-right input,
    .contact-right textarea {
        padding: 12px;
    }

    .contact-right button {
        width: 100%;
    }

    .team-card {
        padding: 25px 15px;
    }
}

/* =========================
   SMALL MOBILE (≤576px)
========================= */
@media (max-width: 576px) {

    .section-title,
    .values-title,
    .team-title {
        font-size: 20px;
    }

    .faq-title {
        font-size: 22px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .contact-left h2 {
        font-size: 20px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .team-img {
        width: 60px;
        height: 60px;
    }

    .team-card h5 {
        font-size: 16px;
    }

    .team-card p {
        font-size: 13px;
    }
}