/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base font settings */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f8ff;
}

/* Header fonts */
.pre-heading {
    font-family: 'Lexend', sans-serif;
}

.hero-content h1 {
    font-family: 'Lexend', sans-serif;
}

.menu a {
    font-family: 'Lexend', sans-serif;
}

.menu ul li a.active {
    position: relative;
}

.menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff9100;
}

/* Body text */
.hero-content p {
    font-family: 'Inter', sans-serif;
}

.primary-btn, .secondary-btn {
    font-family: 'Inter', sans-serif;
}

.contact-title {
    padding: 180px 90px 120px;
    text-align: center;
    background: linear-gradient(45deg, rgba(17, 27, 82, 0.884), rgba(0, 78, 127, 0.653)),
                url('assets/images/contact\ us.jpg') no-repeat center;
    background-size: cover;
    color: #ffffff;
}

.contact-title h1 {
    font-family: 'Lexend', sans-serif;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: #ffffff;
    margin: 15px auto;
}


.contactUs-info {
    padding: 120px 90px;
    background-color: #f5f8ff;
}

.contactUs-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-box {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 40px;
    color: #4665BB;
    margin-bottom: 20px;
}

.info-box h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.info-box p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.location-btn, .contact-btn {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    color: #4665BB;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.location-btn i, .contact-btn i {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: translateY(-1px);
}

.location-btn:hover i, .contact-btn:hover i {
    transform: translateX(5px);
}

.info-box a {
    color: #4665BB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-box a:hover {
    color: #1a2980;
}

.consultation-cta {
    padding: 120px 90px;
    background: linear-gradient(45deg, rgba(17, 27, 82, 0.884), rgba(0, 78, 127, 0.653)),
                url('assets/images/pexels-tima-miroshnichenko-6694543.jpg') no-repeat center;
    background-size: cover;
    text-align: center;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cta-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.consultation-cta h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    padding: 0%  20%;;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #ffffff;
    padding: 15px 40px;
    color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #ffffff;
    color: #4665BB;
}

/* Tablet styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .contact-title {
        padding: 140px 60px 100px;
    }

    .title-container h1 {
        font-size: 52px;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .contact-title {
        padding: 120px 20px 80px;
    }

    .title-container h1 {
        font-size: 36px;
    }

    .title-container .underline {
        width: 60px;
        height: 3px;
    }
}

/* Tablet styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .contactUs-info {
        padding: 80px 40px;
    }

    .contactUs-info-container {
        gap: 30px;
    }

    .info-box {
        padding: 30px;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .contactUs-info {
        padding: 60px 20px;
    }

    .contactUs-info-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    .info-box {
        width: 100%;
        max-width: none;
        text-align: center;
        padding: 30px 20px;
        margin: 0;
        border-bottom: 1px solid #00012c26;
    }

    .info-box:last-child {
        border-bottom: none;
    }

    .info-box i {
        align-items: center;
        background: transparent;
        border: none;
        padding: 8px 0;
    }

    .location-btn, .contact-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .location-btn i, .contact-btn i {
        margin: 0;
    }
}

/* Tablet styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .consultation-cta {
        padding: 80px 40px;
    }

    .cta-container h2 {
        font-size: 42px;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .consultation-cta {
        padding: 60px 20px;
    }

    .cta-container {
        text-align: center;
    }

    .cta-subtitle {
        text-align: center;
    }

    .cta-container h2 {
        font-size: 32px;
        text-align: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Office Image Box in Contact Info */
.office-image-box {
    padding: 0 !important;
    overflow: hidden;
}

.office-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 41, 128, 0.8), rgba(70, 101, 187, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-image:hover .image-overlay {
    opacity: 1;
}

    .overlay-content {
        text-align: center;
        color: #ffffff;
        padding: 20px;
    }

    .overlay-content i {
        font-size: 32px;
        margin-bottom: 10px;
        color: #ffffff;
        opacity: 1;
    }

    .overlay-content h3 {
        font-family: 'Lexend', sans-serif;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #ffffff;
    }

    .overlay-content p {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: #f8f9fa;
        opacity: 1;
        margin: 0;
    }




/* Offices moved from Update Hub */
.office-locations {
    padding: 120px 90px;
    background-color: #ffffff;
}

.office-locations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.office-header {
    text-align: center;
    margin-bottom: 60px;
}

.office-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #4665BB;
    margin-bottom: 15px;
}

.office-header h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #4665BB;
    margin-bottom: 15px;
}

.office-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #555;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.office-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: none;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    border: 1px solid rgba(70, 101, 187, 0.12);
    position: relative;
    overflow: hidden;
}

.office-card::before {
    display: none;
}

.office-card:hover::before {
    opacity: 0;
}

.office-card.main-office {
    border: 1px solid rgba(70, 101, 187, 0.28);
    background: linear-gradient(160deg, #fff 0%, #eef2ff 100%);
    box-shadow: none;
}

.office-card.main-office::before {
    display: none;
}

.office-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 41, 128, 0.07);
    border-color: rgba(70, 101, 187, 0.28);
}

.office-badge {
    display: inline-block;
    background: rgba(70, 101, 187, 0.1);
    color: #4665BB;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: none;
    position: relative;
}

.office-badge.location-badge {
    background: rgba(255, 107, 53, 0.12);
    color: #ff6b35;
    box-shadow: none;
}

.office-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4665BB 0%, #1a2980 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(70, 101, 187, 0.25);
    position: relative;
    transition: all 0.3s ease;
}

.office-card:hover .office-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(70, 101, 187, 0.35);
}

.office-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(70, 101, 187, 0.2), rgba(26, 41, 128, 0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-card:hover .office-icon::after {
    opacity: 1;
}

.office-icon i {
    font-size: 32px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.office-icon svg {
    color: #ffffff;
}

.office-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a2980;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.office-details {
    text-align: left;
    margin-bottom: 25px;
    background: rgba(70, 101, 187, 0.03);
    padding: 20px 15px;
    border-radius: 10px;
    border-left: 3px solid #4665BB;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 12px;
    transition: transform 0.2s ease;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item:hover {
    transform: translateX(3px);
}

.detail-item i {
    color: #4665BB;
    font-size: 16px;
    margin-top: 3px;
    min-width: 16px;
    filter: drop-shadow(0 1px 2px rgba(70, 101, 187, 0.2));
}

.detail-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.detail-item strong {
    color: #1a2980;
    font-size: 13px;
    font-weight: 600;
}

.office-btn {
    background: linear-gradient(135deg, #4665BB 0%, #1a2980 100%);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(70, 101, 187, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.office-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.office-btn:hover::before {
    width: 300px;
    height: 300px;
}

.office-btn:hover {
    background: linear-gradient(135deg, #1a2980 0%, #0f1a4d 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(70, 101, 187, 0.4);
}

.office-btn:active {
    transform: translateY(-1px);
}

.office-btn.coming-soon {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.office-btn.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.office-btn.coming-soon::before {
    display: none;
}


