html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    overflow-x: hidden;
    background-color: #fff !important;
}

h1,
h2,
h3 {
    font-family: Poppins, sans-serif;
}

a {
    text-decoration: none
}

header {
    height: 100%;
    position: relative;
    z-index: 3;
}

header:after {
    content: '';
    display: none;
}

header h1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: fit-content;
    height: fit-content;
    color: #006fa3;
    font-size: 6vw;
    text-transform: uppercase;
    transition: all 0.2s;
    cursor: wait
}

header h1:hover {
    text-shadow: 0 0 10px #006fa3;
}


.navbar {
    position: absolute;
    width: 100%;
    height: 0;
    transition: background .5s ease
}

.navbar_brand {
    position: absolute;
    top: 30px;
    left: 30px;
    display: inline-block;
    z-index: 999999;
    font: 500 2em/1 Poppins;
    color: #006fa3
}

.navbar_brand .brand-outline {
    color: transparent;
    -webkit-text-stroke: 1px #006fa3 !important;
    ;
    text-stroke: 1px #006fa3 !important;
    ;
}


.navbar_opener {
    display: inline-block;
    width: 64px;
    height: 48px;
    position: fixed;
    transform: rotate(0deg);
    cursor: pointer;
    top: 23px;
    right: 14px;
    z-index: 999999;
    background: transparent;
    border: 0;
    outline: 0
}

.navbar_opener span {
    display: block;
    position: absolute;
    height: 3px;
    width: 32px;
    opacity: 1;
    left: 16px;
    transform: rotate(0deg);
    transition: .25s ease-in-out, background-color .3s ease-out;
    background: var(--on-primary)
}

.navbar_opener span:first-child {
    top: 13px
}

.navbar_opener span:nth-child(2),
.navbar_opener span:nth-child(3) {
    top: 21px
}

.navbar_opener span:nth-child(4) {
    top: 29px
}

.navbar_opener:hover span {
    background: var(--primary) !important;

    box-shadow: 0 0 5px var(--primary) !important;
}

.navbar_opener-opened span {
    background: #fff !important
}

.navbar_opener-opened span:first-child,
.navbar_opener-opened span:nth-child(4) {
    top: 21px;
    width: 0;
    left: 50%
}

.navbar_opener-opened span:nth-child(2) {
    transform: rotate(45deg)
}

.navbar_opener-opened span:nth-child(3) {
    transform: rotate(-45deg)
}

.navbar_opener-opened:hover span {
    background: var(--primary) !important;
}

.navbar_brand,
.navbar_opener,
.navbar_title {
    transition: top .5s ease, opacity .5s ease
}

.navbar_menu {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999998;
    background-color: #111517ee;
    height: 100%;
    width: 100%;
    transition: opacity .3s ease, visibility .3s ease;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar_menu .menu {
    margin-left: 0;
    padding: 2rem 0 0;
}

.navbar_menu .menu .menu_list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.625rem;
    transition: opacity .3s ease-in;
    visibility: hidden;
    opacity: 0
}

/* Remove left offset on lists to avoid clipping */
.navbar_menu .menu .menu_list-main,
.navbar_menu .menu .menu_list-alter {
    padding-left: 0;
    margin-left: 0;
}

