/* ================================================================ */
/* ROX AGENCY - HOMEPAGE STYLES                                     */
/* Premium Digital Agency Website                                   */
/* ================================================================ */

/* ================================================================ */
/* CSS CUSTOM PROPERTIES (BRAND COLORS)                             */
/* ================================================================ */
:root {
    --color-primary: #483AA0;
    --color-secondary: #FFD586;
    --color-dark: #111111;
    --color-light: #ffffff;
    --color-gray: #F6F7FB;
    --color-text: #555555;

    --gradient-primary: linear-gradient(135deg, #483AA0 0%, #6C5CE7 50%, #7C6FF0 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD586 0%, #FFB347 100%);
    --gradient-accent: linear-gradient(135deg, #483AA0, #FFD586);
    --gradient-glow: linear-gradient(135deg, rgba(72, 58, 160, 0.15), rgba(255, 213, 134, 0.15));

    --font-heading: 'Josefin Sans', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(72, 58, 160, 0.3);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;

    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --section-padding: 120px 0;
    --section-padding-mobile: 70px 0;
}


/* ================================================================ */
/* RESET & BASE STYLES                                               */
/* ================================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--color-primary);
    color: var(--color-light);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a2d80;
}


/* ================================================================ */
/* GRADIENT TEXT                                                     */
/* ================================================================ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ================================================================ */
/* SECTION HEADER                                                    */
/* ================================================================ */
.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(72, 58, 160, 0.08);
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 16px;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}


/* ================================================================ */
/* PRELOADER                                                         */
/* ================================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-light);
    letter-spacing: 8px;
    margin-bottom: 20px;
    animation: pulse-logo 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: loader-fill 2s ease-in-out forwards;
}

@keyframes pulse-logo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes loader-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}


/* ================================================================ */
/* SCROLL PROGRESS                                                   */
/* ================================================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease;
}


/* ================================================================ */
/* NAVBAR - STICKY TRANSPARENT                                       */
/* ================================================================ */
#main-navbar {
    padding: 18px 0;
    transition: all var(--transition-smooth);
    background: transparent;
    backdrop-filter: none;
}

/* Navbar logo image - smooth transition on swap */
.navbar-logo-img {
    transition: opacity 0.3s ease;
}

#main-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

/* Brand / Logo */
.navbar-brand {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-light);
    letter-spacing: 3px;
    transition: var(--transition-fast);
}

.navbar-scrolled .brand-text {
    color: var(--color-dark);
}

.brand-dot {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-secondary);
    font-weight: 700;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    margin-left: 4px;
    align-self: flex-end;
    padding-bottom: 4px;
}

.navbar-scrolled .brand-tagline {
    color: var(--color-text);
}

/* Nav Links */
.navbar-nav .nav-item {
    margin: 0 2px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-secondary);
}

.navbar-scrolled .navbar-nav .nav-link {
    color: var(--color-dark);
}

.navbar-scrolled .navbar-nav .nav-link:hover,
.navbar-scrolled .navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-scrolled .navbar-nav .nav-link::after {
    background: var(--color-primary);
}

/* Nav CTA Button */
.btn-nav-cta {
    background: var(--gradient-primary);
    color: var(--color-light) !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 26px !important;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(72, 58, 160, 0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 58, 160, 0.4);
    color: var(--color-light) !important;
}

.btn-nav-cta i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.btn-nav-cta:hover i {
    transform: translateX(4px);
}

