    /* Modern CSS Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    /* Modern Minimal Palette: Bluish & Purplish */
    --primary: #1d4052;         /* Harbor */
    --primary-dark: #030f18;    /* Depth */
    --secondary: #446e87;       /* Marine */
    --accent: #72a3bf;          /* Glacier */
    --background: #e0e8e6;      /* Frost */
    --background-alt: #72a3bf;  /* Glacier (for soft backgrounds) */
    --text: #030f18;            /* Depth */
    --text-light: #446e87;      /* Marine */
    /* Hero button gradients */
    --hero-cta-gradient: linear-gradient(90deg, #8f9cf7 0%, #6c63ff 100%);
    --hero-cta-gradient-hover: linear-gradient(90deg, #6c63ff 0%, #8f9cf7 100%);
    --hero-secondary-gradient: linear-gradient(90deg, #e6e8fa 0%, #b8a1ff 100%);
    --hero-secondary-gradient-hover: linear-gradient(90deg, #b8a1ff 0%, #e6e8fa 100%);
    --hero-secondary-bg: #e6e8fa;
    --hero-secondary-text: #2d2a32;
    --hero-secondary-border: #8f9cf7;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    /* Service card gradients */
    --service-gradient-left: linear-gradient(to right, var(--background-alt) 0%, var(--background) 100%);
    --service-gradient-right: linear-gradient(to left, var(--background-alt) 0%, var(--background) 100%);
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.5;
    background-color: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

.btn-secondary {
    background: var(--hero-secondary-bg);
    color: var(--hero-secondary-text);
    border: 2px solid var(--hero-secondary-border);
    border-radius: 2.5rem;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 1.1rem 2.5rem;
    box-shadow: 0 2px 12px 0 rgba(167,112,239,0.08);
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: var(--hero-secondary-gradient-hover);
    color: #fff;
    border-color: #a770ef;
    box-shadow: 0 6px 24px 0 rgba(167,112,239,0.16);
    transform: translateY(-2px) scale(1.04);
    outline: none;
}

/* Cards */
.card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Header/Nav Modern Styles */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 16px 0 rgba(30,64,175,0.06);
    border-radius: 0;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0;
    min-height: 44px;
}
.logo img {
    display: block;
    width: 110px;
    max-width: 120px;
    height: 32px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: var(--secondary);
    text-decoration: underline;
}
.btn.btn-primary.ml-3 {
    margin-left: var(--spacing-sm);
}
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: var(--spacing-md);
}
.mobile-menu-button span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 72px;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        width: 220px;
        box-shadow: 0 8px 32px 0 rgba(30,64,175,0.10);
        border-radius: 0 0 0 var(--radius-lg);
        padding: var(--spacing-md);
        gap: var(--spacing-md);
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-button {
        display: flex;
    }
    .hide-sm {
        display: none !important;
    }
}

/* Modern Hero Section (Reference-Inspired) */
.modern-hero {
    position: relative;
    height: calc(70vh + 8px);
    min-height: 508px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    text-align: center;
}
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/hero-bg-image2.jpg') center/cover no-repeat;
    z-index: 1;
    opacity: 1;
}
.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 30, 40, 0.55);
    z-index: 2;
    pointer-events: none;
}
/* .modern-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 2rem;
} */
.modern-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0,0,0,0.18);
    text-align: center;
}
.modern-hero-subtitle {
    font-size: 1.25rem;
    color: #e0e7ef;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-align: center;
}
.modern-cta {
    font-size: 1.15rem;
    padding: 1.1rem 2.7rem;
    border-radius: 2.5rem;
    font-weight: 700;
    background: var(--hero-cta-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 24px 0 rgba(72,177,243,0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    text-align: center;
}
.modern-cta:hover, .modern-cta:focus {
    background: var(--hero-cta-gradient-hover);
    box-shadow: 0 8px 32px 0 rgba(72,177,243,0.18);
    transform: translateY(-2px) scale(1.05);
    outline: none;
}

/* Floating Service Tabs/Icons */
.floating-service-tabs {
    position: absolute;
    left: 50%;
    bottom: -3.5rem;
    transform: translateX(-50%);
    display: flex;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(30,64,175,0.10);
    padding: 1.2rem 2.5rem;
    gap: 2.5rem;
    z-index: 10;
}
.service-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    color: #1a2235;
    font-weight: 600;
    font-size: 1rem;
    min-width: 90px;
}
.service-tab img {
    margin-bottom: 0.5rem;
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.service-tab.active, .service-tab:hover {
    background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(255,94,98,0.10);
}
.service-tab.active img, .service-tab:hover img {
    filter: brightness(0) invert(1);
}
@media (max-width: 900px) {
    .modern-hero-title { font-size: 2rem; }
    .floating-service-tabs { padding: 1rem 1rem; gap: 1rem; }
    .service-tab { min-width: 70px; font-size: 0.95rem; }
}
@media (max-width: 600px) {
    .modern-hero-title { font-size: 1.2rem; }
    .modern-hero-subtitle { font-size: 0.95rem; }
    .floating-service-tabs { flex-direction: column; bottom: -7rem; left: 50%; transform: translateX(-50%); padding: 1rem; gap: 0.5rem; }
}

/* Modern Services Section */
.services.modern-services {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    overflow: hidden;
}
.services-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.services-alt-list, .service-row, .service-image, .service-content {
    position: relative;
    z-index: 1;
}
.service-content {
    flex: 1 1 0;
    max-width: 58%;
    background: var(--background);
    border-radius: 0;
    padding: 2.5rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 24px 0 rgba(10,26,56,0.08);
    border: 2px solid transparent;
    text-align: left;
    align-items: flex-start;
}
.service-row.right .service-content {
    border-radius: 0;
    text-align: left;
    align-items: flex-start;
}
.modern-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-content: center;
}
.modern-service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px 0 rgba(10,26,56,0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.25s, border 0.25s, transform 0.25s, background 0.25s;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}
.modern-service-card:hover {
    border: 2px solid var(--secondary);
    box-shadow: 0 12px 36px 0 rgba(30,144,255,0.16);
    transform: translateY(-10px) scale(1.045);
    background: linear-gradient(120deg, #f4f7fb 60%, #eaf6ff 100%);
}
.modern-service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-alt);
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(30,144,255,0.06);
}
.modern-service-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.modern-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.7rem;
}
.modern-service-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .modern-services-grid { gap: 1.5rem; }
    .modern-service-card { padding: 2rem 1rem 1.5rem 1rem; }
    .services.modern-services {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    .service-image, .service-content {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .modern-services-grid { grid-template-columns: 1fr; }
    .service-image {
        min-height: 120px;
        max-height: 160px;
    }
}

/* Modern Services Section - Center grid and last row */
@media (min-width: 900px) {
  .modern-services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .modern-service-card {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Center last two cards if there are exactly 5 */
  .modern-services-grid > .modern-service-card:nth-child(4) {
    grid-column: 2 / 3;
  }
  .modern-services-grid > .modern-service-card:nth-child(5) {
    grid-column: 3 / 4;
  }
}

/* Testimonials */
.testimonials {
    background-color: #F8FAFC;
    padding: var(--spacing-xl) 0;
}

.testimonial-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact {
    background: var(--background);
    padding: var(--spacing-xl) 0;
    margin-top: -60px;
    box-shadow: 0 8px 32px 0 rgba(30,64,175,0.08);
}

.contact-form-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-form-card h2 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    font-weight: 700;
}

.contact-form-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: var(--spacing-md);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form-card button {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form-card button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.contact-form-card button:active {
    transform: translateY(0);
}

.contact h2.text-center {
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.contact p.text-light {
    color: var(--text-light);
}
@media (max-width: 600px) {
    .contact-form-card {
        padding: var(--spacing-md) !important;
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-light { background-color: #F8FAFC; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }
.mt-6 {
  margin-top: 4rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Media Queries */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav { flex-direction: column; }
    .nav-links { margin-top: var(--spacing-md); }
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: linear-gradient(135deg, #0a1a38 0%, #2d3e5e 100%);
    color: #fff;
    padding: var(--spacing-xl) 0;
    border-radius: 0;
    margin-top: var(--spacing-xl);
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}
.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30,144,255,0.10) 0%, transparent 80%);
    z-index: 0;
}
.why-choose-us-section h2,
.why-choose-us-section p,
.why-choose-us-section h3 {
    color: #fff;
}
.why-choose-features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}
.why-feature {
    background: rgba(255,255,255,0.04);
    box-shadow: none;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: transform 0.3s, background 0.2s;
    max-width: 320px;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}
.why-feature:hover {
    background: rgba(30,144,255,0.10);
    transform: translateY(-8px) scale(1.04);
}
.why-icon svg circle {
    fill: #1e90ff;
    opacity: 0.18;
}
.why-icon svg path,
.why-icon svg rect,
.why-icon svg ellipse {
    stroke: #fff;
    fill: #fff;
}
.why-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: #fff;
}
.why-feature p {
    color: #e0e7ef;
    font-size: 1rem;
}
.why-feature .btn, .why-feature button, .why-feature a.btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px 0 rgba(30,144,255,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.why-feature .btn:hover, .why-feature button:hover, .why-feature a.btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(30,144,255,0.18);
}
@media (max-width: 900px) {
    .why-choose-features {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
    }
    .why-feature {
        max-width: 100%;
    }
}

/* Last row grid for centering last 2 service cards */
.last-row-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .last-row-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Accent bar above section title */
.section-accent-bar {
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 3px;
  margin: 0 auto 1.2rem auto;
}

.footer {
    background: var(--primary);
    color: #fff;
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    border-radius: 0;
    margin-top: 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}
.footer-brand img {
    display: block;
    margin-bottom: 1rem;
}
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links a,
.footer-contact a {
    color: #b6c2e2;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
    text-decoration: underline;
}
.footer-social-link img {
    filter: grayscale(1) brightness(1.5);
    transition: filter 0.2s, transform 0.2s;
    margin-right: 0.5rem;
}
.footer-social-link:hover img {
    filter: none;
    transform: scale(1.1) translateY(-2px);
}
.footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}
.footer p, .footer li {
    font-size: 1rem;
    color: #b6c2e2;
    margin-bottom: 0.5rem;
}
.footer .mb-0 { margin-bottom: 0 !important; }
.footer .mb-1 { margin-bottom: 0.5rem !important; }
.footer .mb-2 { margin-bottom: 1rem !important; }
.footer .mb-3 { margin-bottom: 1.5rem !important; }
.footer .mt-2 { margin-top: 1rem !important; }
.footer .gap-2 { gap: 1rem; }
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
    }
    .footer-brand, .footer-links, .footer-contact, .footer-social {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
}

