/*
Theme Color Palette (based on a hypothetical logo)
:root {
    --primary-color: #FCA311; // Vibrant Orange/Gold
    --secondary-color: #778DA9; // Light Slate Blue
    --dark-blue: #0D1B2A;       // Almost Black
    --mid-blue: #1B263B;        // Dark Blue
    --light-blue: #415A77;      // Slate Blue
    --text-light: #E0E1DD;      // Off-white
    --text-dark: #0D1B2A;
    --background-color: #f8f9fa;
    --white-color: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
    --transition-speed: 0.3s ease;
}
*/

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ECDC4;
    --dark-blue: #0D1B2A;
    --mid-blue: #1B263B;
    --light-blue: #415A77;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --background-color: #ffffff;
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
    --transition-speed: 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* --- Global Styles & Resets --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-blue);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-speed);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-blue);
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    color: var(--white-color);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: var(--border-color);
}

.btn-secondary:hover {
    color: var(--white-color);
    border-color: var(--secondary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}


/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    text-align: center;
}

.loader-logo img {
    max-width: 150px;
    animation: pulse 1.5s infinite ease-in-out;
    
}

.loader-bar {
    width: 150px;
    height: 4px;
    background-color: var(--light-blue);
    margin-top: 20px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    animation: loading 2s linear forwards;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}


/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-speed);
}

.header.scrolled {
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    transition: var(--transition-speed);
    filter: brightness(1)invert(1);
}

.header.scrolled .logo img {
    height: 70px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 22px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background-color: var(--white-color);
    height: 3px;
    width: 100%;
    border-radius: 5px;
    position: absolute;
    transition: all var(--transition-speed);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}


/* --- Mobile Menu --- */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background-color: var(--dark-blue);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right var(--transition-speed);
        padding-top: 80px;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 30px;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active,
    .nav-link:hover {
        background-color: var(--mid-blue);
        color: var(--primary-color);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        display: none;
    }

    .dropdown.open>.dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding-left: 50px;
        color: var(--text-light);
    }

    .dropdown .fa-chevron-down {
        transition: var(--transition-speed);
        display: inline-block;
    }

    .dropdown.open .fa-chevron-down {
        transform: rotate(180deg);
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav.active~.header-actions .hamburger {
        background-color: transparent;
    }

    .nav.active~.header-actions .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav.active~.header-actions .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}


/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--dark-blue);
    color: var(--white-color);
    overflow: hidden;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent 70%);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    left: 30%;
    animation-delay: 3s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    top: 20%;
    right: 5%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1), transparent 70%);
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 5%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* --- Services Section --- */
.services-section {
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-speed);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--light-blue);
    margin-bottom: 25px;
}

.service-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-dark);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition-speed);
}

.service-link:hover i {
    transform: translateX(5px);
}


/* --- Industries Section --- */
.industries-section {
    background-color: var(--white-color);
}

.industries-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: var(--background-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
    cursor: default;
}

.industry-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
}

.industry-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: var(--transition-speed);
}

.industry-item span {
    font-weight: 600;
    font-family: var(--font-secondary);
}

.industry-item:hover i,
.industry-item:hover span {
    color: var(--white-color);
}


/* --- ROI Calculator Section --- */
.calculator-section {
    background-color: var(--mid-blue);
    color: var(--white-color);
}

.calculator-section .section-title,
.calculator-section .section-subtitle {
    color: var(--white-color);
}

.calculator-section .section-title .highlight {
    color: var(--primary-color);
}

.calculator-section p {
    color: var(--text-light);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calculator-form-container {
    background-color: var(--dark-blue);
    padding: 40px;
    border-radius: 10px;
}

.calculator-form .form-group {
    margin-bottom: 20px;
}

.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.calculator-form input {
    width: 100%;
    padding: 12px;
    background-color: var(--mid-blue);
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    color: var(--white-color);
    font-size: 1rem;
}

.roi-result {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-blue);
}

.roi-result h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.roi-result p {
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
}

.roi-result span {
    font-weight: 700;
    color: var(--primary-color);
}


/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--background-color);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 300px;
    /* Adjust as needed */
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.exit {
    transform: translateX(-100%);
}

.testimonial-quote {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    position: relative;
    text-align: center;
}

.testimonial-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.2;
}

.testimonial-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--light-blue);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.author-info h4 {
    margin-bottom: 0;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.slider-controls button {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition-speed);
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}


/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: 15px;
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--dark-blue);
    color: var(--white-color);
    border-color: var(--dark-blue);
}

.cta-section .btn-primary::before {
    background-color: var(--dark-blue);
}


/* --- Footer --- */
.footer {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(1)invert(1);
}

.footer-about p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--mid-blue);
    color: var(--text-light);
    border-radius: 50%;
    margin-right: 10px;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: var(--secondary-color);
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--mid-blue);
    text-align: center;
    color: var(--secondary-color);
}


/* --- Page Specific Styles --- */

/* Page Header */
.page-header {
    background-color: var(--dark-blue);
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 10px;
}

.breadcrumbs a {
    color: var(--secondary-color);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--white-color);
}

/* Legal Pages Content */
.main-content {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
    color: var(--light-blue);
}

.legal-content strong {
    color: var(--text-dark);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-title {
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--light-blue);
    margin: 0;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    z-index: 1001;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-speed);
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}


/* --- Utility & Helper Classes --- */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-speed);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all var(--transition-speed);
    z-index: 999;
}

.chat-widget:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}


/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.fade-up {
    transform: translateY(50px);
}

.animate-on-scroll.fade-right {
    transform: translateX(-50px);
}

.animate-on-scroll.fade-left {
    transform: translateX(50px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* --- Responsive Styles --- */
@media (max-width: 1024px) {

    .section-title,
    .hero-title,
    .cta-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .testimonial-slider-wrapper {
        padding: 0;
    }

    .slider-controls {
        display: none;
        /* Can be enhanced later with dots */
    }
}