    :root {
    --blue: #303192;
    --blue-dark: #303192;
    --blue-bg: #303192;
    --yellow: #ffc107;
    --yellow-dark: #e0a800;
    --white: #ffffff;
    --field-bg: rgba(255,255,255,0.18);
    --field-border: rgba(255,255,255,0.35);
    --field-focus: rgba(255,255,255,0.55);
    --label-color: rgba(255,255,255,0.97);
    --text-dark: #1a1a2e;
    --radius: 8px;
    --transition: all 0.22s ease;
    }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Top Strip */
.top-strip {
    background-color: #303192;
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-strip-item .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.top-strip-item a {
    color: white;
    font-weight: 500;
}

.top-strip-item a:hover {
    opacity: 0.9;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1b75bb;
    font-family: 'Poppins', sans-serif;
}

.logo-image {
    height: 110px;
    width: auto;
}

.logo-icon {
    width: 32px;
    height: 32px;
    stroke: #1b75bb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
    text-transform:capitalize
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1b75bb;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #1b75bb;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 350px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 15px;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #1b75bb;
    padding-left: 25px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #1b75bb;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section - Unique Split Layout */
.hero {
    position: relative;
    /* background: linear-gradient(135deg, #0f5288 0%, #303192 50%, #1e88d9 100%); */
    background:url(../images/banner.webp) no-repeat center center/cover;
    color: white;
    overflow: hidden;
    padding: 80px 0;
}

.hero-shape-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.text-yellow {
    color: #ffd700;
    position: relative;
    display: inline-block;
}

.text-yellow::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.hero-feature svg {
    width: 22px;
    height: 22px;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.trust-stars {
    display: flex;
    gap: 3px;
    color: #ffd700;
}

.trust-stars svg {
    width: 20px;
    height: 20px;
}

.trust-text {
    font-size: 15px;
    opacity: 0.95;
}

.trust-text strong {
    color: #ffd700;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

.hero-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.hero-image-main:hover {
    transform: rotate(0deg);
}

.hero-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: white;
    color: #1a1a1a;
    padding: 15px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-card-1 {
    top: 30px;
    left: -30px;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 80px;
    right: -30px;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: -20px;
    left: 40px;
    animation-delay: 2s;
}

.floating-card-icon {
    width: 45px;
    height: 45px;
    background: #1b75bb;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon.yellow-bg {
    background: #ffd700;
    color: #1a1a1a;
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1b75bb;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.card-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: #303192;
    color: white;
    border-color: #303192;
}

.btn-primary:hover {
    background-color: #155a94;
    border-color: #155a94;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 117, 187, 0.4);
}

.btn-secondary {
    background-color: white;
    color: #1b75bb;
    border-color: white;
}

.btn-secondary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: #1b75bb;
    border-color: white;
}

.btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #1b75bb;
    transform: translateY(-2px);
}

.btn-yellow {
    background-color: #ffd700;
    color: #1a1a1a;
    border-color: #ffd700;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-yellow:hover {
    background-color: #ffc700;
    border-color: #ffc700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #1b75bb;
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 117, 187, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #303192;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #303192;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-number::after {
    content: '+';
    font-size: 36px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(27, 117, 187, 0.2);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-btn {
    color: #1b75bb;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-btn:hover {
    color: #155a94;
    transform: translateX(5px);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    padding: 140px 0;
    color: white;
    overflow: hidden;
    background: #0f5288;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-image: url('https://images.pexels.com/photos/4239091/pexels-photo-4239091.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=1080&w=1920');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 82, 136, 0.92) 0%, #303192 100%);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.parallax-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.parallax-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 25px;
}

.parallax-subtitle {
    font-size: 19px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.95;
}

.parallax-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.parallax-stat {
    text-align: center;
}

.parallax-stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #ffd700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.parallax-stat-label {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.parallax-divider {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
}

.parallax-cta {
    font-size: 18px;
    padding: 18px 40px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-title {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-bottom: 35px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #1b75bb;
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1b75bb 0%, #0f5288 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials-slider {
    margin-top: 60px;
    padding: 0 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: auto;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b75bb 0%, #0f5288 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.author-location {
    font-size: 14px;
    color: #666;
}

.swiper-button-prev,
.swiper-button-next {
    color: #1b75bb !important;
    background: white;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: #1b75bb !important;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Content with Image Section */
.content-image {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.content-image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-title {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.content-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1b75bb 0%, #0f5288 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.content-image-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-image-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    background: white;
    border-color: #1b75bb;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(27, 117, 187, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #303192 0%, #050626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
}

.benefit-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Service Areas Section */
.service-areas {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.area-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.area-card:hover {
    background: linear-gradient(135deg, #1b75bb 0%, #0f5288 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 117, 187, 0.25);
}

.area-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    color: #1b75bb;
    transition: color 0.3s ease;
}

.area-card:hover .area-icon {
    color: white;
}

.area-card h3 {
    font-size: 18px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #1b75bb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #1b75bb;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #1b75bb;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-detail-item svg {
    width: 24px;
    height: 24px;
    color: #1b75bb;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-detail-item strong {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-detail-item a,
.contact-detail-item span {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-detail-item a:hover {
    color: #1b75bb;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1b75bb;
    box-shadow: 0 0 0 3px rgba(27, 117, 187, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer Logo */
.footer-logo-image {
    height: 110px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo {
    display: block;
}

/* How It Works Section */
.how-it-works {
    position: relative;
    background: linear-gradient(135deg, #1b75bb 0%, #0f5288 100%);
    padding: 100px 0 0;
    color: white;
    overflow: hidden;
}

.how-it-works-images-left,
.how-it-works-images-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 15px;
    z-index: 1;
    pointer-events: none;
}

.how-it-works-images-left {
    left: 0;
    align-items: flex-start;
}

.how-it-works-images-right {
    right: 0;
    align-items: flex-end;
}

.how-it-works-images-left img,
.how-it-works-images-right img {
    width: 140px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.how-it-works-images-left img:nth-child(1) { transform: translateX(-20px); }
.how-it-works-images-left img:nth-child(3) { transform: translateX(-30px) translateY(-15px); }
.how-it-works-images-right img:nth-child(2) { transform: translateX(20px); }
.how-it-works-images-right img:nth-child(3) { transform: translateX(30px) translateY(-15px); }

.how-header {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 60px;
}

.how-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.how-tagline svg {
    width: 22px;
    height: 22px;
}

.how-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    color: white;
}

.how-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
    flex-wrap: wrap;
}

.how-step {
    text-align: center;
    position: relative;
}

.how-step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.how-step:hover .how-step-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.how-step-icon svg {
    width: 45px;
    height: 45px;
}

.how-step-badge {
    background: #ffd700;
    color: #1a1a1a;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.how-step-number {
    font-size: 42px;
    font-weight: 800;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.how-connector {
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(to right, #ffd700 0, #ffd700 6px, transparent 6px, transparent 12px);
    margin-top: -100px;
}

/* Satisfaction Stats Card */
.satisfaction-card {
    background: white;
    color: #1a1a1a;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(50%);
    position: relative;
    z-index: 5;
}

.satisfaction-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.satisfaction-heading svg {
    width: 24px;
    height: 24px;
    color: #ffd700;
}

.satisfaction-heading p {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.satisfaction-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sat-stat {
    text-align: center;
    position: relative;
    padding: 20px 10px;
}

.sat-watermark {
    font-size: 80px;
    font-weight: 800;
    color: rgba(27, 117, 187, 0.08);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: -30px;
}

.sat-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

/* Before & After Section */
.before-after {
    padding: 180px 0 100px;
    background-color: #f8f9fa;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.ba-slider-wrapper {
    position: relative;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    user-select: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ba-after,
.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-after img,
.ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-before {
    width: 50%;
    overflow: hidden;
}

.ba-before img {
    width: 200%;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 3;
}

.ba-label-after {
    left: 20px;
    background: #1b75bb;
    color: white;
}

.ba-label-before {
    right: 20px;
    background: white;
    color: #1a1a1a;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    cursor: ew-resize;
}

.ba-handle-circle svg {
    width: 14px;
    height: 14px;
}

.ba-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1b75bb;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ba-tagline svg {
    width: 22px;
    height: 22px;
}

.ba-title {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.2;
}

.ba-description {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ba-features {
    list-style: none;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ba-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.ba-check {
    width: 28px;
    height: 28px;
    background: #1b75bb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ba-check svg {
    width: 16px;
    height: 16px;
}

.ba-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #1b75bb;
}

/* Info Cards (Emergency Call + Features) */
.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 117, 187, 0.12);
}

.info-card-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1b75bb;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.info-card-tagline svg {
    width: 18px;
    height: 18px;
}

.info-card-title {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.3;
}

.info-card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.info-card-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 700;
    color: #1b75bb;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.info-card-phone:hover {
    color: #ffd700;
}

.phone-icon-wrap {
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.info-card-footer {
    font-size: 14px;
    color: #666;
    border-top: 1px solid #e9ecef;
    padding-top: 18px;
}

.info-card-footer a {
    color: #1b75bb;
    font-weight: 600;
    text-decoration: underline;
}

.info-card-footer a:hover {
    color: #ffd700;
}

.features-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.features-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.feat-check {
    width: 22px;
    height: 22px;
    background: #1b75bb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-check svg {
    width: 12px;
    height: 12px;
}

.features-illustration {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.features-illustration svg {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background-color: #e5e5e5;
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr ;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-logo .logo-icon {
    stroke: white;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: #303192;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgb(18 44 139);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #1b75bb;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #303192;
}

.footer-links {
    list-style: none;
    display: flex;
    gap:15px;
    flex-wrap: wrap;
}

.footer-links li {
}

.footer-links a {
    color: #303192;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1b75bb;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: #303192;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #1b75bb;
}

.footer-contact a {
    color: #303192;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #1b75bb;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #000;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #000;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #1b75bb;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1b75bb 0%, #0f5288 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(27, 117, 187, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(27, 117, 187, 0.5);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  /* ── CARD ── */
  .form-card {
    background: var(--blue-bg);
    border-radius: 18px;
    padding: 32px 28px 28px;
    width: 100%;
    max-width: 480px;
    box-shadow:
      0 24px 60px rgba(13,110,253,0.35),
      0 4px 16px rgba(0,0,0,0.15);
    animation: slideUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
    position: relative;
    overflow: hidden;
  }
 
  /* Subtle gloss overlay at top */
  .form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
    border-radius: 18px 18px 0 0;
    pointer-events: none;
  }
 
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ── GRID ── */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
  }
 
  .field-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
  }
 
  .field-group.full-width {
    grid-column: 1 / -1;
  }
 
  /* ── LABEL ── */
  label {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--label-color);
    letter-spacing: 0.01em;
    user-select: none;
  }
 
  /* ── INPUTS & SELECTS ── */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    width: 100%;
    background: var(--field-bg);
    border: 1.5px solid var(--field-border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 14px;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(4px);
  }
 
  input[type="text"]::placeholder,
  input[type="email"]::placeholder,
  input[type="tel"]::placeholder {
    color: rgba(255,255,255,0.45);
    font-weight: 500;
  }
 
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="date"]:focus,
  select:focus,
  textarea:focus {
    border-color: var(--field-focus);
    background: rgba(255,255,255,0.24);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
  }
 
  /* ── SELECT WRAPPER (for custom arrow) ── */
  .select-wrap {
    position: relative;
  }
 
  .select-wrap select {
    padding-right: 38px;
    cursor: pointer;
  }
 
  .select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255,255,255,0.8);
    pointer-events: none;
  }
 
  select option {
    background: #1460e8;
    color: var(--white);
  }
 
  /* ── DATE INPUT ── */
  input[type="date"] {
    cursor: pointer;
    color: rgba(255,255,255,0.75);
  }
 
  input[type="date"]:valid {
    color: var(--white);
  }
 
  /* Style the calendar icon */
  input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.7);
    cursor: pointer;
    padding: 0;
  }
 
  /* ── TEXTAREA ── */
  textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
  }
 
  textarea::placeholder {
    color: rgba(255,255,255,0.4);
    font-weight: 400;
  }
 
  /* ── SUBMIT BUTTON ── */
  .btn-submit {
    width: 100%;
    background: var(--yellow);
    color: var(--text-dark);
    border: none;
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 14px 24px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
    box-shadow: 0 4px 18px rgba(255,193,7,0.4);
    position: relative;
    overflow: hidden;
  }
 
  .btn-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
  }
 
  .btn-submit:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,193,7,0.55);
  }
 
  .btn-submit:hover::before {
    left: 150%;
  }
 
  .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(255,193,7,0.35);
  }
 
  /* ── SUCCESS STATE ── */
  .success-msg {
    display: none;
    text-align: center;
    padding: 20px;
    color: var(--white);
  }
 
  .success-msg .check-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    animation: pop 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
 
  @keyframes pop {
    from { transform: scale(0); }
    to   { transform: scale(1); }
  }
 
  .success-msg h3 {
    font-size: 1.3rem; font-weight: 800; margin-bottom: 6px;
  }
 
  .success-msg p {
    font-size: 0.9rem; opacity: 0.8;
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 480px) {
    .form-card {
      padding: 26px 20px 22px;
      border-radius: 14px;
    }
 
    .form-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
 
    .field-group.full-width {
      grid-column: 1;
    }
  }
 
  @media (min-width: 600px) {
    .form-card {
      padding: 36px 36px 32px;
    }
  }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .parallax-title {
        font-size: 40px;
    }
    
    .parallax-stats {
        gap: 40px;
    }
    
    .about-content,
    .content-image-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works-images-left,
    .how-it-works-images-right {
        display: none;
    }
    
    .how-title {
        font-size: 32px;
    }
    
    .satisfaction-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ba-slider {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 0px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        align-items: flex-start;
        gap: 5px;
    }
    
    .nav-menu.active {
        max-height: 800px;
        overflow-y: auto;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 12px 15px;
        width: 100%;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0 0 10px 20px;
        border-radius: 0;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        min-width: auto;
        width: 100%;
        display: block;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0 10px 20px;
    }
    
    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px;
        border-left: 2px solid #e9ecef;
    }
    
    .dropdown-menu a:hover {
        border-left-color: #1b75bb;
        background-color: #f8f9fa;
        padding-left: 20px;
    }
    
    .top-strip-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image-main img {
        height: 350px;
    }
    
    .hero-card-1 { top: 10px; left: 10px; padding: 10px 14px; }
    .hero-card-2 { bottom: 50px; right: 10px; padding: 10px 14px; }
    .hero-card-3 { bottom: -10px; left: 20px; padding: 10px 14px; }
    
    .hero-floating-card .card-title { font-size: 16px; }
    .hero-floating-card .card-subtitle { font-size: 11px; }
    
    .parallax-section {
        padding: 80px 0;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .parallax-title {
        font-size: 30px;
    }
    
    .parallax-subtitle {
        font-size: 16px;
    }
    
    .parallax-stats {
        gap: 30px;
    }
    
    .parallax-stat-number {
        font-size: 40px;
    }
    
    .parallax-divider {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title,
    .content-title,
    .cta-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .logo-image {
        height: 80px;
    }
    
    .how-it-works {
        padding: 70px 0 0;
    }
    
    .how-title {
        font-size: 26px;
    }
    
    .how-steps {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 80px;
    }
    
    .how-connector {
        display: none;
    }
    
    .satisfaction-card {
        padding: 30px 20px;
        transform: translateY(40%);
    }
    
    .satisfaction-heading p {
        font-size: 16px;
    }
    
    .satisfaction-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .sat-watermark {
        font-size: 60px;
        margin-bottom: -22px;
    }
    
    .before-after {
        padding: 200px 0 80px;
    }
    
    .ba-title {
        font-size: 28px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .info-card-title {
        font-size: 22px;
    }
    
    .info-card-phone {
        font-size: 20px;
    }
    
    .features-row {
        flex-direction: column;
    }
    
    .features-illustration {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .hero-image-main img {
        height: 280px;
    }
    
    .parallax-title {
        font-size: 26px;
    }
    
    .parallax-stat-number {
        font-size: 34px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-title,
    .content-title,
    .cta-title {
        font-size: 24px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
   
    
    .footer-logo-image {
        height: 50px;
    }
}



/* about us */
  :root{
    --sbc-ink:#152925;
    --sbc-deep:#2E3192;
    --sbc-deep-2:#123F39;
    --sbc-mist:#EEF3EE;
    --sbc-paper:#FBFAF6;
    --sbc-gold:#C39B5F;
    --sbc-gold-soft:#E4CE9E;
    --sbc-line:rgba(21,41,37,0.12);
    --sbc-white:#FFFFFF;
    --sbc-max:1120px;
  }
 
 
 
  .sbc-wrap{
    max-width:var(--sbc-max);
    margin:0 auto;
    padding:0 24px;
  }
 
  /* ---------- signature wipe motif ---------- */
  .sbc-wipe{
    position:relative;
    overflow:hidden;
  }

 
  /* ---------- header / nav ---------- */
  
  /* ---------- hero ---------- */
  .sbc-hero{
    position:relative;

    padding:96px 24px 88px;
    overflow:hidden;
  }

  .sbc-hero-inner{
    position:relative;
    max-width:var(--sbc-max);
    margin:0 auto;
  }
  .sbc-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:0.78rem;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--sbc-gold-soft);
    font-weight:600;
    margin-bottom:22px;
  }
  .sbc-eyebrow::before{
    content:"";
    width:28px;
    height:1px;
    background:var(--sbc-gold);
  }
  .sbc-hero h1{
    font-size:clamp(2.1rem, 5.2vw, 3.4rem);
    max-width:35ch;
  }
  .sbc-hero-lead{
    margin-top:22px;
    max-width:56ch;
    font-size:1.06rem;

  }
  .sbc-hero-actions{
    margin-top:36px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .sbc-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    font-size:0.92rem;
    font-weight:600;
    text-decoration:none;
    border-radius:2px;
    transition:all 0.2s ease;
  }
  .sbc-btn-primary{
    background:var(--sbc-gold);
    color:var(--sbc-deep);
  }
  .sbc-btn-primary:hover{background:var(--sbc-gold-soft);}
  .sbc-btn-ghost{
    border:1px solid rgba(46, 45, 45, 0.35);
    color:var(--sbc-deep);
  }
  .sbc-btn-ghost:hover{border-color:var(--sbc-gold);color:var(--sbc-gold-soft);}
 
  /* ---------- section shell ---------- */
  section{padding:80px 0;}
  .sbc-section-head{
    max-width:640px;
    margin-bottom:44px;
  }
  .sbc-kicker{
    display:block;
    font-size:0.78rem;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--sbc-gold);
    font-weight:700;
    margin-bottom:14px;
  }
  .sbc-section-head h2{
    font-size:clamp(1.6rem, 3.6vw, 2.3rem);
  }
 
  /* ---------- about / two-col ---------- */
  .sbc-about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:start;
  }
  .sbc-about p + p{margin-top:18px;}
  .sbc-about .sbc-body{color:#3A4C47;font-size:1rem;}
  .sbc-quote-block{
    background:var(--sbc-white);
    border:1px solid var(--sbc-line);
    border-left:3px solid var(--sbc-gold);
    padding:32px 30px;
    border-radius:2px;
  }
  .sbc-quote-block p{
    font-family:'Fraunces',serif;
    font-size:1.25rem;
    font-weight:500;
    color:var(--sbc-deep);
    line-height:1.5;
  }
  .sbc-quote-block cite{
    display:block;
    margin-top:18px;
    font-style:normal;
    font-size:0.82rem;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:#7A8983;
    font-weight:600;
  }
 
  /* ---------- mission / passion split ---------- */
  .sbc-split{
    background:var(--sbc-mist);
  }
  .sbc-split-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    border:1px solid var(--sbc-line);
    border-radius:2px;
    overflow:hidden;
    background:var(--sbc-white);
  }
  .sbc-split-cell{
    padding:44px 40px;
  }
  .sbc-split-cell:first-child{
    border-right:1px solid var(--sbc-line);
  }
  .sbc-split-num{
    font-family:'Fraunces',serif;
    font-size:0.85rem;
    color:var(--sbc-gold);
    font-weight:600;
    letter-spacing:0.08em;
    text-transform:uppercase;
    margin-bottom:16px;
    display:block;
  }
  .sbc-split-cell h3{
    font-size:1.4rem;
    margin-bottom:14px;
  }
  .sbc-split-cell p{color:#3A4C47;}
  .sbc-split-cell p + p{margin-top:12px;}
 
  /* ---------- services ---------- */
  .sbc-services-list{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:var(--sbc-line);
    border:1px solid var(--sbc-line);
    border-radius:2px;
    overflow:hidden;
  }
  .sbc-services-list li{
    background:var(--sbc-white);
    padding:22px 24px;
    font-size:0.96rem;
    font-weight:500;
    color:var(--sbc-deep);
    display:flex;
    align-items:center;
    gap:12px;
    transition:background 0.2s ease;
  }
  .sbc-services-list li:hover{background:var(--sbc-mist);}
  .sbc-services-list li::before{
    content:"";
    width:7px;
    height:7px;
    flex-shrink:0;
    background:var(--sbc-gold);
    transform:rotate(45deg);
  }
 
  /* ---------- differentiators ---------- */
  .sbc-diff-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
  }
  .sbc-diff-card{
    background:var(--sbc-white);
    border:1px solid var(--sbc-line);
    border-radius:2px;
    padding:34px 28px;
  }
  .sbc-diff-card h3{
    font-size:1.15rem;
    margin-bottom:12px;
  }
  .sbc-diff-card p{
    color:#3A4C47;
    font-size:0.95rem;
  }
  .sbc-diff-mark{
    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--sbc-deep);
    color:var(--sbc-gold-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Fraunces',serif;
    font-weight:600;
    font-size:0.95rem;
    margin-bottom:18px;
  }
 .sbc-hero,.sbc-intro, .sbc-split, #services, .sbc-commit.sbc-wipe {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
  /* ---------- commitment ---------- */
  .sbc-commit{
    background:var(--sbc-deep);
    color:var(--sbc-white);
    position:relative;
  }
  .sbc-commit .sbc-section-head h2,
  .sbc-commit .sbc-kicker{color:var(--sbc-gold-soft);}
  .sbc-commit .sbc-section-head h2{color:var(--sbc-white);}
  .sbc-commit-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:56px;
    align-items:center;
  }
  .sbc-commit-body p{
    color:rgba(255,255,255,0.82);
    font-size:1rem;
  }
  .sbc-commit-body p + p{margin-top:16px;}
  .sbc-tag-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }
  .sbc-tag{
    border:1px solid rgba(255,255,255,0.28);
    color:rgba(255,255,255,0.9);
    font-size:0.82rem;
    padding:9px 16px;
    border-radius:999px;
  }
 
  /* ---------- final cta ---------- */
  .sbc-cta{
    text-align:center;
    padding:96px 24px;
  }
  .sbc-cta h2{
    font-size:clamp(1.7rem, 4vw, 2.5rem);
    max-width:20ch;
    margin:0 auto;
  }
  .sbc-cta p{
    max-width:52ch;
    margin:20px auto 0;
    color:#3A4C47;
  }
  .sbc-cta .sbc-hero-actions{
    justify-content:center;
    margin-top:34px;
  }
  .sbc-cta .sbc-btn-primary{
    background:var(--sbc-deep);
    color:var(--sbc-white);
  }
  .sbc-cta .sbc-btn-primary:hover{background:var(--sbc-gold);color:var(--sbc-deep);}
  .sbc-cta .sbc-btn-ghost{
    border:1px solid var(--sbc-line);
    color:var(--sbc-deep);
  }
  .sbc-cta .sbc-btn-ghost:hover{border-color:var(--sbc-gold);color:var(--sbc-gold);}
 
 
  /* ---------- responsive ---------- */
  @media (max-width:860px){
    .sbc-about{grid-template-columns:1fr;gap:36px;}
    .sbc-split-grid{grid-template-columns:1fr;}
    .sbc-split-cell:first-child{border-right:none;border-bottom:1px solid var(--sbc-line);}
    .sbc-services-list{grid-template-columns:repeat(2, 1fr);}
    .sbc-diff-grid{grid-template-columns:repeat(2, 1fr);}
    .sbc-commit-grid{grid-template-columns:1fr;gap:32px;}
  }
  @media (max-width:560px){
    section{padding:60px 0;}
    .sbc-hero{padding:72px 20px 64px;}
    .sbc-services-list{grid-template-columns:1fr;}
    .sbc-diff-grid{grid-template-columns:1fr;}
    .sbc-nav-inner{padding:14px 20px;}
    .sbc-hero-actions .sbc-btn{width:100%;justify-content:center;}
    .sbc-hero-actions{flex-direction:column;}
  }
 
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{transition:none !important;}
  }
