:root {
    /* Dark Mode (Default) - Updated with Logo Colors */
    --bg-color: #020914;
    --surface-color: #0a1128;
    --surface-light: #121e3d;
    --primary: #2a70bc;
    --primary-light: #4da2d6;
    --secondary: #1e4d8c;
    --text-main: #f8fafc;
    --text-muted: #a3b8cc;
    --accent: #89c4f4;
    --border-color: rgba(255, 255, 255, 0.08);
}

body.light-mode {
    --bg-color: #f4f7fb;
    --surface-color: #ffffff;
    --surface-light: #e5edf5;
    --primary: #2a70bc;
    --primary-light: #4da2d6;
    --secondary: #0a1128;
    --text-main: #0a1128;
    --text-muted: #4a5d7c;
    --accent: #1e4d8c;
    --border-color: rgba(42, 112, 188, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Reusable Components */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.secondary-tag {
    background: rgba(124, 58, 237, 0.1);
    color: var(--secondary);
    border-color: rgba(124, 58, 237, 0.2);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.secondary-btn {
    background: linear-gradient(135deg, var(--secondary), #ec4899);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 16px 5%;
    background: rgba(3, 3, 3, 0.95);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* For dark mode visibility if the logo has dark text on transparent bg */
body:not(.light-mode) .brand-logo {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 999;
    padding-top: 100px;
    text-align: center;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 1.2rem;
}

.mob-action {
    padding: 0 5%;
}

.mob-action button {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Hero Background Effects */
.hero-glow-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float 10s ease-in-out infinite alternate;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-50px) scale(1.1);
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: -2;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.h-stat h4 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.h-stat p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Graphic/Image side of Hero */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #eab308;
}

.dot-green {
    background: #22c55e;
}

.code-snippet {
    font-family: 'Courier New', Courier, monospace;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.code-keyword {
    color: var(--secondary);
}

.code-function {
    color: var(--primary-light);
}

.code-string {
    color: var(--accent);
}

/* Trust/Partners Section */
.partners {
    padding: 50px 0;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners p {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
}

.partner-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.5rem;
    font-family: 'Outfit';
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--text-main);
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-abstract {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, #1e3a8a, #4c1d95);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSsyNTUsMjU1LDI1NSwwLjE1KSIvPjwvc3ZnPg==');
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 20px;
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-list i {
    color: #10b981;
    /* Green */
    background: rgba(16, 185, 129, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
}

/* Services Deep Dive */
.services {
    padding: 120px 0;
    background: var(--surface-color);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover::after {
    opacity: 1;
}

.s-icon {
    width: 70px;
    height: 70px;
    background: var(--surface-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-light);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.service-card:hover .s-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-card:hover .service-link {
    color: var(--accent);
}

/* Work Process */
.process {
    padding: 120px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--border-color);
    z-index: -1;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 auto 24px;
    transition: all 0.3s;
    position: relative;
}

.step:hover .step-number {
    border-color: var(--primary-light);
    color: var(--primary-light);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution specific section */
.academic-solutions {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--surface-color) 0%, var(--bg-color) 100%);
}

.academic-box {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.acc-content {
    flex: 1;
}

.acc-desc {
    color: var(--text-muted);
    margin: 20px 0 30px;
    font-size: 1.1rem;
}

.acc-visual {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.acc-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.acc-stat h3 {
    font-size: 2.5rem;
    color: #fff;
}

.acc-stat p {
    color: var(--text-muted);
    font-size: 14px;
}

.translate-y {
    transform: translateY(20px);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testi-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
}

.stars {
    color: #fbbf24;
    /* Yellow */
    margin-bottom: 20px;
    font-size: 14px;
}

.testi-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-main);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-light);
}

.client-details h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--surface-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-light);
}

/* CTA Deep Dive */
.cta-section {
    padding: 120px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(124, 58, 237, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.cta-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 40px auto 0;
}

.input-group input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    color: #fff;
    outline: none;
    font-family: inherit;
}

.input-group input:focus {
    border-color: var(--primary-light);
}

#request-audit-btn {
    padding: 16px 32px;
    border-radius: 30px;
}

.cta-note {
    font-size: 12px;
    color: #64748b;
    margin-top: 15px;
}

/* Sticky Enquire Button */
.sticky-enquire {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    padding: 15px 20px 15px 25px;
    border-radius: 30px 0 0 30px;
    font-weight: 600;
    font-size: 16px;
    z-index: 9999;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-enquire:hover {
    transform: translateY(-50%) translateX(-10px);
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.4);
}

.sticky-enquire i {
    font-size: 18px;
}

/* Footer */
footer {
    background: var(--surface-color);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.logo-light {
    color: var(--primary-light);
}

.text-white {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--primary-light);
}

.offices-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero .container,
    .about .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-line {
        display: none;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .academic-box {
        flex-direction: column;
        padding: 40px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: 15px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .h-stat h4 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-wrapper h2 {
        font-size: 2.5rem;
    }

    .input-group {
        flex-direction: column;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .img-grid {
        grid-template-columns: 1fr;
    }

    .sticky-enquire span {
        display: none;
    }

    .sticky-enquire {
        padding: 15px;
        border-radius: 50px 0 0 50px;
    }
}