/*
================================================
TABLE OF CONTENTS
================================================
1.  Root Variables & Global Styles
2.  Typography
3.  Layout & Container
4.  Buttons & Common Elements
5.  Header & Navigation
6.  Mobile Navigation
7.  Footer
8.  Hero Section
9.  Services Section
10. About Section
11. Stats (Counter) Section
12. Industries Section
13. Testimonials Section
14. CTA Section
15. Contact Page Specifics
16. Legal Pages (Subpage) Specifics
17. Interactive Elements (Popup, Chat)
18. Animation & Keyframes
19. Responsive Design (Media Queries)
    - 992px (Tablets)
    - 768px (Small Tablets / Large Mobiles)
    - 576px (Mobiles)
================================================
*/

/* 1. Root Variables & Global Styles */
:root {
    --primary-color: #0A2540;
    /* Deep Navy */
    --secondary-color: #00D4FF;
    /* Vibrant Cyan */
    --accent-color: #FFC107;
    /* Warm Amber */
    --text-color: #333;
    --light-text-color: #6c757d;
    --bg-color: #FFFFFF;
    --light-bg-color: #f8f9fa;
    --border-color: #dee2e6;
    --white-color: #FFFFFF;
    --header-height: 80px;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    --transition-speed: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* 2. Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-speed);
}


ul {
    list-style: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* 3. Layout & Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* 4. Buttons & Common Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* 5. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    z-index: 1000;
    transition: all var(--transition-speed);
}

.header.scrolled {
    background-color: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 65px;
    filter: brightness(0) invert(1);
    transition: var(--transition-speed);
}


.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--white-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(--secondary-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-cta {
    padding: 10px 25px;
}

/* 6. Mobile Navigation */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 22px;
    position: relative;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white-color);
    border-radius: 3px;
    position: absolute;
    transition: all 0.35s ease-in-out;
}

.bar-top {
    top: 0;
}

.bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

.bar-bottom {
    bottom: 0;
}

body.mobile-nav-active .bar-top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

body.mobile-nav-active .bar-middle {
    opacity: 0;
}

body.mobile-nav-active .bar-bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.mobile-nav-active .mobile-nav {
    right: 0;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav li {
    margin: 25px 0;
}

.mobile-nav a {
    color: var(--white-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* 7. Footer */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -100px;
}

.footer-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: -100px;
    right: -80px;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 65px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white-color);
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.footer-col-title {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}


.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

/* 8. Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1c3d5e 100%);
    color: var(--white-color);
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    animation: float 10s ease-in-out infinite alternate;
}

.hero-shape.shape-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
    animation-duration: 12s;
}

.hero-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation-duration: 8s;
}

.hero-shape.shape-3 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 25%;
    animation-duration: 15s;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    opacity: 1 !important;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    opacity: 1 !important;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 1 !important;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInTitle 0.6s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-title span:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title span:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-title span:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-title span:nth-child(5) {
    animation-delay: 0.5s;
}

.hero-title span:nth-child(6) {
    animation-delay: 0.6s;
}

.hero-title span:nth-child(7) {
    animation-delay: 0.7s;
}

/* 9. Services Section */
.services-section {
    background-color: var(--light-bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    border: 1px solid var(--border-color);
}

.service-card-inner {
    transform: translateZ(20px);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-speed);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-title {
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
    display: inline-block;
}

.service-link i {
    transition: transform var(--transition-speed);
    display: inline-block;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 10. About Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--secondary-color);
    border-radius: var(--border-radius);
    top: 20px;
    left: 20px;
    z-index: -1;
    transition: var(--transition-speed);
}

.about-image-wrapper:hover .about-image-decoration {
    top: 10px;
    left: 10px;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 11. Stats (Counter) Section */
.stats-section {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1200') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 80px 0;
    color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* 12. Industries Section */
.industries-section {
    background-color: var(--light-bg-color);
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-item {
    background: var(--white-color);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 180px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-speed);
}

.industry-item:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white-color);
}

.industry-item:hover i,
.industry-item:hover h4 {
    color: var(--white-color);
}

.industry-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition-speed);
}

.industry-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-speed);
}

/* 13. Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px;
    background: var(--light-bg-color);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--light-text-color);
}

.slider-controls {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.slider-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-speed);
}

.slider-controls button:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* 14. CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* 15. Contact Page Specifics */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white-color);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-right: 20px;
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.method-details p {
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    transition: var(--transition-speed);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.contact-form button[type="submit"] {
    grid-column: 1 / -1;
    justify-self: start;
}

/* 16. Legal Pages (Subpage) Specifics */
body.subpage .header {
    background-color: var(--primary-color);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1c3d5e 100%);
    color: var(--white-color);
    padding: 160px 0 80px 0;
    text-align: center;
}

.page-header h1 {
    opacity: 1 !important;
    color: var(--white-color);
}

.page-header p {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 1rem auto 0;
}

.breadcrumbs {
    margin-top: 1rem;
}

.breadcrumbs a,
.breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--white-color);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 10px;
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* 17. Interactive Elements (Popup, Chat) */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    position: relative;
    transform: scale(0.8);
    transition: transform var(--transition-speed);
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.popup-content h3 {
    margin-bottom: 0.5rem;
}

.popup-content .btn {
    margin-top: 1.5rem;
}

.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
    cursor: pointer;
    animation: pulse 2s infinite;
}

/* 18. Animation & Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-30px) rotate(20deg);
    }
}

@keyframes fadeInTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.5s ease-out forwards;
}

.animate-on-load.hero-subtitle {
    animation-delay: 0.7s;
}

.animate-on-load.hero-cta-group {
    animation-delay: 0.9s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* 19. Responsive Design */
/* 992px (Tablets) */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* 768px (Small Tablets / Large Mobiles) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 600px;
        height: auto;
        padding: 150px 0 80px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        padding: 12px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .form-group {
        grid-column: 1 / -1;
    }

    .contact-wrapper {
        padding: 30px;
    }
}

/* 576px (Mobiles) */
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .industry-item {
        min-width: 0;
    }

    .slider-controls {
        position: static;
        margin-top: 1.5rem;
        justify-content: center;
    }
}