/* assets/css/tema.css */

/* --- Global Styles & Variables --- */
:root {
    --primary-color:rgb(53, 168, 68); /* Blue */
    --secondary-color: #2ecc71; /* Green */
    --accent-color: #f39c12; /* Orange */
    --dark-bg:rgb(62, 155, 70); /* Dark Blue-Gray */
    --light-bg: #ecf0f1; /* Light Gray */
    --text-color: #345e44; /* Dark Gray */
    --light-text-color: #ecf0f1; /* Light Gray */
    --border-color: #bdc3c7; /* Silver */
    --card-bg: #ffffff; /* White */
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --border-radius: 8px;
    --transition-speed: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    color: var(--dark-bg);
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.4em; }

p {
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--dark-bg);
    position: relative;
    padding-bottom: 10px;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--light-text-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 5px 15px var(--shadow-medium);
    margin-top: 20px;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-dark);
}

/* --- Header & Navigation --- */
header {
    background-color: var(--accent-color);
    color: var(--light-text-color);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px var(--shadow-medium);
    transition: background-color var(--transition-speed), padding var(--transition-speed), box-shadow var(--transition-speed);
}

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

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--light-text-color);
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--light-text-color);
    font-weight: 500;
    font-size: 1.05em;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

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

.mobile-menu {
    display: none; /* Default: hidden */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--light-text-color);
    transition: all var(--transition-speed);
    border-radius: 2px;
}

/* Mobile menu active state */
.mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Container (for bottom fixed nav) */
.mobile-nav-container {
    display: none; /* Hidden by default, shown on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    box-shadow: 0 -4px 20px var(--shadow-medium);
    z-index: 999;
    padding: 10px 0;
}

.mobile-nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-text-color);
    font-size: 0.8em;
    padding: 5px 0;
    flex: 1;
    text-align: center;
    transition: color var(--transition-speed);
}

.mobile-nav-item i {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: var(--border-color); /* Default icon color */
    transition: color var(--transition-speed);
}

.mobile-nav-item span {
    font-weight: 500;
}

.mobile-nav-item.active {
    color: var(--accent-color);
}

.mobile-nav-item.active i {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #345e46 100%);
    color: var(--light-text-color);
    padding: 150px 0 100px; /* Adjusted padding for fixed header */
    text-align: center;
    min-height: 100vh; /* Ensure it takes full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--light-text-color);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--light-text-color);
    opacity: 0.9;
}

.price-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: inline-block;
    text-align: center;
}

.price-highlight h3 {
    font-size: 1.8em;
    color: var(--light-text-color);
    margin-bottom: 5px;
}

.price-highlight .highlight-price {
    color: var(--accent-color);
    font-size: 1.3em;
    font-weight: bold;
}

.price-highlight p {
    font-size: 0.9em;
    color: var(--light-text-color);
    margin-bottom: 0;
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    /* Pastikan ini diterapkan untuk animasi */
    opacity: 0;
    transform: translateY(50px); /* Posisi awal untuk animasi */
    animation: fadeInSlideUp 1.2s ease-out forwards; /* Terapkan animasi */
    /* Tambahan untuk memastikan elemen tidak terlihat sebelum animasi */
    visibility: hidden;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

/* --- Sections General --- */
section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

section:nth-of-type(even) {
    background-color: #f8f9fa; /* Slightly different background for contrast */
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-text-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon.whatsapp { background-color: #25D366; }
.service-icon.piggy-bank { background-color: #f1c40f; }
.service-icon.globe { background-color: #9b59b6; }

.service-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-card p {
    font-size: 0.95em;
    color: var(--text-color);
    flex-grow: 1; /* Allow paragraph to take available space */
}

.features-list {
    text-align: left;
    margin: 20px 0;
    padding-left: 0; /* Reset default padding */
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: var(--text-color);
}

.features-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1em;
}
/* Custom checkmark for features list */
.features-list li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1em;
}


.price-tag {
    margin-top: 25px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    box-shadow: 0 3px 10px var(--shadow-light);
}

.service-btn i {
    margin-right: 8px;
}

.service-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.price-tag.website .service-btn {
    background-color: var(--secondary-color); /* Different color for website service */
}

.price-tag.website .service-btn:hover {
    background-color: var(--primary-color);
}

/* --- Demo Section --- */
.demo-section {
    background: linear-gradient(to right, var(--primary-color), #6dd5ed);
    color: var(--light-text-color);
    padding: 80px 0;
}

.demo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.demo-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.demo-content h2 {
    font-size: 2.8em;
    color: var(--light-text-color);
    margin-bottom: 20px;
}

.demo-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--accent-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.demo-btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

.demo-btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.demo-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.demo-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.benefit-icon {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.benefit-item p {
    font-size: 0.95em;
    color: var(--text-color);
    margin-bottom: 0;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(45deg, var(--secondary-color), #27ae60);
    color: var(--light-text-color);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--light-text-color);
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Section --- */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.contact-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.contact-item a {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-color);
}

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

.contact-item p {
    font-size: 0.9em;
    color: var(--text-color);
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

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

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1em;
    color: var(--text-color);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

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

.contact-form .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 0;
}

/* --- Footer --- */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text-color);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-text-color);
    margin: 0 15px;
    position: relative;
    padding-bottom: 3px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.footer-links a:hover::after {
    width: 100%;
}

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

.copyright {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 90px; /* Adjusted to be above mobile nav */
    right: 20px;
    background-color: var(--accent-color);
    color: var(--light-text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 5px 15px var(--shadow-medium);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed), transform var(--transition-speed);
    z-index: 998;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-8px);
}

/* --- Keyframes for Animations --- */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
        visibility: hidden; /* Pastikan tersembunyi di awal keyframe */
    }
    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible; /* Terlihat di akhir keyframe */
    }
}

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

