/*
================================================
TABLE OF CONTENTS
================================================
1.  ROOT VARIABLES & RESET
2.  GLOBAL STYLES & UTILITIES
3.  PRELOADER & CUSTOM CURSOR
4.  HEADER & NAVIGATION
5.  FOOTER
6.  HERO SECTION
7.  PAGE HEADER (FOR SUB-PAGES)
8.  SERVICES SECTION
9.  PROCESS SECTION (TIMELINE)
10. INDUSTRIES SECTION (TABS)
11. TESTIMONIALS SECTION (SLIDER)
12. CTA (CALL TO ACTION) SECTION
13. CONTACT PAGE STYLES
14. LEGAL PAGES STYLES
15. POPUP / MODAL STYLES
16. ANIMATIONS & KEYFRAMES
17. RESPONSIVE MEDIA QUERIES
================================================
*/

/* 1. ROOT VARIABLES & RESET */
:root {
    --primary-color: #00f0ff;
    /* Vibrant Cyan */
    --primary-color-dark: #00c4cc;
    --secondary-color: #1a2c48;
    /* Dark Navy */
    --background-color: #0d1a2d;
    /* Very Dark Blue */
    --surface-color: #12213a;
    --text-color: #cdd6f4;
    --heading-color: #ffffff;
    --border-color: rgba(0, 240, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.5);

    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;

    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.4s ease-in-out;
    --transition-slow: 0.6s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* 2. GLOBAL STYLES & UTILITIES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-color-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: var(--background-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading-color);
    border-color: var(--heading-color);
}

.btn-secondary:hover {
    background-color: var(--heading-color);
    color: var(--background-color);
    transform: translateY(-3px);
}

/* 3. PRELOADER & CUSTOM CURSOR */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    margin-bottom: 20px;
}

.preloader-logo img {
    max-width: 100px;
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-bar {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    animation: loading 2s linear infinite;
}

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 10000;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 240, 255, 0.2);
    transition: all 0.08s linear;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

/* 4. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color var(--transition-medium), box-shadow var(--transition-medium);
}

.header.scrolled {
    backdrop-filter: blur(10px);
    background-color: rgba(13, 26, 45, 0.8);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--heading-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    margin: 5px 0;
    transition: all var(--transition-medium);
}

/* 5. FOOTER */
.footer {
    background-color: var(--surface-color);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column .logo img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-about-text {
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    transition: var(--transition-medium);
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-title {
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a:hover {
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-bottom ul {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom a {
    font-size: 0.9rem;
}

/* 6. HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, rgba(0, 240, 255, 0) 60%);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-duration: 20s;
}

.shape-2 {
    width: 600px;
    height: 600px;
    bottom: -20%;
    right: -10%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* 7. PAGE HEADER (FOR SUB-PAGES) */
.page-header-section {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--surface-color) 100%);
    position: relative;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.page-header-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 8. SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--primary-color), transparent 30%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-title {
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 500;
}

.service-link i {
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 9. PROCESS SECTION (TIMELINE) */
.process-section {
    background-color: var(--surface-color);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 70px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 70px;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--background-color);
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--background-color);
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.timeline-step {
    position: absolute;
    top: -20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-step {
    right: 20px;
}

.timeline-item:nth-child(even) .timeline-step {
    left: 20px;
}

.timeline-title {
    margin-bottom: 0.5rem;
}

/* 10. INDUSTRIES SECTION (TABS) */
.industries-wrapper {
    display: flex;
    gap: 40px;
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.industry-list {
    flex: 1;
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-medium);
    border-left: 3px solid transparent;
}

.industry-tab i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.industry-tab.active,
.industry-tab:hover {
    background-color: rgba(0, 240, 255, 0.05);
    border-left-color: var(--primary-color);
}

.industry-content-wrapper {
    flex: 2;
}

.industry-content {
    display: none;
}

.industry-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.industry-content h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.industry-content ul {
    margin-top: 1.5rem;
}

.industry-content ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-content ul li i {
    color: var(--primary-color);
}

/* 11. TESTIMONIALS SECTION (SLIDER) */
.testimonials-section {
    background-color: var(--surface-color);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 50px;
    text-align: center;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin: 0 10px;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.author-name {
    margin-bottom: 0;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: calc(100% + 80px);
    left: -40px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.slider-controls button {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

/* 12. CTA (CALL TO ACTION) SECTION */
.cta-section {
    padding: 80px 0;
}

.cta-wrapper {
    background-image: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 200%);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-color);
}

.cta-wrapper h2 {
    margin-bottom: 1rem;
}

.cta-wrapper p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* 13. CONTACT PAGE STYLES */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--surface-color);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-info-block h2,
.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-detail-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    transition: border-color var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2);
}

/* 14. LEGAL PAGES STYLES */
.legal-page .page-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 1.5rem;
}

.legal-page a {
    font-weight: 500;
}

/* 15. POPUP / MODAL STYLES */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-medium);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.popup-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.popup-content h3 {
    margin-bottom: 0.5rem;
}

.popup-content p {
    margin-bottom: 2rem;
}

/* 16. ANIMATIONS & KEYFRAMES */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes loading {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Scroll Animations */
[data-animation] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animation="fade-in-up"] {
    transform: translateY(50px);
}

[data-animation="slide-in-left"] {
    transform: translateX(-50px);
}

[data-animation="slide-in-right"] {
    transform: translateX(50px);
}

.in-view {
    opacity: 1;
    transform: translate(0, 0);
}


/* 17. RESPONSIVE MEDIA QUERIES */

/* Tablets and larger phones */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: var(--surface-color);
        padding-top: 100px;
        transition: right var(--transition-medium);
        z-index: 1000;
        box-shadow: -10px 0 30px var(--shadow-color);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .process-timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
        padding-left: 70px;
    }

    .timeline-item::after {
        left: 20px;
    }

    .industries-wrapper {
        flex-direction: column;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile devices */
@media (max-width: 768px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }

    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: 600px;
        height: auto;
        padding: 150px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .slider-controls {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 2rem;
        justify-content: center;
        gap: 1rem;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .page-header-section {
        padding: 150px 0 80px;
    }

    .page-header-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        width: 80%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-wrapper,
    .legal-page .page-content {
        padding: 30px;
    }
}