/* ==========================================================================
   DIGITAL STUDIO2 - Main Styles
   ========================================================================== */

:root {
    /* Primary Brand Colors */
    --primary: #3674B5;
    --primary-rgb: 54, 116, 181;
    /* Strong, trustworthy blue */
    --primary-dark: #163B66;
    /* Deeper tone for contrast */
    --primary-light: #DCEAF7;
    /* Soft tint for backgrounds */

    /* Secondary Accent Colors */
    --secondary: #2AA6DF;
    --secondary-rgb: 42, 166, 223;
    /* Vibrant, energetic accent */
    --secondary-light: #5FB8E8;
    /* Softer complementary tone */
    --secondary-lighter: #A7D8F5;
    /* Very light version for subtle highlights */

    /* Neutral Colors */
    --light: #F9FAFB;
    /* Clean white */
    --dark: #1C1F23;
    /* Deep, modern dark */
    --gray: #6C757D;
    /* Standard UI gray */
    --light-gray: #E5E7EB;
    /* Border & background gray */

    /* Motion */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Gradient Variables */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    --gradient-dark: linear-gradient(135deg, var(--dark), var(--primary-dark));
    --gradient-hero-overlay: linear-gradient(105deg,
            rgba(28, 31, 35, 0.85) 0%,
            rgba(28, 31, 35, 0.7) 100%);
    --gradient-button: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-text: linear-gradient(90deg, var(--primary), var(--secondary), var(--secondary-light));

    /* Layout Spacing */
    --section-spacing: 120px;

    /* Modern Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(12px);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #495057;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 0.95rem;
    position: relative;
    scroll-behavior: smooth;
    width: 100%;
    /* -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; */
}

html,
body,
h1,
h2,
h3 {
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.bg-light-custom {
    background-color: #f9fafb !important;
}

/* Global Section Title Styles */
.section-title {
    position: relative;
    margin-bottom: 35px;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 6px rgba(255, 107, 0, 0.25);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.section-title:hover:after {
    width: 90px;
}

.section-title span {
    background: linear-gradient(-45deg, var(--primary), var(--secondary), var(--primary-dark), var(--secondary-light));
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-anim 5s ease infinite;
    display: inline-block;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.7;
    opacity: 0.85;
}

/* Button Styles */
.el-btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.el-btn-primary {
    background: var(--gradient-button);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.el-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #d45150);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    color: white;
}

.el-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(5px);
}

.el-btn-outline:hover {
    background: white;
    border-color: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Card Styles */
.el-card {
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(54, 116, 181, 0.1);
    height: 100%;
    background: white;
    border: 1px solid rgba(54, 116, 181, 0.2);
}

.el-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 107, 0, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.preloader-logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.preloader-logo span {
    color: var(--primary);
}

.preloader-text {
    color: var(--gray);
    font-size: 0.9rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== TOP BAR STYLES ===== */
.el-top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.el-top-contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.el-top-contact-info span {
    margin-right: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 0.85rem;
}

.el-top-contact-info i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: var(--light);
}

.el-top-social-icons {
    display: flex;
    align-items: center;
}

.el-top-social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.el-top-social-icons a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== NAVIGATION STYLES ===== */
.el-navbar {
    padding: 0px 0;
    background-color: rgba(0, 0, 0, 0.5) !important;
    transition: var(--transition);
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.el-navbar.navbar-scroll {
    padding: 12px 0;
    background: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    border-bottom: 1px solid var(--light-gray);
}

.el-navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
}

.el-navbar-brand:hover {
    color: white;
}

.el-navbar.navbar-scroll .el-navbar-brand {
    color: var(--dark) !important;
    text-shadow: none;
}

.el-navbar.navbar-scroll .el-navbar-brand:hover {
    color: var(--primary) !important;
}

.el-navbar-brand span {
    color: var(--primary);
}

.el-nav-link {
    color: white;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    padding: 8px 12px !important;
    font-size: 0.95rem;
    transition: var(--transition);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.el-navbar.navbar-scroll .el-nav-link {
    color: var(--dark) !important;
    text-shadow: none;
}

.el-navbar.navbar-scroll .el-nav-link:hover,
.el-navbar.navbar-scroll .el-nav-link.active {
    color: var(--primary) !important;
}

.el-nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.el-nav-link:hover:before,
.el-nav-link.active:before {
    width: 70%;
}

.el-nav-link:hover,
.el-nav-link.active {
    color: var(--primary-light) !important;
}

/* Dropdown Menu Styling */
.el-nav-dropdown-menu {
    background-color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: absolute;
    z-index: 999;
    font-size: 0.9rem;
    margin-top: 10px;
}

.nav-item.dropdown:hover .el-nav-dropdown-menu,
.nav-item.dropdown:focus-within .el-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.el-nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--primary);
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.el-nav-dropdown-menu li a i {
    font-size: 1rem;
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: var(--primary);
    transition: var(--transition);
}

.el-nav-dropdown-menu li a:hover,
.el-nav-dropdown-menu li a:focus {
    color: var(--primary);
    background-color: var(--primary-light);
    border-left-color: var(--primary);
}

.el-nav-dropdown-menu li a:hover i,
.el-nav-dropdown-menu li a:focus i {
    color: var(--primary);
}

.el-nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.3em;
    vertical-align: 0.2em;
    content: "";
    border-top: 0.4em solid var(--primary);
    border-right: 0.4em solid transparent;
    border-left: 0.4em solid transparent;
    transition: transform 0.3s ease;
}

.nav-item.dropdown.show .el-nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-item.active {
    color: var(--primary);
    background-color: var(--primary-light);
    border-left-color: var(--primary);
}

/* Navbar toggler customization for transparent background */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.2em;
    height: 1.2em;
}

