/*
* Digital Marketing Agency Website Stylesheet
*
* Table of Contents:
* 1.  Global Styles & Variables
* 2.  Keyframe Animations
* 3.  Layout & Container
* 4.  Header & Navigation
* 5.  Mobile Navigation
* 6.  Footer
* 7.  Buttons & Forms
* 8.  Hero Section
* 9.  Services Section
* 10. About Section
* 11. Industries Section
* 12. Testimonials Section
* 13. CTA Section
* 14. Subpage & Legal Page Styles
* 15. Contact Page Styles
* 16. Helper & Utility Classes
* 17. Live Chat Widget
* 18. Responsive Design (Media Queries)
*/

/* 1. Global Styles & Variables
--------------------------------------------- */
:root {
    --primary-bg: #0F0F1A;
    --secondary-bg: #1A1A2E;
    --card-bg: rgba(26, 26, 46, 0.6);
    --primary-accent: #00A9FF;
    --secondary-accent: #9F70F1;
    --text-color: #E0E0E0;
    --heading-color: #FFFFFF;
    --border-color: rgba(0, 169, 255, 0.2);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

#blob {
    background-color: white;
    height: 34vmax;
    aspect-ratio: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    background: linear-gradient(to right, var(--secondary-accent), var(--primary-accent));
    animation: rotate 20s infinite;
    opacity: 0.5;
    z-index: -2;
}

#blur {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -1;
    backdrop-filter: blur(10vmax);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--heading-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}


/* 2. Keyframe Animations
--------------------------------------------- */
@keyframes rotate {
    from {
        rotate: 0deg;
    }

    50% {
        scale: 1 1.5;
    }

    to {
        rotate: 360deg;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 169, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 169, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 169, 255, 0);
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary-accent);
    }
}

@keyframes globe-spin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes data-point-orbit {
    from {
        transform: rotateZ(var(--rz)) rotateY(0deg) translateX(120px) rotateY(0deg);
    }

    to {
        transform: rotateZ(var(--rz)) rotateY(360deg) translateX(120px) rotateY(-360deg);
    }
}


/* 3. Layout & Container
--------------------------------------------- */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}

/* 4. Header & Navigation
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    background-color: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(15, 15, 26, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
    margin-right: 12px;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-color);
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--heading-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* 5. Mobile Navigation
--------------------------------------------- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--secondary-bg);
    z-index: 999;
    padding-top: 100px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav nav ul a {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--heading-color);
}

body.nav-open .mobile-toggle .bar-top {
    transform: rotate(45deg) translate(5px, 6px);
}

body.nav-open .mobile-toggle .bar-middle {
    opacity: 0;
}

body.nav-open .mobile-toggle .bar-bottom {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* 6. Footer
--------------------------------------------- */
.footer {
    background-color: var(--secondary-bg);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    height: 80px;
}

.footer-col .logo-text {
    font-size: 2rem;
}

.footer-about-text {
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--heading-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-accent);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul a {
    color: var(--text-color);
}

.footer-links ul a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .contact-info i {
    color: var(--primary-accent);
    width: 20px;
    text-align: center;
}

.footer-contact .contact-info a {
    color: var(--text-color);
}

.footer-contact .contact-info a:hover {
    color: var(--primary-accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* 7. Buttons & Forms
--------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: var(--heading-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 169, 255, 0.2);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading-color);
    border-color: var(--primary-accent);
}

.btn-secondary:hover {
    background-color: var(--primary-accent);
    color: var(--heading-color);
}

