button {
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 1rem;
    color: white;
    background-color: #ff5c33;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover,
button:hover {
    background-color: #e64a19;
}


/* Team Card Styles (from teamdream-noImages) */

.min-height-screen {
    min-height: 100vh;
}


/* Style for Contact Us button in header */

.header .btn.primary {
    padding: 10px 14px !important;
    color: #0068A5 !important;
    border-radius: 5px;
    border: 1px solid #0068A5;
    background: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-left: 20px;
}

.header .btn.primary:hover {
    background: #0068A5 !important;
    color: #fff !important;
}

.team {
    margin-top: 50px;
    padding: 20px;
}

.card {
    overflow: clip;
    border-radius: 16px;
    border-color: #e5e5e5;
    transition: .3s all ease-in;
    height: 500px;
    flex: 1 1 calc(25% - 20px);
    /* 4 cards per row */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
}

.card:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.card-body {
    position: relative;
    background-color: #fff;
    width: 100%;
    padding: 1rem 1rem;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.card-text {
    font-size: 16px;
    font-weight: 500;
    /* Ensure all member cards are visible in a grid */
    /* Remove custom flexbox rules for .row and .col-lg-3 to restore Bootstrap grid behavior */
    margin-bottom: 6px;
    line-height: 28px;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .3rem;
}

.card-text i.mdi {
    font-size: .9rem;
    opacity: .6;
}

.card-location {
    color: #979797;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 28px;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .3rem;
}

.card-img {
    border-radius: .6rem .6rem .8rem .8rem;
    width: 100%;
    height: 450px;
    object-fit: contain;
    object-position: center;
}

.card-social {
    position: absolute;
    top: 0;
    transform: translate(-20px, -45px);
}

.card-social a.email {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0066cc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}

.card-social a.email i {
    font-size: 1.3rem;
    /* Reduced by 2px from 1.4rem */
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #55acee;
}

.whatsapp {
    background-color: #25d366;
}

.email {
    background-color: #0066cc;
}

.snapchat {
    background-color: #fffc00;
}

.linkedin {
    background-color: #0a66c2;
}

.reddit {
    background-color: #ff4500;
}

.youtube {
    background-color: #ff0000;
}

@media (max-width: 991.98px) {
    .w-50 {
        width: 75% !important;
    }
}

@media (max-width: 767.98px) {
    .w-50 {
        width: 100% !important;
    }
}


/* Hero Section */

.hero {
    position: relative;
    min-height: 600px;
    height: 600px;
    /* Default height for hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 600px;
    /* Match new default hero height */
    background: url('hero-background.png') no-repeat;
    background-size: cover;
    background-position: center 7px;
    filter: brightness(100%);
    z-index: 1;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 600px;
    /* Overlay now covers the entire hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}


/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 25px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0px !important;
    /* padding-right: 16px !important; */
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}


/* Hero Content */

.content {
    text-align: center;
    color: white;
    padding: 40px;
    border-radius: 12px;
    letter-spacing: 0.9px;
}

.content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: 0.9px;
}

.content p {
    font-size: 1.25rem;
    margin: 10px 0;
    letter-spacing: 0.9px;
}


/* CTA Buttons */

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.chat-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
}

.chat-line p {
    margin: 0;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.btn {
    color: #ffffff !important;
    border-radius: 50px;
    background-color: #FF6830;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    padding: 10px 14px !important;
    color: #ffffff !important;
    border-radius: 50px;
    background-color: #FF6830;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px !important;
    border: 2px solid #ff6830;
}

.btn-icon {
    width: 38px;
    height: 28px;
    width: auto;
    max-width: 90px;
}

.logo img {
    height: 38px;
    width: auto;
    margin-left: 19px;
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.5rem;
    padding: 10px 20px;
}

.btn.secondary:hover {
    background: white;
    color: #0068A5;
}


/* Mobile-only sticky Contact Us button */

@media (max-width: 500px) {
    .mobile-contact-btn {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        /* padding: 20px 20px; */
        background-color: #0068A5 !important;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        border: none;
        border-radius: 0 !important;
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15), 0px 7px 29px rgba(0, 0, 0, 0.2);
        z-index: 1050;
        width: 99.5%;
        text-align: center;
        border: 20px solid #ffffff !important;
        justify-content: center;
    }
    /* Hover effect */
    .mobile-contact-btn:hover {
        background-color: #00507F !important;
        /* Darker shade for hover */
        color: #fff !important;
        text-decoration: none;
    }
}


/* Footer */

.footer {
    background-color: #0068A5;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

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

.social-icons {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 24px;
    /* Increased space between icons */
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    /* Makes the icon white */
}


/* Remove conflicting styles from .footer p, keep only .footer for background and centering */

@media (max-width: 500px) {
    .header .btn.primary {
        display: none;
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .header-container {
        /* flex-direction: column; */
        gap: 15px;
    }
    .navigation ul {
        gap: 20px;
    }
    .navigation a {
        font-size: 14px;
    }
    .content h1 {
        font-size: 2rem;
    }
}

.chat-line {
    flex-direction: column;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.chat-line p {
    white-space: normal;
    text-align: center;
}

.cta-buttons {
    flex-direction: column;
    gap: 0.5rem;
}

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