/* --- Responsive Design (Media Queries) --- */

/* Tablets and smaller desktops (max-width: 992px) */
@media (max-width: 992px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.6em; }
    .section-title { font-size: 2.2em; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        padding-top: 100px;
        box-shadow: -5px 0 15px var(--shadow-dark);
        transition: right var(--transition-speed);
        z-index: 990; /* Below header, above content */
    }

    .nav-links.active {
        right: 0; /* Slide in */
    }

    .nav-links li {
        margin: 20px 0;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.3em;
        padding: 10px 0;
        display: block;
    }

    .mobile-menu {
        display: none; /* <--- ICON HAMBURGER DIHILANGKAN DI MOBILE */
    }

    .hero-wrapper {
        flex-direction: column-reverse; /* Image on top for mobile */
        text-align: center;
    }

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

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .hero-image {
        margin-bottom: 30px;
        /* Sembunyikan gambar di mobile */
        display: none; /* Hide the hero image on mobile */
        animation: none; /* Hapus animasi di mobile */
        opacity: 1; /* Reset opacity */
        transform: none; /* Reset transform */
        visibility: visible; /* Reset visibility */
    }

    .demo-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

    .demo-image {
        margin-top: 30px;
    }

    .services-grid, .benefits-grid, .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .mobile-nav-container {
        display: block; /* Show mobile nav on smaller screens */
    }

    .back-to-top {
        bottom: 90px; /* Adjust position for mobile nav */
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.4em; }
    .section-title { font-size: 2em; }
    .section-subtitle { font-size: 1em; margin-bottom: 30px; }

    header {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.5em;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .price-highlight h3 {
        font-size: 1.5em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    section {
        padding: 60px 0;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        font-size: 3em;
        width: 80px;
        height: 80px;
    }

    .service-card h3 {
        font-size: 1.4em;
    }

    .service-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .demo-content h2 {
        font-size: 2.2em;
    }

    .demo-content p {
        font-size: 1em;
    }

    .demo-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .benefit-item {
        padding: 25px;
    }

    .benefit-icon {
        font-size: 2.5em;
    }

    .benefit-item h4 {
        font-size: 1.2em;
    }

    .contact-item {
        padding: 25px;
    }

    .contact-item i {
        font-size: 2.5em;
    }

    .contact-item h4 {
        font-size: 1.3em;
    }

    .contact-form {
        padding: 30px;
    }

    .form-input {
        padding: 12px;
    }

    .footer-links a {
        margin: 0 10px;
        font-size: 0.85em;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
        bottom: 80px; /* Further adjust for smaller screens */
        right: 15px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.3em; }
    .section-title { font-size: 1.8em; }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 0.95em;
    }

    .price-highlight h3 {
        font-size: 1.3em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .services-grid, .benefits-grid, .contact-info {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .service-card, .benefit-item, .contact-item {
        padding: 20px;
    }

    .service-icon {
        font-size: 2.8em;
        width: 70px;
        height: 70px;
    }

    .service-card h3 {
        font-size: 1.3em;
    }

    .demo-content h2 {
        font-size: 1.8em;
    }

    .demo-content p {
        font-size: 0.95em;
    }

    .demo-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .contact-form {
        padding: 25px;
    }

    .form-input {
        padding: 10px;
        font-size: 0.9em;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-links a {
        margin: 5px 8px;
        font-size: 0.8em;
    }

    .mobile-nav-item {
        font-size: 0.7em;
    }

    .mobile-nav-item i {
        font-size: 1.3em;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
        bottom: 70px; /* Final adjustment for smallest screens */
        right: 10px;
    }
}

/* Accessibility & User Experience Enhancements */
/* Focus states for keyboard navigation */
a:focus,
button:focus,
.cta-button:focus,
.service-btn:focus,
.demo-btn:focus,
.form-input:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: var(--border-radius);
}

/* Hover effects for touch devices (handled by JS, but good to have fallback) */
.hover-effect {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

/* Ensure images are not distorted */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

/* Smooth transitions for all elements */
body, h1, h2, h3, h4, p, a, button, .service-card, .benefit-item, .contact-item, .cta-button, .demo-btn, .form-input, header, .mobile-menu span, .back-to-top {
    transition: all var(--transition-speed);
}

/* Custom scrollbar (optional, for modern browsers) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}