@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,300,400&display=swap');

/* ========================================
    ROOT VARIABLES - BRAND COLORS & STYLES
======================================== */
:root {
    --main: #E30613;
    --primary-blue: #0057B8;
    --primary-red: #E30613;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --soft-gray: #F4F5F7;
    --text-dark: #1A1A1A;
    --text-gray: #6C757D;
    --border-light: rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 15px 50px rgba(0, 0, 0, 0.1);
    --border-radius-lg: 30px;
    --border-radius-md: 20px;
    --border-radius-sm: 10px;
}

/* ========================================
    GLOBAL RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', sans-serif;
    /* fallback for Neue Montreal */
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-light-gray {
    background-color: var(--soft-gray) !important;
}

.text-danger {
    color: var(--primary-red) !important;
}

.bg-danger {
    background-color: var(--primary-red) !important;
}

.bg-warning-light {
    background-color: #F8D371 !important;
    /* Yellow tracking card bg */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
}

/* Rounded Containers */
.rounded-container {
    border-radius: var(--border-radius-lg);
}

.rounded-custom {
    border-radius: var(--border-radius-lg);
}

.rounded-top-custom {
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}

.rounded-start-custom {
    border-top-left-radius: var(--border-radius-lg);
    border-bottom-left-radius: var(--border-radius-lg);
}

.rounded-end-custom {
    border-top-right-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
}

@media (max-width: 991px) {
    .rounded-start-custom {
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg);
        border-bottom-left-radius: 0;
    }

    .rounded-end-custom {
        border-bottom-left-radius: var(--border-radius-lg);
        border-bottom-right-radius: var(--border-radius-lg);
        border-top-right-radius: 0;
    }
}

/* Buttons */
.btn-primary-rounded {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-primary-rounded:hover {
    background: #c40510;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
}

.btn-secondary-rounded {
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
}

.btn-secondary-rounded:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.section-badge {
    display: inline-block;
}

.badge-soft-red {
    background: rgba(227, 6, 19, 0.1);
    color: var(--primary-red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}



/* ========================================
    HEADER & NAVBAR
======================================== */

/* top-header */
.container-fulid {
    /*! max-width: 90%; */
    margin: 0 auto;
}

.top_header {
    /*! background: radial-gradient(circle at 0% 0%, rgb(0, 67, 122) 0%, rgb(0, 30, 80) 100%); */
    padding: 6px 0;
    background: #007688;
}

.top_social {
    padding: 0;
    margin: 0;
    text-align: right;
}

.top_social li {
    list-style: none;
    display: inline-block;
}

.top_social li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    /*! background: rgba(255, 255, 255, 0.05); */
    width: 31px;
    text-align: center;
    border-radius: 3px;
    margin: 0 0 0 5px;
}

.top_info {
    padding: 0;
    margin: 0;
}

.top_info li {
    list-style: none;
    display: inline-block;
}

.top_info li a {
    display: inline-block;
    color: #fff;
    margin: 0 27px 0 0;
    font-weight: 400;
    font-size: 15px;
}

.top_info li a i {
    display: inline-block;
    color: #fff;
    margin: 0 3px 0 0;
}

.top_header {
    color: #000;
}

.calldv a {
    margin: 0 10px 0 0;
    color: #fff;
}

.calldv a i {
    font-size: 12px;
    margin: 0 4px 0 0;
}




/* top-header */

.alert svg {
    width: 1.25rem;
    height: 1.25rem;
}


/* header */
header {
    border-bottom: none;
    transition: 0.4s;
}

header .container-fluid {
    max-width: 90%;
}

.navbar-light .navbar-brand {
    width: 200px;
    padding: 0;
    margin: 0 30px 0 0;
}

.navbar {
    padding: 0;
    border-bottom: none;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #d50202;
}

.navbar-expand-xl .navbar-nav .nav-link {
    display: block;
    padding: 27px 24px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    position: relative;
    white-space: nowrap;
    text-transform: capitalize;
    transition: 0.4s;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 500;
}

.navbar-expand-xl .navbar-nav .nav-link:last-child::before {
    display: none;
}

.navbar-expand-xl .navbar-nav .active .nav-link {
    color: #F00101;
}

.RiGhT_nav {
    text-align: right;
}

.navbar-expand-xl .RiGhT_nav .nav-link {
    font-size: 1.125rem !important;
    font-weight: 300;
}

header {
    position: relative;
    z-index: 999;
    padding: 0 0 0 30px;
    top: 0;
    left: 0;
    width: 100%;
    /*! border: 1px solid #ffffff94; */
    background: #fff;
    /*! background: linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0,107,122,0) 100%); */
    backdrop-filter: blur(6px);
    /*! box-shadow: -1px 5px 6px rgba(0,0,0,.09); */
    border-radius: 0;
}

.dropdown-item {
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 0;
    color: rgb(0, 0, 0);
    position: relative;
    white-space: nowrap;
    border-radius: 0;
    text-transform: capitalize;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-item span {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: #dff9f2;
    border-radius: 6px;
    text-align: center;
    line-height: 37px;
    margin: 0 9px 0 0;
}

.dropdown-item img {
    /* width: 170px; */
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 12px;
    height: 108px;
}

.bTn_OrDeR i {
    font-size: 1.5625rem;
    margin: 0 0.75rem 0 0;
    color: var(--main);
}

.bTn_OrDeR p {
    margin: 0 0 7px 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #d50202;
    text-decoration: none;
    background-color: transparent;
    /* border-color: var(--main); */
}

.fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0.4s;
    border-radius: 0;
    background: #fff;
    box-shadow: 1px 3px 3px rgba(0, 0, 0, .1);
}

.nav-link.h_social_ico {
    color: #fff !important;
    transition: 0.4s;
    background: var(--main);
    text-align: center;
    border-radius: 0.3125rem;
    font-size: 1.125rem !important;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0 !important;
    margin: 0 0 0 0.3125rem;
}

.navbar-expand-xl .navbar-nav .dropdown-menu.megaheader {
    position: absolute;
    border-radius: 0;
    border: none;
    box-shadow: 0 1.2rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 0.5rem 1.25rem;
    margin: 0px 0 0 0;
    padding-bottom: 0.8125rem;
    min-width: 70%;
    background: #fff;
}

.navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
    border-radius: 0;
    border: none;
    box-shadow: 0 1.2rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 0;
    margin: 1px 0 0 0;
    padding-bottom: 0;
    min-width: 30vh;
    padding-top: 0;
}