/* Hamburger Menu */
.hamburger-menu {
    border: none !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.hamburger-box {
    width: 28px;
    height: 20px;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 2.5px;
    border-radius: 4px;
    background: var(--color-light);
    position: absolute;
    transition: all var(--transition-fast);
}

.navbar-scrolled .hamburger-inner,
.navbar-scrolled .hamburger-inner::before,
.navbar-scrolled .hamburger-inner::after {
    background: var(--color-dark);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -8px;
}

.hamburger-inner::after {
    content: '';
    top: 8px;
}

.hamburger-menu[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-inner::before {
    opacity: 0;
    top: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-inner::after {
    top: 0;
    transform: rotate(-90deg);
}


/* ================================================================ */
/* HERO SECTION                                                     */
/* ================================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.65) 50%, rgba(72, 58, 160, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(255, 213, 134, 0.1);
    border: 1px solid rgba(255, 213, 134, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-light);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.highlight-tag i {
    color: var(--color-secondary);
}

.highlight-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Buttons */
.btn-primary-glow {
    background: var(--gradient-primary);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
    box-shadow: 0 8px 30px rgba(72, 58, 160, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: scale(0);
    transition: transform var(--transition-smooth);
}

.btn-primary-glow:hover::before {
    transform: scale(1);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(72, 58, 160, 0.5);
    color: var(--color-light);
}

.btn-primary-glow i {
    transition: transform var(--transition-fast);
}

.btn-primary-glow:hover i {
    transform: translateX(5px);
}

.btn-outline-light {
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
}

.btn-outline-light:hover {
    background: var(--color-light);
    color: var(--color-primary);
    border-color: var(--color-light);
    transform: translateY(-3px);
}

.btn-outline-light i {
    transition: transform var(--transition-fast);
}

.btn-outline-light:hover i {
    transform: translateX(5px);
}

/* Floating Gradient Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    bottom: -10%;
    left: -5%;
    animation-delay: -7s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #6C5CE7;
    top: 50%;
    right: 30%;
    animation-delay: -14s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(40px, 40px) scale(1.05); }
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 40px !important;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 6px;
    transition: var(--transition-fast);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 6px;
    background: var(--color-secondary);
}

/* Hero Navigation */
.hero-next,
.hero-prev {
    color: var(--color-light) !important;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
}

.hero-next:hover,
.hero-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-next::after,
.hero-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    animation: scroll-arrow 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-arrow {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(5px); }
}


/* ================================================================ */
/* WHY CHOOSE US SECTION (Extra)                                     */
/* ================================================================ */
.why-choose-section {
    position: relative;
    background: var(--color-gray);
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(72, 58, 160, 0.05), transparent);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 213, 134, 0.05), transparent);
    bottom: -80px;
    left: -80px;
}

.why-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-glow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.why-card:hover .why-icon {
    background: var(--gradient-primary);
    color: var(--color-light);
    transform: scale(1.1) rotate(-5deg);
}

.why-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.why-desc {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}


/* ================================================================ */
/* SERVICES SECTION                                                 */
/* ================================================================ */
.services-section {
    background: var(--color-light);
}

.service-card {
    background: var(--color-light);
    padding: 35px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 0;
    border-radius: var(--radius-md);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: scale(1.1) rotate(-5deg);
}

