header {
    background-color: white;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #0f766e;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #164e63;
    font-weight: 600;
}

nav a:hover {
    color: #0f766e;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #123b4a;
    background: #f7fbfb;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    height: 80px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #087f7b;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #123B6D;
    font-weight: bold;
    font-size: 16px;
}

nav a:hover {
    color: #F36C0A;
}


/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 7%;
    gap: 60px;
  background: linear-gradient(
    135deg,
    #F8FBFF 0%,
    #EAF2F8 55%,
    #DCEAF7 100%
);
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.tagline {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #F36C0A;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #123B6D;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 19px;
    line-height: 1.7;
    color: #526b73;
    margin-bottom: 35px;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 18px;
}

.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary-btn {
    background: #123B6D;
    color: white;
}

.primary-btn:hover {
    background: #0D2C52;
    transform: translateY(-2px);
}

.secondary-btn {
    background: white;
    color: #F36C0A;
    border: 2px solid #F36C0A;
}

.secondary-btn:hover {
    background: #F36C0A;
    color: white;
}

/* =========================
   HERO IMAGE
========================= */

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 500px;
    height: 420px;
    border-radius: 25px;

    background: linear-gradient(
        135deg,
        #ffffff,
        #eaf2f8
    );

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    border: 2px solid #d5e3f0;

    box-shadow: 0 15px 40px rgba(18, 59, 109, 0.12);
}

.image-placeholder span {
    font-size: 22px;
    font-weight: bold;
    color: #123B6D;
}


/* =========================
   TEMPORARY SECTIONS
========================= */

.placeholder-section {
    min-height: 400px;
    padding: 100px 7%;
    text-align: center;
    background: white;
}

.placeholder-section:nth-of-type(even) {
    background: #f1f8f7;
}

.placeholder-section h2 {
    font-size: 38px;
    color: #123B6D;
    margin-bottom: 20px;
}

.placeholder-section p {
    font-size: 18px;
    color: #526b73;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 4%;
    }

    nav {
        gap: 15px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .image-placeholder {
        width: 100%;
        max-width: 500px;
        height: 350px;
    }
    .services-container {
    grid-template-columns: repeat(2, 1fr);
}
    .why-container {
    grid-template-columns: repeat(2, 1fr);
}
.contact-container {
    grid-template-columns: 1fr;
}
}
.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    width: 210px !important;
    height: 210px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    display: block;
    transform: translateY(75px);
}
/* =========================
ABOUT US SECTION
========================= */

.about-section {
    padding: 100px 7%;
    background: white;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    max-width: 1200px;
    margin: auto;
}

.about-text {
    flex: 1;
    max-width: 650px;
}

.section-tag {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #f26522;
}

.about-text h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #123f73;
    margin: 18px 0 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #526b73;
    margin-bottom: 18px;
}

.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 25px;
    background: #123f73;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.about-btn:hover {
    background: #f26522;
}

.about-card {
    width: 380px;
    min-height: 300px;
    padding: 50px 35px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f4f8fc, #fff4ed);
    box-shadow: 0 12px 35px rgba(18, 63, 115, 0.12);
    text-align: center;
}

.about-card-icon {
    font-size: 45px;
    color: #f26522;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 26px;
    color: #123f73;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #526b73;
}
/* =========================
SERVICES SECTION
========================= */

.services-section {
    padding: 100px 7%;
    background: #f5f8fc;
}

.services-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.services-header h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #123f73;
    margin: 18px 0 20px;
}

.services-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #526b73;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(18, 63, 115, 0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(18, 63, 115, 0.15);
}

.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #123f73;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #526b73;
}
/* =========================
WHY CHOOSE US SECTION
========================= */

.why-section {
    padding: 100px 7%;
    background: white;
}

.why-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.why-header h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #123f73;
    margin: 18px 0 20px;
}

.why-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #526b73;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 35px 25px;
    background: #f5f8fc;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5edf5;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(18, 63, 115, 0.12);
}

.why-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #123f73;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: bold;
}

.why-card:nth-child(2) .why-icon {
    background: #f26522;
}

.why-card:nth-child(3) .why-icon {
    background: #123f73;
}

.why-card:nth-child(4) .why-icon {
    background: #f26522;
}

.why-card h3 {
    font-size: 21px;
    color: #123f73;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #526b73;
}
/* =========================
CONTACT SECTION
========================= */

.contact-section {
    padding: 100px 7%;
    background: #f5f8fc;
}

.contact-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.contact-header h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #123f73;
    margin: 18px 0 20px;
}

.contact-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #526b73;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info,
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(18, 63, 115, 0.08);
}

.contact-info h3,
.contact-form h3 {
    font-size: 26px;
    color: #123f73;
    margin-bottom: 18px;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    color: #526b73;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #123f73;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.contact-item:nth-child(4) .contact-icon {
    background: #f26522;
}

.contact-item strong {
    color: #123f73;
    font-size: 17px;
}

.contact-item p {
    margin: 5px 0 0;
    color: #526b73;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #123f73;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #d6e1eb;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #123f73;
}

