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

/* ==== Brand Blue Override for Tailwind utility classes (#003566) ==== */
:root {
--brand-blue: #003566;
--brand-blue-700: #002D52;
--brand-blue-800: #00223D;
--brand-blue-100: #E6EEF5;
}

/* Backgrounds */
.bg-blue-600 { background-color: var(--brand-blue) !important; }
.hover\:bg-blue-700:hover { background-color: var(--brand-blue-700) !important; }
.bg-blue-100 { background-color: var(--brand-blue-100) !important; }

/* Text colors */
.text-blue-600 { color: var(--brand-blue) !important; }
.hover\:text-blue-600:hover { color: var(--brand-blue) !important; }
.text-blue-800 { color: var(--brand-blue-800) !important; }
.text-blue-100 { color: var(--brand-blue-100) !important; }

/* Borders */
.border-blue-600 { border-color: var(--brand-blue) !important; }

/* Gradients */
.from-blue-600 {
  --tw-gradient-from: var(--brand-blue) !important;
  --tw-gradient-to: rgb(30 78 183 / 0) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.to-blue-800 { --tw-gradient-to: var(--brand-blue-800) !important; }

/* Focus ring */
.focus\:ring-blue-600:focus { --tw-ring-color: var(--brand-blue) !important; }

/* Optional: primary button helpers */
.btn-primary { background-color: var(--brand-blue); }
.btn-primary:hover { background-color: var(--brand-blue-700); }

:root {
    
--primary: #003566;
--primary-dark: #002D52;
--primary-light: #2A516B;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --success: #10b981;
    --warning: #f59e0b;
    

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    

    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    padding-top: 0;
}

[x-cloak] {
    display: none !important;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}


.rotate-90 {
    transform: rotate(90deg);
}


#mobileMenu {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important; 
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    overflow: hidden !important; 
    border-left: 1px solid #e5e7eb !important;
    border-right: 1px solid #e5e7eb !important;
    border-bottom: 1px solid #e5e7eb !important;
    border-top: none !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

#mobileMenu::-webkit-scrollbar {
    display: none;
}

#mobileMenu > ul {
    overflow-y: auto;
    max-height: 70vh;
}

#mobileMenu ul,
#mobileMenu li,
#mobileMenu a,
#mobileMenu button {
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-radius: 0 !important;
}

#mobileMenu div:not(:last-child) {
    border-radius: 0 !important;
}

#mobileMenu > div:last-child {
    border-top: 1px solid #e5e7eb !important;
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
    background: #f9fafb !important;
    overflow: hidden !important;
}


@media (min-width: 768px) {
    #mobileMenu {
        border-bottom-left-radius: 0.75rem !important;
        border-bottom-right-radius: 0.75rem !important;
    }
    
    #mobileMenu > div:last-child {
        border-bottom-left-radius: 0.75rem !important;
        border-bottom-right-radius: 0.75rem !important;
    }
}