/* Make links full-width and add internal padding instead */
.navbar_menu .menu .menu_item .menu_link {
    display: block;
    width: 100%;
    padding: .5rem 2rem;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

/* Ensure both lists align to the same left edge */
.navbar_menu .menu .menu_list-main .menu_link,
.navbar_menu .menu .menu_list-alter .menu_link {
    padding-left: 1.25rem;
}

/* Ensure secondary list also has left offset */
.navbar_menu .menu .menu_list-alter {
    padding-left: 2rem;
}

.navbar_menu .menu .menu_item {
    padding: 0;
    margin: 0
}

.navbar_menu .menu .menu_item:before {
    display: none
}

.navbar_menu .menu .menu_item .menu_link {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 18px;
    font-size: 1.125rem;
    color: #888;
    text-decoration: none;
    line-height: 1.7777;
    transition: color .3s;
    position: relative;
    overflow: hidden;
    display: inline-block
}

.navbar_menu .menu .menu_item .menu_link:hover {
    color: #fff;
    text-shadow: 0 0 5px #006fa3;
}

.navbar_menu .menu .menu_item .menu_link-active {
    color: #006fa3 !important
}

.navbar_menu .menu .menu_item .menu_link-anim .link_layer {
    position: absolute;
    left: 1;
    overflow: hidden;
    background-color: #111517;
    width: calc(100% - 4rem);
    display: block;
    transform: translate3d(-100%, 0, 0);
    animation: anim-out-layer .3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.navbar_menu .menu .menu_item .menu_link-anim .link_layer:before {
    background-color: #111517;
    content: attr(data-text);
    width: 100%;
    display: block;
    transform: translate3d(100%, 0, 0);
    color: #006fa3;
    animation: anim-out-text .3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.navbar_menu .menu .menu_item .menu_link-anim:hover .link_layer {
    animation: anim-in-layer .3s ease forwards
}

.navbar_menu .menu .menu_item .menu_link-anim:hover .link_layer:before {
    animation: anim-in-text .3s ease forwards
}

.navbar_menu .menu .menu_item-big .menu_link {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 32px;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.22;
    color: #fff
}

.navbar-fixed.navbar-opened {
    height: 100%
}

.navbar-opened .navbar_menu {
    visibility: visible;
    opacity: 1
}

.navbar-opened .menu .menu_list-main {
    animation: showNavigation .9s ease forwards;
    visibility: visible
}

.navbar-opened .menu .menu_list-alter {
    animation: showNavigation .9s .2s ease forwards;
    visibility: visible
}

.navbar_menu .social {
    margin-left: 8px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease-in;
    text-align: right;
    padding: 35px
}

.navbar-opened .social {
    animation: showSocials .9s ease .4s forwards;
    visibility: visible
}

.social a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    display: inline-block;
    width: 35px
}

.social a:hover {
    text-shadow: 0 0 5px var(--primary);
}

.navbar-opened .navbar_opener span {
    background: #fff !important
}

.navbar-opened .navbar_opener span:first-child,
.navbar-opened .navbar_opener span:nth-child(4) {
    top: 21px;
    width: 0;
    left: 50%
}

.navbar-opened .navbar_opener span:nth-child(2) {
    transform: rotate(45deg)
}

.navbar-opened .navbar_opener span:nth-child(3) {
    transform: rotate(-45deg)
}

.navbar-opened .navbar_opener:hover span {
    background: var(--primary) !important
}

.navbar-opened .navbar_brand {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

@keyframes showNavigation {
    0% {
        transform: translate3d(0, -40px, 0);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes showSocials {
    0% {
        transform: translate3d(0, -40px, 0);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes anim-in-layer {
    0% {
        transform: translate3d(-100%, 0, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes anim-out-layer {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes anim-in-text {
    0% {
        transform: translate3d(100%, 0, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes anim-out-text {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-100%, 0, 0)
    }
}

#case {
    background: #006fa3 url(https://i.imgur.com/SMG8MCh.png) 180% 50% no-repeat;
    height: 80vh;
    background-size: 80%;
    transition: all 0.84s;
    position: relative;

}

#case:hover {
    background-position: 100% 50%;
}

#case h2 {
    margin: 0;
    font: 400 2.3em/1 Poppins;
    text-transform: uppercase
}

#case:hover .case_text {
    margin: 35px;
}

.case_text {
    transform: skew(-5deg);
    background: rgba(0, 0, 0, .4);
    width: 80%;
    max-width: 400px;
    padding: 15px;
    position: absolute;
    margin: 15px;
    top: 0;
    transition: all 0.7s;
}

.case_text a {
    display: inline-block;
    padding: 8px 15px;
    background: #ddd;
    font: 600 1.2em/1 Inter;
    color: #000;
    margin: 10px 0;
    mix-blend-mode: screen;
}

.case_text a:hover {
    background: #ffffff;
    box-shadow: 0 0 10px #fffa
}

@import url('https://fonts.googleapis.com/css?family=Lato:300,400');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400');
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,600');

* {
    max-width: 100%;
}

a {
    text-decoration: none;
}



.wrapper {
    transition: 0.1s all ease;
}

.hero-section {
    width: 100vw;
    height: 100vh;
    background-image: url('../images/photo1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}





header {
    width: 100%;

    h3 {
        float: right;
        color: white;
    }

    span {
        margin-left: -6px;
    }
}




.moved {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}


.content-container {
    display: block;
    width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.4;
    text-align: left;
    transition: 0.5s all ease;
    z-index: 2;
}

.content-container h1 {
    font-family: Poppins, sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 3rem);
    color: #006fa3;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Override for mobile - more specific */
@media screen and (max-width: 768px) {
    .navbar_brand {
        display: none;
    }

}

@media screen and (max-width: 480px) {}

.content-container h1 .subtitle {
    font-size: 0.6em;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
}

.content-container h1 .outline-text {
    color: transparent;
    -webkit-text-stroke: 2px #006fa3;
    text-stroke: 2px #006fa3;
    font-weight: 800;
}

.content-container a {
    display: inline-block;
    font-family: Inter, sans-serif;
    border: 2px solid #006fa3;
    padding: 10px 24px;
    color: #006fa3;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s all ease;
    margin-right: .75rem;
    margin-top: .75rem;
    background-color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.content-container a:hover {
    color: black;
    background-color: #006fa3;
    padding: 10px 50px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .navbar_brand {
        font-size: 2em !important;
        top: 20px !important;
        left: 20px !important;
    }

    .navbar_opener {
        top: 15px;
        right: 10px;
        width: 48px;
        height: 36px;
    }

    .navbar_opener span {
        width: 24px;
        left: 12px;
    }

    .content-container {
        width: 90%;
        max-width: 500px;
        padding: 0 1rem;
    }

    .content-container h1 .subtitle {
        font-size: 0.7em;
        letter-spacing: 1.5px;
    }

    .content-container a {
        display: block;
        margin: 1rem 0;
        padding: 14px 28px;
        text-align: center;
        font-size: 1.1rem;
    }

    .navbar_menu .menu .menu_item .menu_link {
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }

    .navbar_menu .menu .menu_item-big .menu_link {
        font-size: 1.75rem;
    }

    .navbar_menu .social {
        padding: 20px;
    }

    .social a {
        font-size: 24px;
        width: 30px;
    }
}

@media screen and (max-width: 480px) {
    .navbar_brand {
        font-size: 1.75em;
        top: 15px;
        left: 15px;
    }

    .content-container a {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .navbar_menu .menu .menu_item .menu_link {
        padding: 0.5rem 0.75rem;
        font-size: 1.25rem;
    }

    .navbar_menu .menu .menu_item-big .menu_link {
        font-size: 1.5rem;
    }
}

/* Who We Serve Interactive Options Styles */
.client-categories {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.client-categories .options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-width: 600px;
    max-width: 900px;
    width: calc(100% - 100px);
    height: 400px;
    gap: 10px;
}

.client-categories .option {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    background: var(--optionBackground, #E6E9ED);
    background-size: auto 120%;
    background-position: center;
    cursor: pointer;
    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    border-radius: 30px;
    flex-grow: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.client-categories .option:nth-child(1) {
    --defaultBackground: #ED5565;
}

.client-categories .option:nth-child(2) {
    --defaultBackground: #FC6E51;
}

.client-categories .option:nth-child(3) {
    --defaultBackground: #FFCE54;
}

.client-categories .option:nth-child(4) {
    --defaultBackground: #2ECC71;
}

.client-categories .option:nth-child(5) {
    --defaultBackground: #5D9CEC;
}

.client-categories .option.active {
    flex-grow: 10000;
    transform: scale(1);
    max-width: 600px;
    margin: 0px;
    border-radius: 40px;
    background-size: auto 100%;
}

.client-categories .option.active .shadow {
    box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.client-categories .option.active .label {
    bottom: 20px;
    left: 20px;
}

.client-categories .option.active .label .info>div {
    left: 0px;
    opacity: 1;
}

.client-categories .option:not(.active) {
    flex-grow: 1;
    border-radius: 30px;
}

.client-categories .option:not(.active) .shadow {
    bottom: -40px;
    box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.client-categories .option:not(.active) .label {
    bottom: 10px;
    left: 10px;
}

.client-categories .option:not(.active) .label .info>div {
    left: 20px;
    opacity: 0;
}

.client-categories .shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 120px;
    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.client-categories .label {
    display: flex;
    position: absolute;
    right: 0px;
    height: 40px;
    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.client-categories .icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: white;
    color: var(--defaultBackground);
    font-size: 18px;
}

.client-categories .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    color: white;
    white-space: pre;
}

.client-categories .info>div {
    position: relative;
    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity .5s ease-out;
}

.client-categories .main {
    font-weight: bold;
    font-size: 1.2rem;
}

.client-categories .sub {
    transition-delay: .1s;
    font-size: 0.9rem;
}

/* Mobile responsive adjustments for options */
@media screen and (max-width: 1024px) {
    .client-categories .options {
        min-width: 500px;
        max-width: 700px;
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .client-categories {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .client-categories .options {
        flex-direction: column;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: auto;
        gap: 12px;
    }
    
    .client-categories .option {
        min-height: 80px;
        height: 80px;
        width: 100%;
        border-radius: 20px;
    }
    
    .client-categories .option.active {
        height: 250px;
        max-width: 100%;
        border-radius: 20px;
    }
    
    .client-categories .main {
        font-size: 1rem;
    }
    
    .client-categories .sub {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 640px) {
    .client-categories .options {
        gap: 10px;
    }
    
    .client-categories .option {
        min-height: 70px;
        height: 70px;
    }
    
    .client-categories .option.active {
        height: 220px;
    }
    
    .client-categories .icon {
        min-width: 35px;
        max-width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .client-categories .main {
        font-size: 0.95rem;
    }
    
    .client-categories .sub {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .client-categories {
        padding: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .client-categories .options {
        gap: 8px;
        padding: 0 0.5rem;
    }
    
    .client-categories .option {
        min-height: 65px;
        height: 65px;
    }
    
    .client-categories .option.active {
        height: 200px;
    }
    
    .client-categories .icon {
        min-width: 32px;
        max-width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .client-categories .main {
        font-size: 0.9rem;
    }
    
    .client-categories .sub {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 360px) {
    .client-categories .options {
        gap: 6px;
        padding: 0 0.25rem;
    }
    
    .client-categories .option {
        min-height: 60px;
        height: 60px;
    }
    
    .client-categories .option.active {
        height: 180px;
    }
    
    .client-categories .icon {
        min-width: 30px;
        max-width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .client-categories .label {
        height: 35px;
    }
    
    .client-categories .main {
        font-size: 0.85rem;
    }
    
    .client-categories .sub {
        font-size: 0.65rem;
    }
}

/* Professional Footer Styles */
.professional-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-section h3 {
    font-family: Poppins, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1846db;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: white;
}

.footer-logo .tagline {
    font-style: italic;
    color: #1846db;
    margin-bottom: 1rem;
    white-space: nowrap;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-description {
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1847da;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 111, 163, 0.3);
}

.footer-links { 
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #1846db;
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 6px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: white;
    width: 20px;
    margin-top: 2px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.footer-btn.primary {
    background: var(--primary);
    color: #666;
    border: 2px solid var(--primary);
}

.footer-btn.primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 111, 163, 0.3);
}

.footer-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.footer-btn.secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #999999;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #1846db;
}

/* Mobile Responsive Footer */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 1.5rem;
    }
    
    .footer-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        padding: 2rem 0 1rem;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Business Check-Up Modal Styles */
/* Note: Modal styles are in index.php */

/* Main Hero Section Styles */
.main-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 0;
}

/* Hero Background Image */
.main-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/photo1.webp') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.main-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 71, 219, 0.25) 0%, rgba(25, 71, 219, 0.15) 50%, rgba(25, 71, 219, 0.1) 100%);
    z-index: 1;
}

.main-hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

/* Particle Animation Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: #1e51df;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 70%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    width: 14px;
    height: 14px;
    top: 10%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(6) {
    width: 8px;
    height: 8px;
    top: 80%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.particle:nth-child(7) {
    width: 12px;
    height: 12px;
    top: 40%;
    left: 90%;
    animation-delay: 2.5s;
    animation-duration: 6.5s;
}

.particle:nth-child(8) {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 40%;
    animation-delay: 4.5s;
    animation-duration: 7.5s;
}

.particle:nth-child(9) {
    width: 10px;
    height: 10px;
    top: 85%;
    left: 85%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

.particle:nth-child(10) {
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    animation-delay: 3.5s;
    animation-duration: 9.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Hero Content Styling */
.main-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Stethoscope Background */
.hero-stethoscope-bg {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    opacity: 0.15;
    z-index: 0;
    animation: fadeInUp 1.5s ease-out forwards;
    pointer-events: none;
}

.main-hero-text {
    margin-bottom: 3rem;
}

.main-hero-headline {
    font-family: Poppins, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #1947db;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(25, 71, 219, 0.1), 0 0 20px rgba(25, 71, 219, 0.3), 0 0 40px rgba(25, 71, 219, 0.2);
    letter-spacing: -0.02em;
    position: relative;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

.hero-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    height: 20px;
    animation: drawUnderline 1.5s ease-out 1.2s forwards;
    opacity: 0;
}

@keyframes drawUnderline {
    0% {
        opacity: 0;
        stroke-dasharray: 0 1000;
    }
    100% {
        opacity: 1;
        stroke-dasharray: 1000 0;
    }
}

.main-hero-subtitle {
    font-family: Inter, sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 15px rgba(74, 85, 104, 0.4), 0 0 30px rgba(74, 85, 104, 0.2);
    animation: glowPulse 3s ease-in-out infinite alternate 0.5s;
}

/* Hero Buttons Container */
.hero-buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero Button Styles */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #1947db 0%, #1439b8 100%);
    color: white;
    border: 2px solid #1947db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(25, 71, 219, 0.3);
    animation: glowPulse 3s ease-in-out infinite alternate 1s, buttonBlink 2s ease-in-out infinite;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #1439b8 0%, #0f2a96 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 71, 219, 0.3), 0 0 30px rgba(25, 71, 219, 0.5);
    color: white;
    animation: glowPulse 3s ease-in-out infinite alternate 1s, buttonBlinkHover 1.5s ease-in-out infinite;
}

.hero-btn-secondary {
    background: #1947db;
    color: white;
    border: 2px solid #1947db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 15px rgba(25, 71, 219, 0.4);
    animation: glowPulse 3s ease-in-out infinite alternate 1.5s, buttonBlink 2s ease-in-out infinite 0.5s;
    opacity: 1;
}

.hero-btn-secondary:hover {
    background: #0f2a96;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 71, 219, 0.3), 0 0 30px rgba(25, 71, 219, 0.6);
    animation: glowPulse 3s ease-in-out infinite alternate 1.5s, buttonBlinkHover 1.5s ease-in-out infinite 0.5s;
}

.hero-btn i {
    font-size: 1.1rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 2px 4px rgba(25, 71, 219, 0.1), 0 0 20px rgba(25, 71, 219, 0.3), 0 0 40px rgba(25, 71, 219, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(25, 71, 219, 0.3);
    }
    100% {
        text-shadow: 0 2px 4px rgba(25, 71, 219, 0.1), 0 0 30px rgba(25, 71, 219, 0.5), 0 0 60px rgba(25, 71, 219, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 30px rgba(25, 71, 219, 0.5);
    }
}

@keyframes buttonBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(25, 71, 219, 0.3);
    }
    25% {
        opacity: 0.6;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 50px rgba(25, 71, 219, 0.8);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 40px rgba(25, 71, 219, 0.6);
    }
    75% {
        opacity: 0.7;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 45px rgba(25, 71, 219, 0.7);
    }
}

@keyframes buttonBlinkHover {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 8px 25px rgba(25, 71, 219, 0.3), 0 0 30px rgba(25, 71, 219, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 8px 25px rgba(25, 71, 219, 0.3), 0 0 50px rgba(25, 71, 219, 0.8);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .main-hero-section {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .main-hero-wrapper {
        padding: 0 1rem;
    }
    
    .main-hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-underline {
        width: 70%;
        max-width: 250px;
        bottom: -8px;
    }
    
    .hero-stethoscope-bg {
        width: 250px;
        right: -80px;
        opacity: 0.1;
    }
    
    .main-hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-buttons-container {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .particle {
        opacity: 0.05;
    }
}

@media screen and (max-width: 480px) {
    .main-hero-section {
        min-height: 85vh;
    }
    
    .main-hero-headline {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        line-height: 1.3;
    }
    
    .main-hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
        line-height: 1.5;
    }
    
    .hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .hero-btn i {
        font-size: 1rem;
    }
    
    .hero-stethoscope-bg {
        width: 180px;
        right: -60px;
        opacity: 0.08;
    }
}

/* Custom Alert Notification Styles */