.icon-gradient-1 { background: linear-gradient(135deg, #E8E0FF, #D4CCFF); color: #483AA0; }
.icon-gradient-2 { background: linear-gradient(135deg, #FFF3D6, #FFE4B3); color: #D48900; }
.icon-gradient-3 { background: linear-gradient(135deg, #FFE0E6, #FFCCD4); color: #D4334A; }
.icon-gradient-4 { background: linear-gradient(135deg, #D6F5E8, #B3EDD1); color: #00994D; }
.icon-gradient-5 { background: linear-gradient(135deg, #D6E8FF, #B3D4FF); color: #004DB3; }
.icon-gradient-6 { background: linear-gradient(135deg, #FFE0CC, #FFD4B3); color: #B36000; }
.icon-gradient-7 { background: linear-gradient(135deg, #E0D6FF, #CCB3FF); color: #5C33B3; }
.icon-gradient-8 { background: linear-gradient(135deg, #D6FFF0, #B3FFE0); color: #009966; }

.service-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--color-light);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.service-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.service-link:hover {
    color: var(--color-dark);
}

.service-card:hover .service-link {
    color: var(--color-secondary);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}


/* ================================================================ */
/* PROCESS SECTION (Extra)                                          */
/* ================================================================ */
.process-section {
    background: var(--color-gray);
    position: relative;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
    min-width: 80px;
}

.process-content {
    flex: 1;
    background: var(--color-light);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-content h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.process-content p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.7;
}

.process-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(72, 58, 160, 0.3);
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(72, 58, 160, 0.4);
}


/* ================================================================ */
/* PORTFOLIO SECTION                                                */
/* ================================================================ */
.portfolio-section {
    background: var(--color-light);
}

/* Filter Buttons */
.portfolio-filters {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    background: rgba(72, 58, 160, 0.05);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--color-light);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(72, 58, 160, 0.3);
}

/* Portfolio Card */
.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-smooth);
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: all var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-cat {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-secondary);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
    align-self: flex-start;
}

.portfolio-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.portfolio-link i {
    transition: transform var(--transition-fast);
}

.portfolio-link:hover {
    color: var(--color-secondary);
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 6px;
    display: block;
}

.portfolio-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}


/* ================================================================ */
/* INDUSTRIES WE SERVE                                               */
/* ================================================================ */
.industries-section {
    background: var(--color-gray);
}

.industry-card {
    background: var(--color-light);
    padding: 25px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: default;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(72, 58, 160, 0.15);
}

.industry-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.industry-card:hover .industry-icon {
    background: var(--gradient-primary);
    color: var(--color-light);
    transform: scale(1.1) rotate(-5deg);
}

.industry-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.industry-card span {
    font-size: .85rem;
    color: var(--color-text);
    display: block;
}


/* ================================================================ */
/* TESTIMONIALS SECTION                                             */
/* ================================================================ */
.testimonials-section {
    background: var(--color-light);
    position: relative;
}

.testimonialSwiper {
    padding: 20px 0 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-smooth);
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 1rem;
}

.testimonial-review {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(72, 58, 160, 0.1);
}

.testimonial-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--color-text);
}

/* Testimonial Pagination */
.testimonial-pagination {
    position: relative;
    margin-top: 20px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(72, 58, 160, 0.2);
    opacity: 1;
    transition: var(--transition-fast);
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}


/* ================================================================ */
/* CTA BANNER (Extra Section)                                       */
/* ================================================================ */
.cta-section {
    padding: 0 0 80px;
}

.cta-wrapper {
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(72, 58, 160, 0.2), transparent);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: blob-float 15s ease-in-out infinite;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.btn-cta-glow {
    background: var(--gradient-primary);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 38px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
    box-shadow: 0 8px 30px rgba(72, 58, 160, 0.35);
    white-space: nowrap;
}

.btn-cta-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(72, 58, 160, 0.5);
    color: var(--color-light);
}

.btn-cta-glow i {
    transition: transform var(--transition-fast);
}

.btn-cta-glow:hover i {
    transform: translateX(5px);
}


/* ================================================================ */
/* CONTACT US SECTION                                               */
/* ================================================================ */
.contact-section {
    background: var(--color-gray);
}

.contact-info-wrapper {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-info-item:hover .contact-icon {
    background: var(--gradient-primary);
    color: var(--color-light);
    transform: scale(1.05);
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
    transition: var(--transition-fast);
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--color-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 58, 160, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
    position: relative;
}

.form-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.custom-input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(0, 0, 0, 0.06);
    background: var(--color-gray);
    transition: all var(--transition-fast);
    color: var(--color-dark);
}

.custom-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(72, 58, 160, 0.08);
    background: var(--color-light);
    outline: none;
}

.custom-input::placeholder {
    color: #aaa;
}

.custom-textarea {
    resize: vertical;
    min-height: 120px;
}

select.custom-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
    transform: translateX(-50%);
}

.custom-input:focus ~ .input-focus-border {
    width: calc(100% - 36px);
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
    box-shadow: 0 8px 30px rgba(72, 58, 160, 0.35);
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(72, 58, 160, 0.5);
    color: var(--color-light);
}

.btn-submit i {
    transition: transform var(--transition-fast);
}

.btn-submit:hover i {
    transform: translateX(5px);
}


/* ================================================================ */
/* FOOTER SECTION                                                   */
/* ================================================================ */
.footer-section {
    background: var(--color-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-light);
    letter-spacing: 3px;
}

.footer-logo .brand-dot {
    color: var(--color-secondary);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    margin-left: 4px;
    display: inline-block;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--gradient-primary);
    color: var(--color-light);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

/* Newsletter */
.footer-newsletter-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.newsletter-input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.newsletter-input-group:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(72, 58, 160, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    padding: 12px 18px;
    border: none;
    background: var(--gradient-primary);
    color: var(--color-light);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background: #3a2d80;
}

.footer-contact-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: var(--color-secondary);
    width: 16px;
}

/* Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    margin-top: 60px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.design-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.design-credit i {
    color: #ff4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.design-credit a {
    color: var(--color-secondary);
}

.design-credit a:hover {
    color: var(--color-light);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}


/* ================================================================ */
/* BACK TO TOP BUTTON                                               */
/* ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: var(--color-light);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(72, 58, 160, 0.3);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(72, 58, 160, 0.5);
}


/* ================================================================ */
/* WHATSAPP FLOATING BUTTON                                         */
/* ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all var(--transition-fast);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--color-light);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: var(--color-light);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35); }
}


/* ================================================================ */
/* CUSTOM CURSOR                                                    */
/* ================================================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    opacity: 0;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0;
}


/* ================================================================ */
/* RESPONSIVE DESIGN                                                 */
/* ================================================================ */

/* Desktop Large (1400px+) */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 3.6rem;
    }
}

/* Desktop (1200px-) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: row;
        text-align: left;
        padding-left: 70px;
    }

    .process-step:nth-child(odd) .process-number,
    .process-step:nth-child(even) .process-number {
        display: none;
    }

    .process-icon {
        position: absolute;
        left: 0;
        top: 15px;
    }
}

/* Tablet (992px-) */
@media (max-width: 992px) {
    .section-padding {
        padding: var(--section-padding-mobile);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .cta-wrapper {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .btn-cta-glow {
        margin-top: 16px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }

    /* Navbar Mobile */
    #main-navbar {
        background: rgba(17, 17, 17, 0.9);
        backdrop-filter: blur(20px);
    }

    #main-navbar.navbar-scrolled {
        background: rgba(255, 255, 255, 0.98);
    }

    .navbar-collapse {
        background: var(--color-dark);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-scrolled .navbar-collapse {
        background: var(--color-light);
        border-color: rgba(0, 0, 0, 0.06);
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 12px !important;
    }

    .navbar-nav .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: 4px;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 50%;
    }

    .btn-nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .footer-section {
        padding: 60px 0 0;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 8px;
    }
}

/* Mobile Large (768px-) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary-glow,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-section {
        min-height: 550px;
    }

    .hero-pagination {
        bottom: 20px !important;
    }

    .hero-next,
    .hero-prev {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 28px 22px;
    }

    .process-content {
        padding: 22px;
    }

    .why-card {
        padding: 30px 24px;
    }

    .cta-wrapper {
        padding: 30px 24px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 24px;
    }

    .industry-card {
        padding: 18px 12px;
    }

    .industry-card h4 {
        font-size: 1.2rem;
    }

    .industry-card span {
        font-size: 0.7rem;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        left: 20px;
    }

    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
}

/* Mobile Small (576px-) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-highlights {
        gap: 8px;
    }

    .highlight-tag {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }
}


/* ================================================================ */
/* ANIMATION UTILITIES                                              */
/* ================================================================ */

/* Floating animation for images */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* AOS Override - better timing */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ripple effect for buttons */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-anim 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