@media (max-width: 1024px) {
body {
        padding-top: 0;
    }
    
    .hero-section {
        padding-top: 130px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .hero-section {
        padding-top: 105px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0;
    }
    
    .hero-section {
        padding-top: 95px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}


.header.scrolled .header-container {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
}

/* ===== Logo scaling without layout shifts ===== */
.header-logo {
    height: 30px;
    width: auto;
    display: inline-block;
    transform: scale(2.6);
    transform-origin: left center;
    will-change: transform;
}

.footer-logo {
    height: 28px;
    width: auto;
    display: inline-block;
    transform: scale(2.4);
    transform-origin: left center;
    will-change: transform;
}

.nav-desktop {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.25rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown > a i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--gray-200);
    margin-top: 0.5rem;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.2s;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.contact-phone:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.contact-phone i {
    color: var(--primary);
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.mobile-close {
    background: none;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
    flex: 1;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.mobile-nav-links a:hover {
    background: var(--gray-50);
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-nav-links a.active {
    background: var(--gray-50);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    text-align: left;
}

.mobile-dropdown-toggle span {
    display: block;
}

.mobile-dropdown-toggle > i {
    transition: transform 0.3s ease;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.mobile-dropdown.active .mobile-dropdown-toggle {
    color: var(--primary);
    background: var(--gray-50);
    border-left-color: var(--primary);
}

.mobile-dropdown.active .mobile-dropdown-toggle > i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--gray-50);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 1000px;
}

.mobile-dropdown-menu a {
    padding-left: 2.5rem !important;
    font-size: 0.9375rem;
    font-weight: 400;
    border-left: 3px solid transparent !important;
}
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::before {
    transform: scaleX(1);
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.mobile-phone-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-phone-btn i {
    font-size: 1.125rem;
}

@media (max-width: 1280px) {
    .header-container {
        max-width: 85%;
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1.75rem;
    }
    
    .nav-links a {
        font-size: 0.875rem;
        padding: 0.5rem 0.15rem;
    }
    
    .contact-phone {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .contact-phone span {
        display: none;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 0;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-container {
        justify-content: space-between;
        max-width: 90%;
        border-radius: 10px;
    }
    
    
    .mobile-nav-links a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .mobile-dropdown-toggle {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0.875rem 1.25rem;
        max-width: 95%;
        border-radius: 8px;
    }
    
    .logo img {
        height: 40px;
    }
    
    
    .mobile-nav-header {
        padding: 1.25rem;
    }
    
    .mobile-nav-links a {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .mobile-dropdown-toggle {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .mobile-dropdown-menu a {
        padding-left: 2rem !important;
    font-size: 0.875rem;
    }
    
    .mobile-nav-footer {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
        max-width: 95%;
        border-radius: 8px;
    }
    
    .logo img {
        height: 36px;
    }
    
    
    .mobile-nav-header {
        padding: 1rem;
    }
    
    .mobile-nav-header img {
        height: 32px !important;
    }
    
    .mobile-nav-links a {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        gap: 0.75rem;
    }
    
    .mobile-nav-links a i {
        font-size: 1rem;
    }
    
    .mobile-nav-footer {
        padding: 1rem;
    }
    
    .mobile-phone-btn {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

section {
    padding: 5rem 0;
    scroll-margin-top: 130px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.section-title[style*="text-align: left"]::after {
    left: 0;
    transform: translateX(0);
}

.section-title[style*="color: white"]::after,
.section-title.white-title::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  background: linear-gradient(135deg, #003566 0%, #002D52 100%);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--brand-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.hero-features li i {
  color: var(--brand-blue);
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
}

.hero-stats {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        text-align: left;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.6;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

footer {
    background: var(--gray-800);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.floating-phone-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    text-decoration: none;
    animation: phonePulse 1.5s infinite ease-in-out;
}

.floating-phone-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    transform: translate(-50%, -50%);
    animation: phoneRingPulse 2s infinite ease-out;
    z-index: -1;
}

.floating-phone-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    transform: translate(-50%, -50%);
    animation: phoneRingPulse 2s infinite ease-out 0.5s;
    z-index: -2;
}

.phone-btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.floating-phone-btn:hover .phone-btn-content {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.7);
}

.phone-btn-content i {
    font-size: 1.25rem;
    animation: phoneRing 1.5s infinite;
}

.phone-number {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1.12);
    }
    75% {
        transform: scale(1.08);
    }
}

@keyframes phoneRingPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .floating-phone-btn {
        bottom: 1.5rem;
        right: 1rem;
    }
    
    .phone-btn-content {
        padding: 0.875rem 1.25rem;
    }
    
    .phone-btn-content i {
        font-size: 1.1rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .phone-number {
        font-size: 0.9rem;
    }
}

.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.welcome-modal-content {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    max-width: 500px;
    width: 90%;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
    opacity: 0;
}
    to {
        transform: translateY(0) scale(1);
    opacity: 1;
    }
}

.welcome-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.welcome-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1f2937;
    transform: rotate(90deg);
}

.welcome-modal-body {
    text-align: center;
}

.welcome-icon {
    width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #003566 0%, #002D52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: welcomeIconBounce 2s infinite;
}

.welcome-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes welcomeIconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.welcome-modal-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.welcome-modal-body p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.welcome-subtitle {
    font-size: 1rem !important;
    color: #9ca3af !important;
    margin-bottom: 1.5rem !important;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 1rem;
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
}

.welcome-feature i {
    color: #10b981;
    font-size: 1.25rem;
}

.welcome-btn {
    width: 100%;
    padding: 1rem 2rem;
  background: linear-gradient(135deg, #003566 0%, #002D52 100%);

/* ==== Additional blue utility overrides to enforce brand (#003566) ==== */
.text-blue-500 { color: var(--brand-blue) !important; }
.text-blue-400 { color: var(--brand-blue) !important; }
.hover\:text-blue-800:hover { color: var(--brand-blue-800) !important; }
.border-blue-500 { border-color: var(--brand-blue) !important; }
.border-blue-200 { border-color: var(--brand-blue-100) !important; }
.bg-blue-50 { background-color: var(--brand-blue-100) !important; }
.bg-blue-500 { background-color: var(--brand-blue) !important; }
.bg-blue-700 { background-color: var(--brand-blue-700) !important; }
.from-blue-50 { --tw-gradient-from: var(--brand-blue-100) !important; }
.to-blue-50 { --tw-gradient-to: var(--brand-blue-100) !important; }
.to-blue-700 { --tw-gradient-to: var(--brand-blue-700) !important; }
.hover\:from-blue-700:hover { --tw-gradient-from: var(--brand-blue-700) !important; }
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.welcome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.welcome-btn i {
    transition: transform 0.3s;
}

.welcome-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 640px) {
    .welcome-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .welcome-modal-body h2 {
        font-size: 1.5rem;
    }
    
    .welcome-modal-body p {
        font-size: 1rem;
    }
    
    .welcome-icon {
        width: 70px;
        height: 70px;
    }
    
    .welcome-icon i {
        font-size: 2rem;
    }
    
    .welcome-features {
        padding: 1rem;
    }
    
    .welcome-feature {
        font-size: 0.9rem;
    }
}
/* ===== Brand hero bubble background ===== */
.brand-hero-visual {
    position: relative;
}

.brand-hero-image {
    position: relative;
    z-index: 10;
}

.bubble-bg::before {
    content: '';
    position: absolute;
    left: -40px;
    top: -20px;
    width: 420px;
    height: 420px;
    border-radius: 58% 42% 65% 35% / 44% 60% 40% 56%;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.30), rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 70%),
      radial-gradient(circle at 70% 65%, rgba(255,255,255,0.22), rgba(255,255,255,0) 60%);
    filter: blur(12px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.bubble-bg::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -10px;
    width: 300px;
    height: 300px;
    border-radius: 60% 40% 55% 45% / 42% 58% 38% 62%;
    background:
      radial-gradient(circle at 40% 40%, rgba(255,255,255,0.26), rgba(255,255,255,0.1) 55%, rgba(255,255,255,0) 80%),
      radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0) 60%);
    filter: blur(10px);
    opacity: 0.40;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .bubble-bg::before {
        width: 320px;
        height: 320px;
        left: -20px;
        top: -10px;
    }
    .bubble-bg::after {
        width: 220px;
        height: 220px;
        right: -15px;
        bottom: -10px;
    }
}

@media (max-width: 640px) {
    .bubble-bg::before {
        width: 240px;
        height: 240px;
        left: -10px;
        top: -10px;
    }
    .bubble-bg::after {
        width: 180px;
        height: 180px;
        right: -10px;
        bottom: -10px;
    }
}