.hero-btn-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  text-align: center;
}
.hero-btn {
  display: inline-block;
  min-width: 170px;
  width: 200px;
  padding: 0.95rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.hero-btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}
.hero-btn-primary:hover, .hero-btn-primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(68,110,135,0.13);
}
.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-sizing: border-box;
  width: calc(200px - 4px);
  padding-top: calc(0.95rem - 0.0625rem);
  padding-bottom: calc(0.95rem - 0.0625rem);
}
.hero-btn-secondary:hover, .hero-btn-secondary:focus {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(68,110,135,0.13);
}
@media (max-width: 600px) {
  .hero-btn-group {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
  }
  .hero-btn {
    min-width: 0;
    width: 100%;
    padding: 0.85rem 0;
    font-size: 1rem;
  }
}

.services-alt-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-row {
  display: flex;
  width: 100%;
  min-height: 320px;
  align-items: stretch;
  margin-bottom: 0;
}
.service-row.left {
  flex-direction: row;
}
.service-row.right {
  flex-direction: row-reverse;
}
.service-image {
  flex: 0 0 42%;
  max-width: 42%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  background: var(--background-alt);
}
.service-row.right .service-image {
  border-radius: 0;
}
.service-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.service-row.left .service-image::after,
.service-row.right .service-image::after {
  display: none !important;
  content: none !important;
}
.service-content {
  flex: 1 1 0;
  max-width: 66%;
  background: #fff;
  border-radius: 0;
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 24px 0 rgba(10,26,56,0.08);
  border: 2px solid transparent;
  text-align: left;
  align-items: flex-start;
}
.service-row.right .service-content {
  border-radius: 0;
  text-align: left;
  align-items: flex-start;
}
.service-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.service-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 900px) {
  .service-row {
    margin-bottom: 0;
  }
  .service-image, .service-content {
    max-width: 100%;
    width: 100%;
  }
  .service-content {
    max-width: 100%;
    width: 100%;
    background: var(--background-alt);
  }
}
@media (max-width: 600px) {
  .service-row {
    margin-bottom: 0;
  }
  .service-content {
    padding: 1.1rem 0.5rem;
  }
  .service-image {
    min-height: 120px;
    max-height: 160px;
  }
}