/* 8. Hero Section
--------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: radial-gradient(circle at 10% 20%, rgba(159, 112, 241, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 169, 255, 0.1), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-container {
    display: inline-block;
    position: relative;
}

.highlight {
    color: var(--primary-accent);
    position: relative;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: .15em solid var(--primary-accent);
    animation:
        typing 2s steps(30, end) forwards,
        blink-caret .75s step-end infinite;
    animation-delay: 1s;
    width: 0;
}


.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-visual {
    perspective: 1000px;
}

.globe-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    animation: globe-spin 30s linear infinite;
}

.globe,
.globe-sphere,
.globe-outer-ring,
.globe-inner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
}

.globe {
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.globe-sphere {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 30%, var(--primary-bg), var(--secondary-bg));
    border: 1px solid var(--border-color);
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 50px rgba(0, 169, 255, 0.2);
}

.globe-outer-ring {
    width: 400px;
    height: 400px;
    border: 1px dashed var(--border-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
}

.globe-inner-ring {
    width: 320px;
    height: 320px;
    border: 1px dashed var(--border-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(45deg);
}

.data-point {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-accent);
    --rz: calc(var(--i) * 30deg);
    animation: data-point-orbit var(--d) linear infinite;
}

/* 9. Services Section
--------------------------------------------- */
.services-section {
    background-color: var(--secondary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-inner {
    transform: translateZ(20px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-description {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 10. About Section
--------------------------------------------- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
}

.about-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-radius: var(--border-radius);
    z-index: 1;
}

.about-content .section-title {
    font-size: 2.5rem;
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-description {
    margin: 20px 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: var(--primary-accent);
}

/* 11. Industries Section
--------------------------------------------- */
.industries-section {
    background-color: var(--secondary-bg);
}

.industries-wrapper {
    display: flex;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 350px;
}

.industry-tabs {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
}

.industry-tab {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    text-align: left;
}

.industry-tab i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.industry-tab:hover,
.industry-tab.active {
    background-color: rgba(0, 169, 255, 0.1);
    color: var(--heading-color);
}

.industry-content-wrapper {
    padding: 40px;
    width: 100%;
}

.industry-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.industry-content.active {
    display: block;
}

.industry-content-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.industry-services-list {
    margin-top: 20px;
    list-style-type: none;
    padding-left: 20px;
}

.industry-services-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.industry-services-list li::before {
    content: '\f105';
    /* Font Awesome chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-accent);
    position: absolute;
    left: 0;
    top: 0;
}


/* 12. Testimonials Section
--------------------------------------------- */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 300px;
    /* Adjust height as needed */
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    position: absolute;
    width: calc(100% - 150px);
    /* Account for padding */
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-accent);
    margin: 0 auto 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 1.3rem;
    color: var(--heading-color);
}

.testimonial-company {
    color: var(--primary-accent);
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--primary-accent);
}

/* 13. CTA Section
--------------------------------------------- */
.cta-section {
    padding: 0;
}

.cta-container {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-radius: var(--border-radius);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.cta-text {
    color: var(--heading-color);
    max-width: 600px;
}

.cta-action .btn-primary {
    background: var(--heading-color);
    color: var(--secondary-bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-action .btn-primary:hover {
    background: var(--primary-bg);
    color: var(--heading-color);
}

/* 14. Subpage & Legal Page Styles
--------------------------------------------- */
body.subpage {
    padding-top: var(--header-height);
}

.page-header {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-bg);
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper p,
.content-wrapper li {
    margin-bottom: 15px;
}

.content-wrapper ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* 15. Contact Page Styles
--------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
}

.contact-panel-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info-panel p {
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-method i {
    font-size: 1.8rem;
    color: var(--primary-accent);
    width: 30px;
    text-align: center;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--heading-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 15px rgba(0, 169, 255, 0.3);
}

.contact-form .btn {
    width: 100%;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 400px;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.popup-content i {
    font-size: 4rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

/* 16. Helper & Utility Classes
--------------------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 17. Live Chat Widget
--------------------------------------------- */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 169, 255, 0.3);
    animation: pulse 2s infinite;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: var(--secondary-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.live-chat-widget.open .chat-window {
    transform: scale(1);
}

.chat-header {
    background: var(--card-bg);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1.2rem;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
    height: 200px;
    overflow-y: auto;
}

.chat-footer {
    padding: 10px;
    display: flex;
    border-top: 1px solid var(--border-color);
}

.chat-footer input {
    flex-grow: 1;
    border: none;
    background: none;
    color: white;
    padding: 5px;
}

.chat-footer input:focus {
    outline: none;
}

.chat-footer button {
    background: none;
    border: none;
    color: var(--primary-accent);
    font-size: 1.2rem;
    cursor: pointer;
}


/* 18. Responsive Design (Media Queries)
--------------------------------------------- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .globe-container {
        width: 300px;
        height: 300px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .industries-wrapper {
        flex-direction: column;
    }

    .industry-tabs {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .industry-tab {
        flex-direction: column;
        font-size: 1rem;
        padding: 15px;
        gap: 8px;
    }

    .industry-tab span {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .slider-controls {
        padding: 0;
    }

    .testimonial-slider {
        height: auto;
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .content-wrapper,
    .contact-wrapper {
        padding: 25px;
    }
}