* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #fff;
}

/* ===================== NAVBAR ===================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(70, 70, 70, 0.9);
    z-index: 999;
}

nav {
    max-width: 1340px;
    height: 100px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===================== LOGO ===================== */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-img {
    height: 3rem;
    object-fit: contain;
}

/* ===================== NAV LINKS ===================== */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
}

/* Anchor Tags & Dropdown Button */
.nav-links a,
.dropdown-btn {
    text-decoration: none;
    color: black;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 1rem;
    background: transparent;
    border: none;
}

/* Active Capsule */
.nav-links a.active,
.dropdown-btn.active {
    background-color: #235097;
    color: white !important;
    font-weight: 600;
}

/* Hover Effect */
.nav-links a:hover,
.dropdown-btn:hover {
    color: #235097;
}

/* ===================== DROPDOWN ===================== */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-left: 19px;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(70, 70, 70, 0.9);
    min-width: 200px;
    border-radius: 4px;
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

/* ===================== HERO SECTION ===================== */
.hero {
    height: 100vh;
    background: url('image/home-background-img.webp') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero-content {
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    margin-top: 150px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #002744, #1397ec);
    background-size: 150%;
    /* Allows more control over position */
    background-position: 80% center;
    /* Adjust this to slide left/right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: black;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
    font-size: 20px;
}

.btn-connect {
    display: inline-block;
    padding: 15px 40px;
    background-color: #235097;
    color: white;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
    position: relative;
    overflow: hidden;
}

.btn-connect:hover {
    background-color: #1a3a7a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-connect:active {
    transform: translateY(1px);
}

.btn-connect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-connect:hover::after {
    left: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Floating particles effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .btn-connect {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===================== SERVICE CARDS ===================== */

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

.btn {
    display: inline-block;
    background: #0f2147;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn:hover {
    background: #235097;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(15, 33, 71, 0.3);
}

.section-title {
    font-size: 2.2rem;
    background: linear-gradient(to right, #0f2147, #122e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== Services Section ===== */

.services-container {
    display: flex;
    gap: 30px;
    margin-top: 100px;
}

.service-nav {
    flex: 1;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.service-nav-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-nav-card:hover,
.service-nav-card.active {
    border-left: 4px solid #0f2147;
    background: white;
    box-shadow: 0 5px 20px rgba(15, 33, 71, 0.1);
}

.service-nav-card h3 {
    color: #0f2147;
    margin-bottom: 10px;
}

.service-nav-card p {
    color: #666;
    font-size: 0.9rem;
}

.service-content {
    flex: 2;
}

.service-card {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: none;
    border-left: 2px solid #0f2147;
    border-top: 0px;
    border-right: 0px;
    border-bottom: 0px;
}

.service-card.active {
    display: block;
}

.service-card h2 {
    color: #0f2147;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-card .best-for {
    font-weight: 500;
    color: #235097;
    margin-bottom: 15px;
}

.service-img {
    margin-bottom: 20px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img:hover img {
    transform: scale(1.05);
}

.service-features {
    margin: 20px 0;
}

.service-features li {
    list-style: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    margin-left: -10px;
}

.service-features li i {
    color: #235097;
    margin-right: 10px;
}

.use-case {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-style: italic;
    margin-left: -15px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
    }

    .service-nav {
        position: static;
        display: flex;
        gap: 15px;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .service-nav-card {
        min-width: 200px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .service-img {
        height: 200px;
    }
}

/* ===================== ACHIEVEMENTS ===================== */
.achievements {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.achievements h2 {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 1.8rem;
}

.stats {
    display: flex;
    margin-bottom: 100px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    background: linear-gradient(to right, #235097, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    font-weight: bold;
    color: black;
}

/* ===================== FOOTER ===================== */
footer {
    background-color: #161F2D;
    color: white;
    padding: 40px 20px 10px 20px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

.footer-section {
    flex: 1 1 220px;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: white;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Icon Row Before Copyright */

.footer-divider-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    margin-bottom: 10px;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: #ccc;
    width: 90%;
    max-width: 1300px;
    opacity: 0.6;
}

.footer-icons-row {
    width: 100%;
    padding: 5px 0;
    margin-top: 30px;
    background-color: transparent;
    /* Keeps background see-through */
    display: flex;
    justify-content: center;
    /* Centers the icons horizontally */
    align-items: center;
    gap: 30px;
    /* Spacing between icons */
}

.footer-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-icon:hover {
    transform: scale(1.15);
    /* Slight zoom on hover */
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
}

/* ========================== MOBILE RESPONSIVE of Home =========================== */

/* ===================== NAVBAR - MOBILE RESPONSIVE ===================== */

@media (max-width: 992px) {
    nav {
        height: auto;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        justify-content: left;
        margin-bottom: 1rem;
    }

    .logo-img {
        height: 4rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        display: none;
        /* Hidden by default, shown via hamburger */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a,
    .dropdown-btn {
        padding: 10px;
        border-radius: 5px;
        width: 100%;
        text-align: center;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        margin-left: 0;
        width: 100%;
        box-shadow: none;
    }

    /* Mobile menu toggle */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1rem;
        cursor: pointer;
        z-index: 1000;
        margin-top: 20px;
    }

    .hamburger {
        width: 30px;
        height: 3px;
        background: #235097;
        display: block;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger:before,
    .hamburger:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #235097;
        transition: all 0.3s ease;
    }

    .hamburger:before {
        top: -8px;
    }

    .hamburger:after {
        top: 8px;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger:before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.active .hamburger:after {
        top: 0;
        transform: rotate(-45deg);
    }
}

/* ===================== FOOTER - MOBILE RESPONSIVE ===================== */

@media (max-width: 936px) {
    footer {
        padding: 30px 15px 10px;
    }

    .footer-sections {
        flex-direction: column;
        gap: 25px;
    }

    .footer-section {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .footer-section a {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

    .footer-icons-row {
        gap: 15px;
        margin-top: 20px;
    }

    .footer-icon {
        width: 35px;
        height: 35px;
    }

    .copyright {
        margin-top: 20px;
        font-size: 0.8rem;
    }
}

/* ===================== HERO SECTION - MOBILE RESPONSIVE ===================== */

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 100px 20px 60px;
    }

    .hero-content {
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .btn-connect {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ===================== SERVICES SECTION - MOBILE RESPONSIVE ===================== */

@media (max-width: 992px) {
    .service-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        overflow: hidden !important;
        padding: 0 10px 10px !important;
    }

    .service-nav-card {
        flex: 0 0 calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
        margin: 0 !important;
        text-align: center !important;
        padding: 15px 5px !important;
    }
}

@media (max-width: 600px) {
    .service-nav-card {
        flex: 0 0 90% !important;
        max-width: 90% !important;
    }

    .service-nav-card h3 {
        white-space: normal !important;
    }
}

/* Prevent horizontal scroll */
@media (max-width: 992px) {

    html,
    body {
        overflow-x: hidden !important;
    }

    .service-nav {
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    .service-nav::-webkit-scrollbar {
        display: none !important;
    }
}

/* ===================== ACHIEVEMENTS - MOBILE RESPONSIVE ===================== */

@media (max-width: 768px) {
    .achievements h2 {
        margin: 30px 0;
        font-size: 1.5rem;
    }

    .stats {
        gap: 1.5rem;
        margin-bottom: 50px;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.9rem;
    }
}

/* ============================== About CSS =================================== */

/* ===== Top Half: About Hero Section ===== */
.about-hero {
    margin-top: 100px;
    height: 550px;
    background: url('image/laptop-bg.webp') center center/cover no-repeat;
    position: relative;
}

.about-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    /* <-- You can adjust opacity here */
    width: 100%;
    height: 100%;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.about-overlay h1 {
    color: #fff;
    font-size: 3rem;
    margin-left: 130px;
}

.about-content-box {
    margin-left: 100px;
    margin-top: 30px;
    background-color: #161F2D;
    color: white;
    max-width: 1000px;
    padding: 30px;
    border-radius: 10px;
}

.about-content-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-content-box p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== Lower Half: Team Section ===== */

.team-section {
    background-color: #fff;
    padding: 80px 20px;
}

.team-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.team-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-sub {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.section-divider {
    width: 100px;
    /* adjust as needed */
    height: 4px;
    width: 1000px;
    background: linear-gradient(to right, #235097, #00bfff);
    margin: 20px auto 40px auto;
    /* top, right/left center, bottom */
    border-radius: 10px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.team-member {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #000;
}

.team-member h4 {
    margin: 5px 0;
    color: #235097;
    font-weight: normal;
}

.team-member p {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444;
}

/* ========================== MOBILE RESPONSIVE of About =========================== */

/* ================= ABOUT PAGE RESPONSIVE MEDIA QUERIES ================= */

/* Tablet View (768px - 992px) */
@media (max-width: 992px) {
    .about-hero {
        height: auto;
        min-height: 500px;
    }
    
    .about-overlay h1 {
        margin-left: 60px !important;
        font-size: 2.5rem !important;
    }
    
    .about-content-box {
        margin-left: 50px !important;
        max-width: 90% !important;
        padding: 25px !important;
    }
    
    .team-grid {
        gap: 30px !important;
    }
    
    .section-divider {
        width: 90% !important;
    }
}

/* Mobile Landscape (600px - 768px) */
@media (max-width: 768px) {
    .about-hero {
        margin-top: 80px !important;
    }
    
    .about-overlay {
        padding: 60px 15px !important;
    }
    
    .about-overlay h1 {
        margin-left: 30px !important;
        font-size: 2.2rem !important;
    }
    
    .about-content-box {
        margin-left: 20px !important;
        margin-right: 20px !important;
        padding: 20px !important;
    }
    
    .team-section {
        padding: 60px 15px !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .team-member {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}

/* Mobile Portrait (<600px) */
@media (max-width: 600px) {
    .about-overlay h1 {
        margin-left: 15px !important;
        font-size: 2rem !important;
    }
    
    .about-content-box {
        margin: 20px 15px !important;
        padding: 15px !important;
    }
    
    .about-content-box h2 {
        font-size: 1.5rem !important;
    }
    
    .team-container h2 {
        font-size: 1.8rem !important;
    }
    
    .team-sub {
        font-size: 0.9rem !important;
    }
    
    .team-photo {
        width: 80px !important;
        height: 80px !important;
    }
    
    .team-member h3 {
        font-size: 1.1rem !important;
    }
    
    .team-member h4 {
        font-size: 0.95rem !important;
    }
}

/* Small Mobile (<400px) */
@media (max-width: 400px) {
    .about-overlay h1 {
        font-size: 1.8rem !important;
        margin-left: 10px !important;
    }
    
    .about-content-box h2 {
        font-size: 1.3rem !important;
    }
    
    .about-content-box p {
        font-size: 0.9rem !important;
    }
    
    .team-container h2 {
        font-size: 1.6rem !important;
    }
}


/* ================================ Contact ==================================== */

/* ===== Upper Half ===== */
.contact-hero {
    background: url('image/laptop-bg.webp') center center/cover no-repeat;
    height: 45vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-hero .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* semi-transparent overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.contact-hero h1 {
    font-size: 3rem;
    color: white;
    z-index: 1;
    padding-left: 65px;
    padding-top: 80px;
}

/* ===== Lower Half ===== */
.contact-lower {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;
    gap: 3rem;
    flex-wrap: wrap;
    background: white;
}

/* ===== Left Side (Form) ===== */
.contact-left {
    flex: 1 1 600px;
}

.contact-left h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

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

.form-row {
    display: flex;
    gap: 15px;
}

input,
textarea {
    flex: 1;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 300px;
}

button[type="submit"] {
    background-color: #08519c;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
}

/* ===== Right Side (Info + Map) ===== */
.contact-right {
    flex: 1 1 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-right p {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-right .icon {
    margin-right: 8px;
}

.contact-right a {
    color: #08519c;
    text-decoration: none;
}

.map-container {
    margin-top: 20px;
    width: 100%;
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#thankYouMessage {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #e1e1e1;
}

#thankYouMessage h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

#thankYouMessage p {
    font-size: 1.1rem;
    color: #555;
}


/* ========================== MOBILE RESPONSIVE of Contact Page =========================== */

/* ================= CONTACT PAGE RESPONSIVE MEDIA QUERIES ================= */

/* Tablet View (768px - 992px) */
@media (max-width: 992px) {
    .contact-hero {
        height: 35vh !important;
    }
    
    .contact-hero h1 {
        padding-left: 40px !important;
        font-size: 2.5rem !important;
    }
    
    .contact-lower {
        padding: 40px 20px !important;
        gap: 2rem !important;
    }
    
    .form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }
}

/* Mobile Landscape (600px - 768px) */
@media (max-width: 768px) {
    .contact-hero {
        height: 30vh !important;
        justify-content: center !important;
    }
    
    .contact-hero .overlay {
        padding-left: 0 !important;
        justify-content: center !important;
    }
    
    .contact-hero h1 {
        padding-left: 0 !important;
        text-align: center !important;
        font-size: 2.2rem !important;
    }
    
    .contact-lower {
        flex-direction: column !important;
        padding: 30px 15px !important;
    }
    
    .contact-left, 
    .contact-right {
        flex: 1 1 100% !important;
    }
    
    .map-container {
        height: 200px !important;
    }
}

/* Mobile Portrait (<600px) */
@media (max-width: 600px) {
    .contact-hero {
        height: 25vh !important;
    }
    
    .contact-hero h1 {
        font-size: 2rem !important;
        padding-top: 100px !important;
    }
    
    .contact-left h3 {
        font-size: 1rem !important;
    }
    
    input, 
    textarea {
        font-size: 0.95rem !important;
    }
    
    button[type="submit"] {
        width: 100% !important;
        align-self: center !important;
    }
    
    .contact-right h2 {
        font-size: 1.3rem !important;
    }
    
    .contact-right p {
        font-size: 0.95rem !important;
    }
    
    #thankYouMessage h2 {
        font-size: 1.8rem !important;
    }
    
    #thankYouMessage p {
        font-size: 1rem !important;
    }
}

/* Small Mobile (<400px) */
@media (max-width: 400px) {
    .contact-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .form-row {
        gap: 10px !important;
    }
    
    .map-container {
        height: 180px !important;
    }
}