.contact-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #123f73;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.contact-btn:hover {
    background: #f26522;
}
/* =========================
MAP
========================= */

.map-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(18, 63, 115, 0.12);
    border: 1px solid #dce6ef;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
}
/* =========================
   FOOTER
========================= */

.site-footer {
    background: #123f73;
    color: #ffffff;
    padding: 50px 8% 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #dce8f5;
    margin: 6px 0;
}

.footer-brand p:last-child {
    color: #ff6b1a;
    font-weight: 600;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #dce8f5;
    text-decoration: none;
    margin-bottom: 9px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6b1a;
}

.footer-contact p {
    color: #dce8f5;
    margin: 9px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 35px;
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    color: #c8d8e8;
    font-size: 14px;
    margin: 0;
}
/* Footer contact links */
.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ff6b2c;
    text-decoration: none;
}
/* ================================
   CARE COMMITMENT SECTION
   ================================ */

.care-commitment {
    background: #f5f9fc;
    padding: 70px 8%;
    text-align: center;
}

.care-commitment .section-tag {
    display: block;
    color: #f26b21;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.care-commitment h2 {
    color: #123f73;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 20px;
}

.care-commitment p {
    max-width: 950px;
    margin: 0 auto 18px;
    color: #40566d;
    font-size: 17px;
    line-height: 1.8;
}

.care-commitment .commitment-highlight {
    color: #123f73;
    font-size: 21px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 8px;
}

.care-commitment .commitment-final {
    color: #f26b21;
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .care-commitment {
        padding: 50px 20px;
    }

    .care-commitment h2 {
        font-size: 28px;
    }

    .care-commitment p {
        font-size: 16px;
    }

    .care-commitment .commitment-highlight {
        font-size: 19px;
    }

    .care-commitment .commitment-final {
        font-size: 18px;
    }
}
/* Reduce unnecessary space before Care Commitment */
.care-commitment {
    margin-top: 0;
    padding-top: 45px;
}
/* =========================================
   ADDITIONAL SERVICES CONTENT
   ========================================= */

.services-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 45px;
}

.services-intro .section-tag {
    display: block;
    margin-bottom: 12px;
}

.services-intro h2 {
    color: #17477d;
    font-size: 42px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.services-intro p {
    color: #526b82;
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}


/* =========================================
   SERVICE CATEGORY CARDS
   ========================================= */

.service-category {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 35px;
    margin: 28px auto;
    max-width: 1050px;
    box-shadow: 0 10px 30px rgba(23, 71, 125, 0.10);
    border-top: 4px solid #f47721;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(23, 71, 125, 0.15);
}

.service-category h3 {
    color: #17477d;
    font-size: 27px;
    margin: 0 0 20px;
    text-align: center;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 35px;
}

.service-category li {
    position: relative;
    padding-left: 25px;
    color: #526b82;
    font-size: 16px;
    line-height: 1.5;
}

.service-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #f47721;
    font-weight: bold;
}

.service-category p {
    color: #526b82;
    font-size: 16px;
    line-height: 1.7;
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid #e8eef4;
}


/* Closing statement */

.services-closing {
    text-align: center;
    max-width: 900px;
    margin: 45px auto 60px;
    padding: 25px;
}

.services-closing strong {
    color: #17477d;
    font-size: 20px;
    line-height: 1.6;
}


/* Mobile */

@media (max-width: 768px) {

    .service-category {
        margin: 20px;
        padding: 25px 22px;
    }

    .service-category h3 {
        font-size: 23px;
    }

    .service-category ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-category li {
        font-size: 15px;
    }

    .services-closing {
        margin: 35px 20px 50px;
    }

    .services-closing strong {
        font-size: 18px;
    }
}

/* Closing statement */

.services-closing {
    text-align: center;
    max-width: 900px;
    margin: 45px auto 60px;
    padding: 25px;
}

.services-closing strong {
    color: #17477d;
    font-size: 20px;
    line-height: 1.6;
}


/* Mobile responsive */

@media (max-width: 768px) {

    .services-intro {
        padding: 0 20px;
    }

    .services-intro h2 {
        font-size: 30px;
    }

    .services-intro p {
        font-size: 16px;
    }

    .service-category {
        margin: 20px;
        padding: 25px 22px;
    }

    .service-category h3 {
        font-size: 23px;
    }

    .service-category li {
        font-size: 16px;
    }

    .services-closing {
        margin: 35px 20px 50px;
    }

    .services-closing strong {
        font-size: 18px;
    }
}
/* ================================
   HERO HOME CARE IMAGE
================================ */