.nav-link.header_btn {
    border: 1px solid #f00101 !important;
    transition: 0.4s;
    text-align: center;
    padding: 19px 15px !important;
    border-radius: 0;
    /*! height: 46px; */
    color: #fff !important;
    margin-left: 0.625rem;
    background: linear-gradient(90deg, #E30613 0%, #ff4d4d 100%);
    line-height: 42px;
    margin: 0;
    /*! outline-width: 2px; */
    /*! outline-style: solid; */
    /*! outline-color: #212529; */
    /*! outline-offset: 1px; */
    /*! background: linear-gradient(92deg, #0096A1 0%, #012948 100%); */
    font-size: 16px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

.nav-link.header_btn:hover {
    color: var(--white) !important;
    transition: 0.4s;
    /* box-shadow: rgba(11, 43, 158, 0.24) 0px 6px 1.25rem -6px; */
    /*! transform: scale(1.04); */
    background: #01498d;
    border-color: #01498d !important;
}

.nav-link.header_outline_btn {
    border: 2px solid var(--main) !important;
    transition: 0.4s;
    text-align: center;
    padding: 0.25rem 1.5625rem !important;
    border-radius: 0.25rem;
    /*! font-size: 0.8125rem !important; */
    height: 2.5rem;
    color: var(--main) !important;
    /*! font-weight: 400 !important; */
    margin-left: 0.625rem;
    background: #0263e00a;
}

.nav-link.header_outline_btn:hover {
    border-color: var(--main);
    color: var(--white) !important;
    background: var(--main);
    transition: 0.4s;
}

.header_outline_btn:focus,
.header_btn:focus {
    outline-width: 2px;
    outline-style: solid;
    outline-color: var(--main);
    outline-offset: 2px;
    -moz-outline-radius: 0.25rem;
    background: var(--main);
    color: #000 !important;
}

.navbar-nav {
    align-items: center;
}

.nav_topXS {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 0.5rem;
    padding: 0 0.9375rem;
    align-items: center;
}

.nav_topXS .navbar-brand {
    padding: 6px 0;
}

/* drop_down */


.dropdown-menu .menu_heading h5 {
    font-size: 1rem;
    padding-bottom: 0.8125rem;
    margin-bottom: 0.8125rem;
    border-bottom: 1px solid #efefef;
    font-weight: 500;
    color: var(--heading_color);
}

.dropdown-menu ul {
    padding: 0;
}

.dropdown-menu ul li {
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 0.3125rem;
    break-inside: avoid;
}

.megaheader ul li {
    padding: 10px;
}

.dropdown-menu ul li:hover {
    transition: 0.3s;
    /*! background: rgb(245, 249, 254); */
}

.dropdown-menu ul li:hover h6 {
    color: var(--main);
    transition: 0.3s;
}

.dropdown-menu ul li:hover p {
    color: var(--main);
    transition: 0.3s;
}


.dropdown-menu ul li .mega_link_item {
    display: flex;
    width: 100%;
    padding: 0.9375rem 1.25rem;
}

.colorlogo {
    display: none;
}

.fixed .colorlogo {
    display: block !important;
}

.fixed .whiteheader {
    display: none !important;
}

.fixed .navbar-expand-xl .navbar-nav .nav-link {
    color: rgb(43, 42, 42);
    /*! padding: 2rem 15px; */
}

.fixed .nav-link.header_btn {
    /*! color: #fff !important; */
    /*! background: #231F20; */
    /*! border-color: #231f20 !important; */
}

.blcall {
    display: none;
}

.fixed .blcall {
    display: block;
}

.fixed .whitecall {
    display: none;
}

.dropdown-toggle.Callbtn::after {
    display: none;
}


/* .dropdown-menu::before{
  content: '';
  width: 120pc;
  height: 100vh;
  background: #000;
  position: absolute;
  left: -33pc;
  top: 0;
  opacity: 0.3;
  z-index: -1; 
} */
.mega_links_info {
    width: 100%;
}

.mega_links_info h6 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.3125rem;
    color: #2a364d;
}

.mega_links_info p {
    margin-bottom: 0;
    line-height: normal;
    font-size: 0.8125rem;
    color: #686868;
    font-weight: 300;
}

.navbar-expand-xl .navbar-nav .dropdown-mega .dropdown-menu {
    border: none;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
}

.resources_drpdown {
    padding: 0 !important;
}

.link_mainHeilight {
    padding: 1.875rem;
    background: var(--main);
}

.link_mainHeilight .mega_links_info p {
    color: #ffffffa3;
}

.link_mainHeilight .mega_links_info h6 {
    font-size: 0.9375rem;
    color: #fff;
}

.link_mainHeilight .menu_heading h5 {
    font-size: 1rem;
    padding-bottom: 0.8125rem;
    margin-bottom: 2px;
    border-bottom: 1px solid #efefef45;
    font-weight: 500;
    color: var(--white);
}

.resources_drpdown ul li:hover {
    transition: 0.3s;
    background: rgba(245, 249, 254, 0.15);
}

.resources_drpdown ul li:hover h6 {
    color: var(--white);
    transition: 0.3s;
}

.resources_drpdown ul li:hover p {
    color: #ffffffa3;
    transition: 0.3s;
}

.blog_top_main {
    padding: 1.25rem 1.25rem;
}

.top_blogItem {
    margin-bottom: 1.5625rem;
    display: block;
}

.top_blogItem .image {
    min-height: 11.25rem;
    max-height: 11.25rem;
    border-radius: 0.3125rem;
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
}

.top_blogItem .image .blog_label {
    position: absolute;
    right: 0.9375rem;
    top: 0.9375rem;
    background: #fff;
    color: #000;
    font-size: 0.75rem;
    font-weight: 300;
    border-radius: 0.25rem;
    height: 1.5625rem;
    z-index: 1;
    padding: 0 0.875rem;
}

.blog__caption h3 {
    font-size: 0.9375rem;
    color: var(--heading_color);
    font-weight: 500;
    font-family: var(--B-family);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.dropdown-menu.dropdown-menu-end.logindrp {
    padding: 0.625rem 1.25rem;
}

.bhBVsT {
    background-color: rgb(255, 255, 255);
    border-top: 1px solid rgb(239, 243, 253);
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    padding: 12px 0px;
    margin-top: 1.3rem;
}



/* drop_down */
.megaheaderbookapbx {
    padding: 0;
    column-count: initial !important;
}

.megaheaderbookapbx ul {
    padding: 0;
    column-count: initial !important;
}

.megaheaderbookapbx ul li {
    list-style: none;
}

.megaheaderbookapbx li a {
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    margin-top: 2px;
    padding: 16px;
    transition: 0.3s;
    /*! overflow: hidden; */
    position: relative;
    margin-bottom: 15px;
    background: #fff;
    border: 2px solid #f3f5f7;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.megaheaderbookapbx li a span {
    z-index: 2;
    position: relative;
}

.megaheaderbookapbx li a span:first-of-type {
    color: rgb(36, 51, 90);
    font-size: 18px;
    font-weight: 600;
}

.megaheaderbookapbx li a span:last-of-type {
    color: rgb(77, 91, 124);
    display: initial;
    display: block;
}

.megaheaderbookapbx li a:hover {
    background: rgba(0, 123, 196, 0.08);
    transition: 0.3s;
    border-color: var(--main);
}

.megaheaderbookapbx li a:hover span:first-of-type {
    color: var(--main);
    transition: 0.3s;
}

.megaheaderbookapbx li a img {
    position: absolute;
    right: -10px;
    top: -17px;
    object-fit: contain;
    z-index: 0;
    width: 119px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "\F282";
    border-top: none;
    border-right: none;
    border-bottom: 0;
    border-left: none;
    font-family: bootstrap-icons !important;
    position: absolute;
    top: 39%;
    font-size: 12px;
}

.softwareSec h4 {
    font-size: 30px;
    color: var(--main);
    font-weight: 600;
}

.nav-link.dropdown-toggle {
    padding-right: 40px !important;
}


.megaheader .dropdown-item {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    /*! border: 1px solid #ddd; */
    /* margin: 9px; */
    box-shadow: rgb(128, 128, 128) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}


.megaheader h6 {
    font-size: 26px;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

.about_Dropdown ul {
    column-count: 3;
}

.col-lg-3.bglight {
    padding: 30px;
    background: #fafefd;
    border-radius: 10px;
}

.d-flex.mainfetursss {
    margin: 0 0 27px 0;
    font-size: 22px;
}

.d-flex.mainfetursss span {
    margin: 0 15px 0 0;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0px;
    font-weight: 400;
}

.d-flex.mainfetursss span i {
    margin: 0 6px 0 0;
    color: #f2c9d1;
}

.navbar-brand {
    width: 250px;
}

.container.border-bottom {
    border-color: rgba(255, 255, 255, 0.2) !important;
    padding-bottom: 10px;
}

.top_header_phone ul {
    padding: 0 90px 0 0;
    display: flex;
    margin: 0;
    justify-content: center;
}

.top_header_phone ul li {
    padding: 0;
    list-style: none;
    display: flex;
    text-align: left;
    align-items: center;
    margin: 0 30px 0 0;
}

.top_header_phone ul li p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    opacity: 0.8;
    line-height: normal;
}

.top_header_phone ul li h6 {
    font-size: 18px;
    margin: 0;
    line-height: normal;
}

.top_header_phone ul li img {
    margin: 0 12px 0 0;
}








/* header */

/* ========================================
    OFFCANVAS NAVBAR
======================================== */
.glass-offcanvas {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hover-white-bg:hover {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
}

/* ========================================
    HERO SECTION (FULLSCREEN CAROUSEL)
======================================== */
.hero-carousel-section {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    position: relative;
    padding-top: 0;
    margin-bottom: 0;
    /* Remove margin to make it truly full screen and connected to next section */
}

#heroCarousel {
    height: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.hero-carousel-section .carousel-caption {
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (max-width: 991px) {
    .carousel-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}


/* ========================================
    Hero banner
======================================== */

.hero-modern-section {
    min-height: 96vh;
    background: linear-gradient(180deg, #F5F7FA 0%, #E8EDF5 100%);
    /*! padding-top: 142px; */
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.hero-modern-container {
    height: 90vh;
    display: flex;
    align-items: center;
}

.hero-modern-container h1 {
    color: #fff;
    font-size: 57px;
    font-weight: 600 !important;
    margin: 0 0 9px 0 !important;
    letter-spacing: -2px;
    line-height: 64px;
}

.hero-modern-container p {
    color: #fff;
    font-size: 20px;
    text-wrap: balance;
}



/* ========================================
    Hero banner
======================================== */


/* ========================================
    PERFORMANCE SECTION
======================================== */
.stat-item {
    padding: 20px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(227, 6, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary-red);
    background: rgba(227, 6, 19, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.divider {
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--border-light);
}

@media (max-width: 767px) {
    .divider {
        display: none;
    }
}

/* ========================================
    SERVICES SECTION
======================================== */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.service-card::before {
    background: linear-gradient(0deg, #000 0%, #0000 100%);
    content: '';
    position: absolute;
    width: 100%;
    height: 76%;
    left: 0;
    bottom: 0;
    opacity: 0.8;
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
    position: relative;
    position: absolute;
    bottom: 0;
    width: 100%;
    /*! backdrop-filter: blur(2px); */
    text-align: left;
}

.service-content h4 {
    font-size: 40px;
    margin-bottom: 4px;
    color: #fff;
    /*! text-shadow: 1px 1px 0 #000; */
    position: absolute;
    top: -161%;
}

.service-content p {
    color: #FFF;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 500;
    max-height: 45px;
    overflow: hidden;
    line-height: 21px;
    text-wrap: balance;
}

.arrow-link {
    display: inline-block;
    align-items: center;
    justify-content: center;
    /*! width: 40px; */
    height: 40px;
    border-radius: 15px;
    /*! background: var(--soft-gray); */
    color: #FFF;
    text-decoration: none;
    /*! position: absolute; */
    right: 30px;
    bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff7d;
    padding: 0 17px;
    font-weight: 600;
    line-height: 39px;
    text-transform: uppercase;
    font-size: 14px;
}

.service-card:hover .arrow-link {
    background: var(--primary-red);
    color: var(--white);
}

/* ========================================
    TRACKING SECTION
======================================== */
.route-line-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.route-point {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.route-point strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.route-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-light);
    margin: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px var(--white);
}

.tracking-card-large {
    max-width: 1000px;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 14px;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 1;
}

/* ========================================
    TRANSPORT MODES CAROUSEL
======================================== */
.transport-item {
    position: relative;
    border-radius: 21px;
    overflow: hidden;
}

.transport-item img {
    height: 366px;
    object-fit: cover;
    border-radius: 10px !important;
}

.transport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px !important;
    flex-direction: column;
}

.transport-overlay i {
    margin: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 20px 0 0 0;
    border: 1px solid #fff;
    border-radius: 100%;
    line-height: 40px;
    color: #fff;
    transition: 0.3s;
}
.transport-overlay i:hover {
    transition: 0.3s;
     border: 1px solid var(--primary-red);
     background:   var(--primary-red);
     color: var(--white);
}

.transport-overlay h5 {
    margin: 0;
    font-size: 25px;
}

/* ========================================
    TESTIMONIALS
======================================== */
.testimonial-map {
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg"><circle cx="200" cy="100" r="3" fill="%23E30613" opacity="0.3"/><circle cx="500" cy="200" r="4" fill="%23E30613" opacity="0.5"/><circle cx="600" cy="150" r="2" fill="%23E30613" opacity="0.3"/><circle cx="300" cy="300" r="5" fill="%23E30613" opacity="0.2"/></svg>') no-repeat center/contain;
}

.testimonial-card-main {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

/* ========================================
    FAQ
======================================== */
.custom-accordion .accordion-button {
    font-size: 1.1rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--text-dark);
}

.custom-accordion .accordion-button::after {
    background-size: 1rem;
}

/* ========================================
    FOOTER
======================================== */
.footer {
    background: var(--white) url(../images/footer_bg.png);
    background-position: bottom;
}

.footer a:hover {
    color: var(--primary-red) !important;
}

.hover-primary:hover {
    color: var(--primary-red) !important;
    text-decoration: underline !important;
}

.btn-outline-secondary:hover {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
}

.btn-outline-secondary:hover i {
    color: #fff !important;
}

/* Inline Style Replacements */
.video-overlay {
    background: rgba(1, 61, 122, 0.79);
    background: linear-gradient(90deg, #002C63 0%, #0000002b 100%);
}

.hero-main-title {
    letter-spacing: -2px;
    font-size: clamp(3rem, 7vw, 7.5rem);
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-mobile-buttons {
    max-width: 340px;
    margin: 25px 0 0 0;
}

.btn-gradient-primary {
    background: linear-gradient(90deg, #E30613 0%, #ff4d4d 100%);
    border: none;
    padding: 13px 0 !important;
    border-radius: 20px !important;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-white {
    border: none;
    padding: 13px 0 !important;
    border-radius: 20px !important;
    text-transform: uppercase;
    font-size: 14px;
    background: transparent !important;
    color: #fff !important;
}

.hero-stats-box {
    right: 30%;
    bottom: 12%;
}

.avatar-icon-3 {
    width: 35px;
    height: 35px;
    margin-right: -10px;
    z-index: 3;
    background: #ffffff2b;
}

.avatar-icon-2 {
    width: 35px;
    height: 35px;
    margin-right: -10px;
    z-index: 2;
    background: #ffffff2b;
}

.avatar-icon-1 {
    width: 35px;
    height: 35px;
    z-index: 1;
    background: #ffffff2b;
}

.text-xs {
    font-size: 0.75rem;
}

.hero-top-right-box {
    right: 5%;
    top: 12%;
    width: 220px;
}

.hero-top-right-text {
    text-transform: capitalize;
    line-height: 21px !important;
    font-weight: 400;
    font-size: 15px !important;
    text-wrap: balance;
}

.hero-feature-card {
    right: 4%;
    bottom: 10%;
    width: 300px;
}

.feature-card-img-box {
    width: 100px;
    height: 93px;
    flex-shrink: 0;
}

.object-fit-cover {
    object-fit: cover;
}

.final-cta-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/cta-bg.png') center/cover;
    border-radius: 30px;
    background-attachment: fixed;
}

.footer-logo {
    height: 50px;
}

.footer-cta-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.btn-footer-contact {
    background-color: #E30613;
    border: none;
    font-size: 0.9rem;
}

.btn-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #E30613;
    border: none;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    transition: all 0.3s;
}

.tracking-img-full {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.9;
}

/* New Testimonial Styles */
.testimonial-box {
    background-color: #FFF5F0;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-box .quote-icon {
    font-size: 50px;
    color: #FCAE8F;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-box .testimonial-text {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author img {
    width: 45px !important;
    height: 45px !important;
    object-fit: cover;
}

.testimonial-author h6 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.testimonial-author small {
    font-size: 12px;
}


/* Popular Destinations Styling */
.popular-destinations-section {
    padding: 60px 0;
    background: #fcfcfc;
}

.popular-destinations-section .section-header h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading_color);
    margin-bottom: 2rem;
}

.destination-card {
    /*! background: #fff; */
    border-radius: 12px;
    overflow: hidden;
    /*! box-shadow: 0 4px 15px rgba(0,0,0,0.05); */
    transition: all 0.3s ease;
    text-align: center;
    /*! border: 1px solid #eee; */
}

.destination-card:hover {
    /*! transform: translateY(-5px); */
    /*! box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
    /*! border-color: var(--main); */
}

.flag-container {
    position: relative;
    width: 100%;
    height: 110px;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.destination-card:hover .flag-img {
    transform: scale(1.1);
}

.flag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 6, 19, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    display: none;
}

.flag-overlay i {
    color: #fff;
    font-size: 28px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.destination-card:hover .flag-overlay {
    opacity: 1;
}

.destination-card:hover .flag-overlay i {
    transform: translateY(0);
}

.destination-info {
    padding: 9px 15px;
}

.destination-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #2b2b2b;
}

/* Shipping Partners Simple */
.partners-simple-section {
    padding: 50px 0;
    background: #fff;
}

.partners-simple-section .section-header h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--heading_color);
}

.partner-logo-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 10px 20px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.partner-logo-simple:hover {
    filter: grayscale(0%) opacity(1);
}

.partner-logo-simple img {
    max-height: 50px;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
}

/* Blog Section Styling */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f1f1;
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(227, 6, 19, 0.3);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--main);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--main);
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #2b2b2b;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--main);
}

.blog-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.read-more-btn {
    color: var(--main);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more-btn i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more-btn:hover {
    color: #c40510;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}


/* ========================================
    ABOUT TEXT REVEAL SECTION
======================================== */
.about-text-reveal-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.about-badge {
    display: inline-block;
    padding: 6px 22px;
    border: 1px solid #fce6e7;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--main);
    letter-spacing: 0;
    background: #fce6e7;
}

.about-text-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.anchor-icon-float {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #ccc;
    opacity: 0.5;
}

.about-reveal-heading {
    font-size: clamp(1.3rem, 4vw, 3rem);
    line-height: 53px;
    font-weight: 400;
    letter-spacing: -1px;
}

.reveal-word {
    display: inline-block;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.reveal-word.active {
    opacity: 1;
}

.dark-word {
    color: #1a1a1a;
    font-weight: 600;
}

.light-word {
    color: #b0b0b0;
    font-weight: 400;
}

.light-word.active {
    color: #999;
}

.about-light-text {
    display: inline;
}

.about-reveal-heading strong {
    display: inline;
}

/* ========================================
    ABOUT PAGE STYLES
======================================== */
.inner-page-banner {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.inner-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.inner-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.min-vh-40 {
    min-height: 300px;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-light .breadcrumb-item.active {
    color: #fff;
    font-size: 14px;
}

.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--main);
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
}

.about-check-icon {
    width: 28px;
    height: 28px;
    background: #fce4e6;
    color: var(--main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.about-solution-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.about-solution-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(227, 6, 19, 0.2);
}

.about-solution-icon {
    width: 55px;
    height: 55px;
    background: #fce4e6;
    color: var(--main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.about-solution-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
}

.about-solution-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.about-mv-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.about-mv-icon {
    width: 60px;
    height: 60px;
    background: #fce4e6;
    color: var(--main);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-mv-list li {
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
}

.about-value-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.about-value-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.about-value-icon {
    width: 50px;
    height: 50px;
    background: #fce4e6;
    color: var(--main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 15px;
}

.about-stats-section {
    background: linear-gradient(135deg, #0057B8 0%, #003d80 100%);
}

/* ========================================
    WHY CHOOSE US SECTION
======================================== */
.why-choose-us-section {
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 87, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-choose-item-row {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-choose-item-row:hover {
    transform: translateX(8px);
    background: rgba(227, 6, 19, 0.02);
    border-color: rgba(227, 6, 19, 0.15);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.06);
}

.why-choose-item-icon {
    width: 42px;
    height: 42px;
    background: #fce4e6;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.why-choose-item-row:hover .why-choose-item-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.why-choose-item-text {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

/* Right Column creative image styles */
.why-choose-image-container {
    position: relative;
}

.why-choose-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.why-choose-main-img {
    border-radius: 24px;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-large);
}

.why-choose-img-wrapper:hover .why-choose-main-img {
    transform: scale(1.02);
}

.why-choose-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    min-width: 240px;
    transition: all 0.4s ease;
}

.why-choose-img-wrapper:hover .why-choose-floating-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    flex-shrink: 0;
    font-size: 20px;
}

@media (max-width: 991px) {
    .why-choose-image-container {
        padding-left: 0 !important;
        margin-top: 50px;
    }

    .why-choose-floating-card {
        bottom: -20px;
        left: 20px;
    }
}

/* ========================================
    WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none !important;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.7;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: whatsapp-bounce 3s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes whatsapp-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Emergency Support Hotline Card Styles */
.emergency-hotline-card {
    background: linear-gradient(135deg, #ff3b5c 0%, #d6183a 100%);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(255, 59, 92, 0.25);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.emergency-hotline-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.emergency-icon-circle {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    animation: pulse-warning-icon 2s infinite;
}

@keyframes pulse-warning-icon {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.emergency-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.emergency-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.emergency-info-bar {
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}