/* --- CSS Variables & Base --- */
:root {
    --primary-color: #0D3B66;
    --secondary-color: #1E293B;
    --accent-color: #F59E0B;
    --accent-hover: #D97706;
    --bg-color: #F8FAFC;
    --bg-light: #F1F5F9;
    --text-color: #111827;
    --text-light: #475569;
    --white: #FFFFFF;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 10px 30px rgba(13, 59, 102, 0.08);
    --box-shadow-hover: 0 15px 40px rgba(13, 59, 102, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* --- Typography Utilities --- */
.section-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-whatsapp-slide {
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp-slide:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Let clicks pass through after animation */
}

.preloader-panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-left {
    left: 0;
}

.preloader-right {
    right: 0;
}

.preloader-content {
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.scanner-wrapper {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.preloader-logo {
    height: 60px;
    display: block;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color), 0 0 25px var(--accent-color);
    animation: scan 1.5s ease-in-out infinite alternate;
}

@keyframes scan {
    0% {
        top: 0;
    }
    100% {
        top: calc(100% - 4px);
    }
}

/* Loaded State Classes */
.preloader.loaded .preloader-content {
    opacity: 0;
}

.preloader.loaded .preloader-left {
    transform: translateX(-100%);
}

.preloader.loaded .preloader-right {
    transform: translateX(100%);
}


/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
}

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

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

.logo img {
    height: 75px;
    max-width: 300px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: none; /* Shows if img fails or is empty initially */
}
img[src="assets/images/logo.png"]:not([src*="logo.png" i]) + .logo-text,
img[src="assets/images/logo.png"][src=""] + .logo-text,
img[src="assets/images/logo.png"][src="#"] + .logo-text {
    display: block;
}


.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.btn-primary-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-primary-nav::after {
    display: none;
}

.btn-primary-nav:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 59, 102, 0.2);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Slider --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 0;
}

.hero-slider, .swiper-wrapper, .swiper-slide {
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 59, 102, 0.9) 0%, rgba(13, 59, 102, 0.6) 50%, rgba(30, 41, 59, 0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.slide-buttons {
    display: flex;
    gap: 20px;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent-color);
}


/* --- About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    z-index: 2;
}

.experience-badge i {
    font-size: 36px;
}

.experience-badge span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--secondary-color);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 20px;
}

/* --- Services Section --- */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(13, 59, 102, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(245, 158, 11, 0.3);
}

.service-card-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.03) 0%, rgba(13, 59, 102, 0.07) 100%);
    border-bottom: 1px solid rgba(13, 59, 102, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card-header {
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.05) 0%, rgba(13, 59, 102, 0.1) 100%);
}

.service-card-header .service-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(13, 59, 102, 0.15);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.25);
}

.service-card-header h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.service-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
}

.service-subgroup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-subgroup-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--accent-color);
    padding-left: 10px;
    margin-bottom: 5px;
}

.service-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

.service-bullet-list li i {
    color: var(--accent-color);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
    background: rgba(245, 158, 11, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Features (Why Choose Us) --- */
.section-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--accent-color);
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Process Timeline --- */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(13, 59, 102, 0.2);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
}

.process-step:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}

.step-number {
    position: absolute;
    top: 0;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    border: 4px solid var(--bg-light);
}

.process-step:nth-child(even) .step-number {
    left: -20px;
    right: auto;
}

.step-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 15px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
}

.process-step:nth-child(even) .step-content::before {
    left: -10px;
    right: auto;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 59, 102, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h5 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.form-card h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.1);
}

.input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background-color: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.1);
    border-right: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
}

.input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

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

/* --- Footer --- */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-tagline {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* --- Floating WhatsApp Button --- */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.float-whatsapp:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 46px;
    }
    .contact-wrapper {
        gap: 30px;
    }
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 120px; /* Perfectly positioned above WhatsApp */
    right: 45px;   /* Centered with WhatsApp */
    width: 50px;
    height: 50px;
    background: rgba(13, 59, 102, 0.9);
    backdrop-filter: blur(5px);
    border: 2px solid var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6);
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-content {
        order: 1;
    }

    .process-timeline::before {
        left: 30px;
    }
    
    .process-step, .process-step:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .step-number, .process-step:nth-child(even) .step-number {
        left: 10px;
        right: auto;
    }
    
    .step-content::before, .process-step:nth-child(even) .step-content::before {
        left: -10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .mobile-toggle {
        display: block;
        flex-shrink: 0;
    }

    .logo img {
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 18px;
        white-space: normal;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: var(--transition);
        padding: 40px 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-subtitle {
        font-size: 15px;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none; /* Hide arrows on mobile because they overlap text */
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-body {
        padding: 20px;
        gap: 20px;
    }

    .service-card-header {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}