.hero-image {
    position: relative;
    width: 100%;
    height: 495px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(20, 63, 110, 0.14);
    background: #eaf3fa;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Bottom information label */
.hero-image-label {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;

    padding: 20px 24px;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}
.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(20, 60, 100, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero-image-label h3 {
    margin: 0 0 7px;

    color: #123f73;
    font-size: 24px;
    font-weight: 700;
}

.hero-image-label p {
    margin: 0;

    color: #526b80;
    font-size: 16px;
}
/* Hero right-side image */
.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(20, 60, 100, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    min-width: 0;
}

.hero-image {
    min-width: 0;
}
/* =========================
   SOCIAL MEDIA
   ========================= */

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    color: #123f73;
    font-size: 22px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    min-width: 210px;
    text-decoration: none;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(20, 60, 100, 0.10);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 60, 100, 0.16);
}

.social-link span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.social-link strong {
    display: block;
    color: #123f73;
    font-size: 16px;
}

.social-link small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 12px;
}

.facebook span {
    background: #1877f2;
}

.instagram span {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
/* =========================================
   CARE COMMITMENT - HIGHLIGHTED HEADING
   ========================================= */

.care-commitment {
    padding: 90px 7%;
    text-align: center;
}

/* Orange boxed section label */
.care-commitment .section-tag {
    display: inline-block;
    color: #f97316;
    border: 2px solid #f97316;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    background: #ffffff;
    margin-bottom: 25px;
}

/* Main heading */
.care-commitment h2 {
    color: #123f78;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 auto 22px;
    max-width: 1100px;
}

/* Orange underline */
.care-commitment h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: #f97316;
    border-radius: 5px;
    margin: 25px auto 35px;
}

/* Paragraphs */
.care-commitment p {
    color: #244d73;
    font-size: 20px;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto 25px;
}

/* Highlight box */
.care-commitment-highlight {
    max-width: 900px;
    margin: 35px auto 0;
    padding: 25px 35px;
    background: #123f78;
    color: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(18, 63, 120, 0.18);
}

.care-commitment-highlight h3 {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 800;
}

.care-commitment-highlight p {
    color: white;
    margin: 0;
    font-size: 18px;
}

/* Final orange statement */
.care-commitment strong {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    color: #f97316;
    border: 2px solid #f97316;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 800;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .care-commitment {
        padding: 60px 5%;
    }

    .care-commitment .section-tag {
        font-size: 16px;
        padding: 8px 18px;
    }

    .care-commitment h2 {
        font-size: 34px;
    }

    .care-commitment p {
        font-size: 17px;
    }

    .care-commitment-highlight {
        padding: 22px;
    }

    .care-commitment-highlight h3 {
        font-size: 21px;
    }

    .care-commitment strong {
        font-size: 18px;
    }
}
/* =========================================
   COMMON SECTION HEADING STYLE
   ========================================= */

.section-tag {
    display: inline-block;
    color: #f97316;
    border: 2px solid #f97316;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    background: #ffffff;
    margin-bottom: 22px;
}

/* ABOUT US */
.about-section .section-tag {
    font-size: 22px;
}

/* OUR SERVICES */
.services-section .section-tag {
    font-size: 22px;
}

/* WHY CHOOSE US */
.why-section .section-tag {
    font-size: 22px;
}

/* CONTACT */
.contact-section .section-tag {
    font-size: 22px;
}


/* =========================================
   BIG BLUE SECTION HEADINGS
   ========================================= */

.about-section h2,
.services-section h2,
.why-section h2,
.contact-section h2 {
    color: #123f78;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}


/* =========================================
   ORANGE UNDERLINE
   ========================================= */

.about-section h2::after,
.services-section h2::after,
.why-section h2::after,
.contact-section h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: #f97316;
    border-radius: 5px;
    margin: 22px auto 30px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .section-tag {
        font-size: 16px;
        padding: 8px 18px;
    }

    .about-section h2,
    .services-section h2,
    .why-section h2,
    .contact-section h2 {
        font-size: 34px;
    }
}
/* =========================================
   OUR OFFICE SECTION
   ========================================= */

.office-section {
    padding: 100px 7%;
    background: #ffffff;
    text-align: center;
}

.office-header {
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Section label */
.office-section .section-tag {
    display: inline-block;
    color: #f97316;
    border: 2px solid #f97316;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    background: #ffffff;
    margin-bottom: 22px;
}

/* Main heading */
.office-section h2 {
    color: #123f78;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 25px;
}

/* Orange line */
.office-section h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: #f97316;
    border-radius: 5px;
    margin: 22px auto 30px;
}

/* Description */
.office-section .office-header p {
    color: #244d73;
    font-size: 19px;
    line-height: 1.7;
    margin: 0 auto;
}

/* Image gallery */
.office-gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Individual image container */
.office-image {
    height: 380px;
    overflow: hidden;
    border-radius: 18px;
    background: #f4f8fb;
    box-shadow: 0 10px 30px rgba(18, 63, 120, 0.12);
}

/* Images */
.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Gentle hover effect */
.office-image:hover img {
    transform: scale(1.03);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .office-section {
        padding: 70px 5%;
    }

    .office-section .section-tag {
        font-size: 16px;
        padding: 8px 18px;
    }

    .office-section h2 {
        font-size: 34px;
    }

    .office-section .office-header p {
        font-size: 17px;
    }

    .office-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .office-image {
        height: 300px;
    }
}