/* ========================================
   CSS Variables & Reset
   ======================================== */

:root {
    /* Colors - Refined palette */
    --primary: #1a1a2e;
    --primary-light: #2d2d44;
    --accent: #c7a06f;
    --accent-light: #d4b487;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #e8e5e2;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --input-color: #f6f6f9;

    /* Typography */
    --font-display: 'Calibri', sans-serif;
    --font-body: 'Calibri', sans-serif;
    --nav-display: 'Crimson Pro', serif;
    --nav-body: 'Work Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    --small: 0.775rem;
    --medium: 0.900rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.landscape-logo-image img {
    width: 200px;   /* adjust size */
}

.footer-logo-image img {
    width: 200px;   /* adjust size */
}
/* ========================================
   Navigation
   ======================================== */

/* .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    backdrop-filter: blur(10px);
    z-index: 1000;
    color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
} */

/* .navbar.scrolled {
    box-shadow: var(--shadow-sm);
} */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent; /* 👈 start transparent */
    border-bottom: none;
    transition: all 0.3s ease;
    z-index: 1000;
    color: var(--primary);
}

/* When scrolled */
.navbar.scrolled {
    background-color: var(--primary); /* 👈 your current color */
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    color: var(--bg-white);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem var(--spacing-md);
    font-family: var(--nav-body);
}

.logo {
    display: flex;
    align-items: center;
    
    font-family: var(--font-display);
    
    
    color: var(--bg-white);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link,
.logo {
    color: var(--primary);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .logo {
    color: var(--bg-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f5f3f0 100%);
    z-index: -1;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(108,99,255,0.15) 0%, transparent 70%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(199, 160, 111, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
}

.team-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.visual-element {
    position: absolute;
    border-radius: var(--radius-lg);
    opacity: 0;
    animation: floatIn 1s ease forwards;
}

.element-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.3s;
    box-shadow: var(--shadow-lg);
}

.element-2 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
    box-shadow: var(--shadow-md);
}

.element-3 {
    width: 150px;
    height: 150px;
    background: var(--bg-white);
    bottom: 15%;
    left: 5%;
    animation-delay: 0.7s;
    box-shadow: var(--shadow-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--text-muted);
    animation: scrollAnimation 2s ease-in-out infinite;
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.about-content {
    margin: 0 auto;
}

.about-intro {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========================================
   Services Section
   ======================================== */

.services {
    background: var(--bg-light);
}

.services-slider {
    position: relative;
    overflow: hidden;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease;
     gap: 2%;
}

.service-card {
    min-width: 23%;
    margin: 0; /* remove margins */
    /* 👈 4 cards per screen */
    box-sizing: border-box;
    padding: 15px;
}

.service-card img {
    max-width: 64px;
    max-height: 64px;
}

/* Arrows */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card>p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-para{
    font-size: var(--small);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--medium);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* ========================================
   Projects Section
   ======================================== */

.projects {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.projects-grid {
    display: grid;
    gap: 3rem;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-card:nth-child(even) {
    direction: rtl;
}

.project-card:nth-child(even) .project-info {
    direction: ltr;
}

.project-image {
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accounting-img {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-tag {
    background: white;
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
}

.project-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}


/* ========================================
   Success Stories Section
   ======================================== */

.success-stories {
    padding: var(--spacing-md) 0;
    background: var(--bg-white);
}

.success-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.success-card img {
    max-height: 64px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.success-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.success-card>p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.success-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    width: 23%;
    /* 👈 4 cards per screen */
    box-sizing: border-box;
    padding: 15px;
    margin-left: 1%;
    margin-right: 1%;
}

.success-card {
    min-width: calc(25% - 15px);
    /* 👈 4 cards per screen */
    box-sizing: border-box;
    padding: 15px;
    margin-left: 1%;
    margin-right: 1%;
}

.success-para{
    font-size: var(--small);
}


.success-features {
    list-style: none;
    padding: 0;
}

.success-features li {
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--medium);
}

.success-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.success-features.collapsed li:nth-child(n+5) {
    display: none;
}

.see-more-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.watch-video-btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* SLIDER */
.success-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2em 0;
}

.success-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.success-card {
    min-width: calc(25% - 15px);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.success-card img {
    margin-bottom: 10px;
}

.success-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.success-card p {
    font-size: 14px;
    color: #555;
}

.success-features {
    padding-left: 18px;
    font-size: 13px;
}

.watch-video-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
}

/* ARROWS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 10;
}

.slider-btn:hover {
    opacity: 1;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .success-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .success-card {
        min-width: 100%;
    }
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--input-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot field - hidden from real users */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.math-challenge {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.math-challenge label {
    color: var(--primary);
    font-size: 0.95rem;
}

#mathQuestion {
    color: var(--accent);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-loader {
    display: block;
}

.form-status {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: none;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer h4 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a,
.footer ul li {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollAnimation {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(20px);
        opacity: 0.3;
    }
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-card:nth-child(even) {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}


.tech-section
{
    background: var(--bg-light);
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.tech-slider {
    overflow: hidden;
    width: 100%;  
}

.slide-track {
    display: flex;
    width: calc(150px * 10);
    animation: scroll 20s linear infinite;
}


.slide-track img {
    height: 140px;
    /* 👈 set your desired height */
    width: auto;
    /* keeps aspect ratio */
    margin: 0 20px;
    object-fit: contain;
    /* ensures no stretching */
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Laptop Screens */
@media (max-width: 1536px) {
  /* styles here */

  .slide-track img {
        height: 90px;
    }

    .slide-track {
        gap: 20px;
    }

    .landscape-logo-image img {
        width: 160px;   /* adjust size */
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
  /* mobile styles */
  .service-card
    {
        min-width: 100%;
    }
    .service-card img {
        max-width: 48px;
        max-height: 48px;
    }
    .service-card ul{
        padding-left: 18px;
        font-size: 12px;
    }
    .service-features{
        padding-left: 18px;
        font-size: 12px;
    }
    .service-features li{
            font-size: var(--small);
    }

     .success-card
    {
        min-width: 100%;
    }
    .success-card ul{
        padding-left: 18px;
        font-size: 12px;
    }
    .success-features{
        padding-left: 18px;
        font-size: 12px;
    }
    .success-features li{
            font-size: var(--small);
    }


    .stat-item
    {
        min-width: 100%;
    }
}

/* Styles related to phone input */
.iti {
    width: 100% !important;
}