.el-navbar.navbar-scroll .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2);
}

.el-navbar.navbar-scroll .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile dropdown menu styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--gradient-secondary);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .el-nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        margin-left: 20px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
    }

    .el-nav-dropdown-menu li a {
        color: white;
        border-left: none;
        padding: 8px 15px;
    }

    .el-nav-dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .el-navbar {
        background: var(--gradient-secondary) !important;
        position: fixed;
        top: 0;
        padding: 12px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }

    .el-nav-link:before {
        display: none;
    }

    .el-nav-link.active,
    .el-nav-link:hover {
        color: var(--primary) !important;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }

    body {
        padding-top: 80px;
    }
}

/* ===== HERO SECTION STYLES ===== */
.el-hero {
    position: relative;
    padding: 100px 0 100px;
    color: white;
    display: flex;
    align-items: flex-start;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
}

.el-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.el-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero-overlay);
    z-index: -2;
}

.el-hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.el-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-service-types {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-service-type {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.hero-service-type span {
    color: var(--primary);
    margin-right: 10px;
}

.hero-service-type .fw-semibold {
    color: white;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== FOOTER STYLES ===== */
.el-footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 30px;
    font-size: 0.95rem;
    overflow: hidden;
    width: 100%;
}

.el-footer .container {
    max-width: 100%;
    padding: 0 15px;
}

.el-footer h5 {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

.el-footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.el-footer h5:hover:after {
    width: 70px;
}

.el-footer a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.el-footer a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.el-contact-info {
    padding-left: 0;
    list-style: none;
}

.el-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.el-contact-info i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.el-social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.el-social-icons a:hover {
    background-color: var(--primary);
    color: white;
}

.el-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

.payment-icons i {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    cursor: default;
}

.payment-icons i:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

.el-footer-contact span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.el-copyright .col-md-12 {
    padding: 5px 0;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-chat-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.floating-chat-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.chat-options {
    position: absolute;
    bottom: 75px;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.chat-options a {
    text-decoration: none;
}

.chat-option {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(10px);
    opacity: 0;
}

.chat-option:nth-child(1) {
    background: linear-gradient(135deg, #006AFF, #0053D6);
}

.chat-option:nth-child(2) {
    background: linear-gradient(135deg, #E1306C, #C13584);
}

.chat-option:nth-child(3) {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.chat-option:hover {
    transform: translateY(-5px);
}

.floating-chat-container.open .chat-options {
    display: flex;
}

.floating-chat-container.open .chat-option {
    transform: translateY(0);
    opacity: 1;
}

.chat-option:nth-child(1) {
    transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
}

.chat-option:nth-child(2) {
    transition: transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
}

.chat-option:nth-child(3) {
    transition: transform 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Common Card Styles */
/* ===== PREMIUM PATTERNS ===== */
.premium-dark-bg {
    background: linear-gradient(135deg, rgba(28, 31, 35, 0.95) 0%, rgba(28, 31, 35, 0.85) 1%),
        url('https://www.transparenttextures.com/patterns/cubes.png'),
        var(--primary-dark);
    position: relative;
    color: white;
}

.premium-dark-bg .section-title,
.premium-dark-bg .section-subtitle,
.premium-dark-bg p,
.premium-dark-bg h1,
.premium-dark-bg h2,
.premium-dark-bg h3,
.premium-dark-bg h4,
.premium-dark-bg h5,
.premium-dark-bg h6 {
    color: white !important;
}

.premium-dark-bg .section-subtitle {
    opacity: 0.5;
}

.premium-dark-bg .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.premium-dark-bg .el-services-card,
.premium-dark-bg .el-portfolio-item,
.premium-dark-bg .process-step-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.premium-dark-bg .el-services-card:hover,
.premium-dark-bg .el-portfolio-item:hover,
.premium-dark-bg .process-step-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-dark-bg .el-services-card h4,
.premium-dark-bg .process-step-box h4 {
    color: white !important;
}

/* ===== BACKGROUND PATTERNS ===== */
.pattern-dot-grid,
.dot-pattern {
    background-color: var(--light);
    background-image: radial-gradient(circle at 1px 1px, rgba(54, 116, 181, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    background-position: center;
}

.pattern-geometric-lines,
.grid-pattern {
    background-color: var(--light);
    background-image:
        linear-gradient(90deg, transparent 79px, rgba(54, 116, 181, 0.03) 79px, rgba(54, 116, 181, 0.03) 81px, transparent 81px),
        linear-gradient(rgba(54, 116, 181, 0.03) 1px, transparent 1px);
    background-size: 100px 20px, 100% 20px;
}

.pattern-subtle-waves,
.wave-pattern {
    background-color: var(--light);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 40,50 50 T100 50' stroke='%233674B5' stroke-width='0.5' fill='none' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

.pattern-diagonal-stripes,
.diagonal-pattern {
    background-color: var(--light);
    background-image: repeating-linear-gradient(45deg, rgba(54, 116, 181, 0.03), rgba(54, 116, 181, 0.03) 1px, transparent 1px, transparent 20px);
}

.pattern-circles {
    background-color: var(--light);
    background-image:
        radial-gradient(circle at 10px 10px, rgba(54, 116, 181, 0.03) 2px, transparent 0),
        radial-gradient(circle at 50px 50px, rgba(54, 116, 181, 0.02) 1px, transparent 0);
    background-size: 60px 60px, 100px 100px;
}

.pattern-hexagon,
.hexagon-pattern {
    background-color: var(--light);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L93.3 25 L93.3 75 L50 100 L6.7 75 L6.7 25 Z' fill='none' stroke='%233674B5' stroke-width='0.3' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.pattern-checkerboard {
    background-color: var(--light);
    background-image:
        linear-gradient(45deg, rgba(54, 116, 181, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(54, 116, 181, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(54, 116, 181, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(54, 116, 181, 0.02) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.pattern-gradient-mesh {
    background-color: var(--light);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(54, 116, 181, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(42, 166, 223, 0.05) 0%, transparent 50%);
    background-size: 400px 400px;
    background-position: -100px -100px, 300px 300px;
}

/* Backward compatibility aliases */
.topography-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}


/* Glow Effects */
.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
}

.glow-primary {
    background: var(--primary);
}

.glow-top-right {
    top: 10%;
    right: 10%;
}

.glow-bottom-left {
    bottom: 10%;
    left: 10%;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.opacity-90 {
    opacity: 0.9;
}

/* Pricing Cards Extra */
.pricing-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--gray);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.pricing-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Service Cards Extra */
.el-services-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(54, 116, 181, 0.2);
    box-shadow: 0 6px 18px rgba(54, 116, 181, 0.08);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    position: relative;
    z-index: 1;
}

.el-services-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.el-services-img {
    position: relative;
    height: 180px;
    background-color: var(--light-gray);
    overflow: hidden;
}

.el-services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.el-services-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(54, 116, 181, 0.55);
    opacity: 0;
    transition: var(--transition);
}

.el-services-card:hover .el-services-img img {
    transform: scale(1.1);
}

.el-services-card:hover .el-services-img::after {
    opacity: 1;
}

.el-services-content {
    padding: 25px 20px;
    text-align: center;
}

.el-services-icon {
    position: relative;
    z-index: 2;
    margin-top: -35px;
    margin-bottom: 10px;
}

.el-services-icon i {
    font-size: 2rem;
    color: var(--primary);
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.el-services-card:hover .el-services-icon i {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.el-services-btn {
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    padding: 8px 22px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.el-services-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 14px rgba(54, 116, 181, 0.4);
    transform: translateY(-2px);
}

/* Offers Section Extra */
.offers-icon-box {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(54, 116, 181, 0.08);
    border: 1px solid rgba(54, 116, 181, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.offers-icon-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.offers-icon-box i {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.offers-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(44, 62, 80, 0.15);
}

.offers-icon-box:hover::before {
    opacity: 1;
}

.offers-icon-box:hover i,
.offers-icon-box:hover h4,
.offers-icon-box:hover p {
    color: #fff;
}

/* Features Section Extra */
.features-icon-box {
    background: #fff;
    border: 1px solid rgba(54, 116, 181, 0.2);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(54, 116, 181, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-icon-box i {
    font-size: 2.5rem;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.features-icon-box:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(54, 116, 181, 0.15);
    transform: translateY(-6px);
}

.features-icon-box:hover i {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
}



/* Working Process Extra */
#working-process {
    position: relative;
}

#working-process::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    display: none;
    /* Hidden by default, shown on large screens */
}

@media (min-width: 992px) {
    #working-process::before {
        display: block;
    }
}

.process-step-box {
    background: #fff;
    border: 1px solid var(--primary);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--primary);
    border-radius: 5px;
}

.process-step-box:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.15);
}

.process-step-number {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(54, 116, 181, 0.4);
}

/* Trust Us Extra */
.trustus-card {
    background: var(--light);
    border-radius: 18px;
    border: 1px solid rgba(54, 116, 181, 0.2);
    box-shadow: 0 6px 15px rgba(54, 116, 181, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: visible;
    background-color: white;
}

.trustus-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.trustus-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.trustus-card:hover .trustus-icon {
    background: var(--gradient-secondary);
    transform: rotate(10deg) scale(1.08);
}

.trustus-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    border-radius: 18px;
    z-index: -1;
}

.trustus-card:hover::after {
    opacity: 0.05;
}

/* ===== PAGE HERO SYSTEM ===== */
.page-hero,
.hero-services,
.service-hero,
.package-hero,
.hero-contact,
.hero-about {
    position: relative;
    padding: 180px 0 100px;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    min-height: 50vh;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
}

.hero-services {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.service-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
}

.page-hero-title,
.service-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle,
.service-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* ===== TABBED NAVIGATION ===== */
.service-tabs,
.el-portfolio-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.service-tab,
.el-portfolio-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--light-gray);
    color: var(--gray);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.service-tab:hover,
.el-portfolio-tab:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.service-tab.active,
.el-portfolio-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(54, 116, 181, 0.3);
}

/* ===== DETAIL & CATEGORY CARDS ===== */
.service-detail-card {
    background: white;
    border-radius: 12px;
    padding: clamp(1.5rem, 5vw, 3rem);
    border: 1px solid rgba(54, 116, 181, 0.2);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-card,
.web-service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(54, 116, 181, 0.2);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

/* ===== PREMIUM SECTION SYSTEM ===== */
.premium-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--light);
}

.premium-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.glow-bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.glow-top-left {
    top: -250px;
    left: -250px;
}

.glow-bottom-right {
    bottom: -250px;
    right: -250px;
}

.premium-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(54, 116, 181, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.premium-card-glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.premium-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(54, 116, 181, 0.2);
}

.premium-card-glass:hover .premium-card-icon {
    transform: rotateY(360deg);
}

.premium-card-icon.small-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.tech-badge,
.platform-badge {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    border: 1px solid var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tech-badge:hover,
.platform-badge:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.feature-list-premium {
    padding-left: 0;
    list-style: none;
}

.feature-list-premium li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.feature-list-premium li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary);
    font-size: 1.1rem;
}

.category-card:hover,
.web-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.web-service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* ===== PORTFOLIO ENHANCEMENTS ===== */
.premium-light-bg {
    background-color: #ffffff;
    background-image: radial-gradient(#e5e7eb 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    position: relative;
    color: var(--dark);
}

.premium-light-bg .el-portfolio-item {
    background: white;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.premium-light-bg .el-portfolio-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(54, 116, 181, 0.15);
}

.el-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.el-portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: white;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    height: 100%;
}

.el-portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-portfolio-item:hover .el-portfolio-image {
    transform: scale(1.1);
}

.el-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 31, 35, 0.9) 0%, rgba(28, 31, 35, 0.7) 50%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.el-portfolio-item:hover .el-portfolio-overlay {
    opacity: 1;
}

.el-portfolio-content {
    padding: 1.5rem;
}

.el-portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.el-portfolio-tech span {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.el-portfolio-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.el-portfolio-link {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 5;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.el-portfolio-item:hover .el-portfolio-link {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}

.el-portfolio-link:hover {
    background: var(--primary);
    color: white;
}

/* ===== MODAL STYLES ===== */
.el-portfolio-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.el-portfolio-modal.active {
    display: flex;
}

.el-portfolio-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.el-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.el-modal-close {
    background: var(--primary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.el-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.el-modal-body {
    padding: 2rem;
}

.el-modal-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* ===== MISC UTILITIES ===== */
.bg-light-custom {
    background-color: var(--light);
}

/* ===== CONTACT PAGE STYLES ===== */
.hero-contact {
    position: relative;
    padding: 150px 0 100px;
    color: white;
    display: flex;
    align-items: flex-start;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(28, 31, 35, 0.9) 0%, rgba(28, 31, 35, 0.7) 100%),
        url('https://www.transparenttextures.com/patterns/cubes.png'),
        var(--primary-dark);
    background-attachment: fixed;
}

.contact-form-card {
    background: white;
    border-radius: 30px;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    margin-top: -120px;
    overflow: hidden;
}

.contact-form-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.contact-icon {
    width: 75px;
    height: 75px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.15);
    transition: var(--transition);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.contact-icon:hover {
    transform: rotateY(360deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
}

.contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.contact-detail {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-top: 1.5rem;
    word-break: break-word;
    transition: var(--transition);
}

.contact-info-card:hover .contact-detail {
    color: var(--primary);
}

.contact-info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.office-hours {
    background: white;
    border-radius: 30px;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.hour-item:hover {
    padding-left: 10px;
    padding-right: 10px;
    background: var(--light);
}

.hour-item .day {
    font-weight: 700;
    color: var(--dark);
}

.hour-item .time {
    color: var(--primary);
    font-weight: 600;
}

.emergency-badge {
    background: #FFEDD5;
    color: #9A3412;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 1rem;
    text-transform: uppercase;
}

.location-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.location-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 16px;
    transition: var(--transition);
}

.location-detail:hover {
    background: var(--primary-light);
}

.location-detail i {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Premium Form Styling */
.form-control,
.form-select {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    background: var(--light);
}

.form-control:focus,
.form-select:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.1);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-size: 0.9rem;
}

/* ===== HOME PAGE EXCLUSIVE UI ENHANCEMENTS ===== */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
}

.capsule-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(54, 116, 181, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(54, 116, 181, 0.2);
}

.floating-element {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stat-glass-card {
    background-color: #000;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-glass-card:hover {
    transform: translateY(-10px);
    background-color: #000;
    box-shadow: 0 15px 35px rgba(54, 116, 181, 0.2);
    border-color: var(--primary);
}

.stat-glass-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-glass-card .stat-label {
    font-weight: 700;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-glass-card p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    margin-bottom: 15px;
}

.hero-glass-buttons .el-btn-primary {
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    white-space: nowrap;
}

.hero-glass-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-glass:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background: white;
    color: var(--primary);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
    color: var(--primary-dark);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    font-size: 2rem;
    color: var(--primary);
}

.el-services-card:hover .service-icon-wrapper {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(10deg);
}

.animated-gradient-text {
    background: linear-gradient(-45deg, var(--primary), var(--secondary), var(--primary-dark), var(--secondary-light));
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-anim 5s ease infinite;
}

@keyframes gradient-anim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-section {
    position: relative;
    background: var(--primary-dark);
    overflow: hidden;
    padding: var(--section-spacing) 0;
    border-radius: 0;
    margin: 0;
    width: 100%;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/hexellence.png');
    background-size: auto;
    opacity: 0.2;
    mix-blend-mode: overlay;
    z-index: 1;
}

.cta-section .glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-section .display-5 {
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== ABOUT PAGE STYLES ===== */
.hero-about {
    position: relative;
    padding: 150px 0 100px;
    color: white;
    display: flex;
    align-items: flex-start;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(28, 31, 35, 0.9) 0%, rgba(28, 31, 35, 0.7) 100%),
        url('https://www.transparenttextures.com/patterns/cubes.png'),
        var(--primary-dark);
    background-attachment: fixed;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--primary);
    height: 100%;
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.story-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.value-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.value-card:hover {
    transform: translateY(-15px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 2.2rem;
    margin: 0 auto 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
}

.value-card h4 {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.value-card:hover h4 {
    color: var(--primary);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Decorative background for values section */
.values-bg-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.team-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-light);
}

/* Animation utilities */
.el-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.el-animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}