#services > h2.text-center {
  margin-top: calc(4.5rem - 4px);
}
@media (max-width: 600px) {
  #services > h2.text-center {
    margin-top: calc(2.5rem - 4px);
  }
}

.curved-divider {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  line-height: 0;
  z-index: 2;
  background: transparent;
  padding: 0;
  margin-bottom: -2px;
  margin-top: -40px;
}
.why-choose-us-section {
  border-radius: 0;
}

.curved-divider-top-contact {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  line-height: 0;
  z-index: 2;
  background: transparent;
  padding: 0;
  margin-bottom: -60px;
  margin-top: -60px;
}

.services {
  padding: 5rem 0;
  margin-top: -5rem;
  background: var(--light);
}

/* Hero Carousel Styles */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* Directional slide transitions */
.hero-slide.slide-left-in {
    opacity: 1;
    transform: translateX(100%);
    z-index: 4;
    animation: slideLeftIn 1.2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide.slide-left-out {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
    animation: slideLeftOut 1.2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide.slide-right-in {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 4;
    animation: slideRightIn 1.2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide.slide-right-out {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
    animation: slideRightOut 1.2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes slideLeftIn {
    from { opacity: 1; transform: translateX(100%); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeftOut {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 1; transform: translateX(-100%); }
}
@keyframes slideRightIn {
    from { opacity: 1; transform: translateX(-100%); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRightOut {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 1; transform: translateX(100%); }
}

.hero-slide .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide .hero-content {
    max-width: 800px;
    margin: 0 auto;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
}

.hero-slide.active .hero-content {
    animation: slideInContent 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInContent {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-slide .modern-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0,0,0,0.18);
    text-align: center;
}

.hero-slide .modern-hero-subtitle {
    font-size: 1.25rem;
    color: #e0e7ef !important;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-align: center;
}

.hero-slide .hero-btn {
    color: #fff !important;
    text-decoration: none;
}

.partner-logo {
    height: 2.5rem;
    width: auto;
    vertical-align: middle;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
}

.carousel-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.carousel-dot:hover {
    border-color: white;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    color: white;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    .carousel-nav {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
    
    .carousel-nav {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

.hero-slide:nth-child(2) {
    background: url('../assets/hero-bg-image.jpeg') center/cover no-repeat;
}

.hero-slide:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 30, 40, 0.55);
    z-index: 2;
    pointer-events: none;
}

/* New Service Structure Styles */
.service-category {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.service-category-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.onfinity-badge, .ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.ai-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.onfinity-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.service-category-header h3 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.service-category-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
}

.service-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover::after {
    width: 100%;
}

/* Responsive adjustments for new service structure */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .service-category-header h3 {
        font-size: 1.8rem;
    }
    
    .onfinity-badge, .ai-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-category {
        padding: var(--spacing-md) 0;
    }
    
    .service-category-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .service-category-header h3 {
        font-size: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
    }
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    line-height: 1.6;
}

.service-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.service-features {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.service-benefits {
    padding: var(--spacing-xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    background: var(--background);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-item h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.implementation-process {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.process-step {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.process-step h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.service-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .features-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: var(--spacing-lg) 0;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .benefit-item,
    .process-step {
        padding: var(--spacing-md);
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
} 

/* Modern Service Split Section */
.modern-service-split {
  background: #fff;
  padding: 4rem 0;
}
.modern-service-split-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.modern-service-split-left {
  flex: 1 1 340px;
  min-width: 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modern-service-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: #18181b;
}
.modern-service-sub {
  font-size: 1.1rem;
  color: #446e87;
  font-weight: 500;
}
.modern-service-desc {
  font-size: 1.1rem;
  color: #446e87;
  margin-bottom: 2rem;
}
.modern-service-cta {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 2px 12px 0 rgba(37,99,235,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.modern-service-cta:hover, .modern-service-cta:focus {
  background: #1e40af;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(37,99,235,0.16);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}
.modern-service-split-right {
  flex: 2 1 480px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modern-service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  align-items: stretch;
}
.modern-service-card {
  background: #fff;
  box-shadow: 0 4px 16px rgba(30,64,175,0.08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}
.modern-service-card:hover {
  box-shadow: 0 8px 32px rgba(30,64,175,0.16);
  transform: translateY(-4px) scale(1.03);
}
.modern-service-card-icon {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.modern-service-card-icon img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.modern-service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #18181b;
}
.modern-service-card p {
  font-size: 1rem;
  color: #446e87;
}
.modern-service-card .service-link {
  margin-top: auto;
}
@media (max-width: 900px) {
  .modern-service-split-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .modern-service-split-left, .modern-service-split-right {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .modern-service-card-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .modern-service-split {
    padding: 2rem 0;
  }
  .modern-service-title {
    font-size: 1.5rem;
  }
} 

.align-bottom {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.align-bottom .service-link {
  margin-top: auto;
}
/* Optionally, increase min-height for .modern-service-card if needed */
.modern-service-card {
  min-height: 420px;
} 

.tall-card {
  min-height: 440px;
}

.tall-card-2 {
  min-height: 350px;
}

.service-cta .cta-btn-primary, .service-cta .cta-btn-secondary {
  text-decoration: none !important;
  width: 280px;
  min-width: 180px;
  padding: 0.9rem 0;
  font-size: 1.13rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.service-cta .cta-btn-primary {
  background: #1d4052;
  color: #fff;
  border: none;
}
.service-cta .cta-btn-primary:hover {
  background: #030f18;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(29,64,82,0.13);
}
.service-cta .cta-btn-secondary {
  background: #fff;
  color: #1d4052;
  border: 2px solid #1d4052;
}
.service-cta .cta-btn-secondary:hover {
  background: #1d4052;
  color: #fff;
  border-color: #1d4052;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(29,64,82,0.13);
} 

.extra-bottom-space .service-link {
  margin-bottom: 2rem;
} 
.extra-bottom-space .spacer {
  height: 2rem;
} 

/* ===== GLOBAL HORIZONTAL SCROLL REMOVAL ===== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.container, .row, section, header, footer, main, nav, div {
  max-width: 100%;
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

.row, .grid, .flex, .features, .cards, .hero-btn-group {
  flex-wrap: wrap;
}

.hero, .hero-slide, .hero-slider, .banner, .slide {
  overflow-x: hidden;
}

.cta-float-wrap {
  right: 16px;
}
