/* =========================================
   Web Technologies - Custom Styles
   Black Theme with Modern Aesthetics
   ========================================= */

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #a855f7;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #111111;
    --card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --border-color: #222222;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
}

/* Service pages — shared “Our Process” + “Industries We Serve” UI */
.process-card {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(99, 102, 241, 0.28);
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.process-header h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.process-header p {
    margin-bottom: 22px;
    color: #fff;
    opacity: 0.9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.process-step-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.process-step-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.7);
    background: rgba(99, 102, 241, 0.08);
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.step-text {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
}

.industries-card {
    margin-top: 30px;
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.96), rgba(10, 10, 10, 0.96));
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 40px;
    padding: 28px 28px 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.industries-card.mt-0 {
    margin-top: 0;
}

.industries-header h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.industries-header p {
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0.9;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.industry-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 0.93rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.industry-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(99, 102, 241, 0.08);
}

.industries-grid--with-icons .industry-pill {
    justify-content: flex-start;
    text-align: left;
}

.industry-pill-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.28), rgba(168, 85, 247, 0.18));
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #e0e7ff;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.industry-pill:hover .industry-pill-icon {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.5);
    transform: scale(1.05);
}

.industries-grid--with-icons {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.industries-grid.industries-grid--4col.industries-grid--with-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* website-development.html — 4-column industries + fully rounded “pill” boxes */
.industries-grid.industries-grid--4col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
    .industries-grid.industries-grid--4col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .industries-grid.industries-grid--4col {
        grid-template-columns: 1fr;
    }
}

.industries-card.industries-card--pill-rounded {
    border-radius: 40px;
    padding: 28px 28px 30px;
}

.industries-card.industries-card--pill-rounded .industry-pill {
    border-radius: 999px;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
}

/* =========================================
   Header Wrapper - Transparent Overlay
   ========================================= */
.white{color:#fff !important;}
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-wrapper.scrolled {
    position: fixed;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

/* =========================================
   Top Bar
   ========================================= */
.top-bar {
    background: transparent;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrapper.scrolled .top-bar {
    display: none;
}

.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.top-bar-left span,
.top-bar-left a {
    font-size: 13px;
    color: var(--text-secondary);
}

.top-bar-left a {
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-left a:hover {
    color: var(--primary-color);
}

.top-bar-phone {
    display: inline-flex;
    align-items: center;
}

.top-bar-left i {
    color: var(--primary-color);
    margin-right: 8px;
}

.top-bar-right {
    text-align: right;
}

/* Pulse Button Animation */
.pulse-btn {
    background: var(--gradient-1);
    color: var(--text-primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.pulse-btn:hover::before {
    left: 100%;
}

.pulse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    color: var(--text-primary);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
    }
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    background: transparent !important;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrapper.scrolled .navbar {
    padding: 12px 0;
    border-bottom: none;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--text-primary) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-left: 20px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-whatsapp i {
    font-size: 18px;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    background: #128C7E;
    color: var(--text-primary) !important;
}

@keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.logo-text .highlight {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Dropdown */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 0;
    box-shadow: var(--shadow);
    z-index: 1050;
    min-width: 250px;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

.dropdown-item {
    color: var(--text-primary);
    padding: 10px 20px;
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--card-hover);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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%28255, 107, 53, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =========================================
   Hero Slider - Enhanced Design
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

.hero-slider .carousel,
.hero-slider .carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-item {
    height: 100vh;
    min-height: 700px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    transform: scale(1);
    transition: transform 8s ease;
}

.carousel-item.active .slide-bg {
    transform: scale(1.1);
}

.slide-1 {
    background-image: url(../images/slider-01.jpg);
}

.slide-2 {
    background-image: url(../images/slider-02.jpg);
}

.slide-3 {
    background-image: url(../images/slider-03.jpg);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    padding: 0 15px;
}

/* Hero Content Container */
.hero-content {
    max-width: 800px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: slideInLeft 0.8s ease;
}

.hero-badge i {
    color: #ffc107;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: none;
}

.title-line {
    display: block;
    color: var(--text-primary);
    animation: slideInUp 0.8s ease;
    animation-fill-mode: both;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.title-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero Text */
.hero-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
    animation: slideInUp 0.8s ease 0.4s both;
}

/* Keyword / phrase emphasis in paragraphs: <span class="keyword-highlight"> or <span class="text-highlight"> */
.text-highlight,
.keyword-highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    display: inline;
}

.text-highlight::after,
.keyword-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 1px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease 0.5s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-1);
    color: var(--text-primary);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    color: var(--text-primary);
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--text-primary);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.btn-hero-secondary i {
    font-size: 20px;
    color: var(--primary-color);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    animation: slideInUp 0.8s ease 0.6s both;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-stat:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-text {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slide Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Reset animations on slide change */
.carousel-item .hero-badge,
.carousel-item .title-line,
.carousel-item .hero-text,
.carousel-item .hero-buttons,
.carousel-item .hero-stats {
    opacity: 0;
}

.carousel-item.active .hero-badge {
    animation: slideInLeft 0.8s ease forwards;
}

.carousel-item.active .title-line {
    animation: slideInUp 0.8s ease forwards;
}

.carousel-item.active .title-line:nth-child(1) { animation-delay: 0.1s; }
.carousel-item.active .title-line:nth-child(2) { animation-delay: 0.2s; }
.carousel-item.active .title-line:nth-child(3) { animation-delay: 0.3s; }

.carousel-item.active .hero-text {
    animation: slideInUp 0.8s ease 0.4s forwards;
}

.carousel-item.active .hero-buttons {
    animation: slideInUp 0.8s ease 0.5s forwards;
}

.carousel-item.active .hero-stats {
    animation: slideInUp 0.8s ease 0.6s forwards;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    margin: 0 30px;
    opacity: 1;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 8px;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--gradient-1);
    width: 45px;
    border-radius: 10px;
}

/* =========================================
   Hero Content New Design
   ========================================= */
.hero-content-new {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

/* Top Row with Lines */
.hero-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-line-decoration {
    width: 60px;
    height: 2px;
    background: var(--gradient-1);
    position: relative;
}

.hero-line-decoration::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-line-decoration:first-child::after {
    right: -4px;
}

.hero-line-decoration:last-child::after {
    left: -4px;
}

.hero-subtitle-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Main Title */
.hero-main-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
}

.title-word {
    display: inline-block;
    color: var(--text-primary);
    position: relative;
    animation: titleReveal 0.8s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    text-stroke: 2px var(--primary-color);
    position: relative;
}

.title-outline::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    color: var(--primary-color);
    -webkit-text-stroke: 0;
    animation: textFill 3s ease-in-out infinite;
}

@keyframes textFill {
    0%, 100% { width: 0%; }
    50% { width: 100%; }
}

.title-filled {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-filled::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-1);
    opacity: 0.3;
    border-radius: 4px;
}

/* Description Box */
.hero-desc-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 25px 35px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.desc-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

/* CTA Row */
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--gradient-1);
    color: white;
    padding: 0;
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.hero-cta-main .cta-text {
    padding: 18px 25px 18px 30px;
}

.hero-cta-main .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 5px;
    transition: all 0.4s ease;
}

.hero-cta-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.5);
    color: white;
}

.hero-cta-main:hover .cta-icon {
    background: white;
    color: var(--primary-color);
}

.hero-cta-divider {
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-cta-divider::before,
.hero-cta-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--border-color);
}

.hero-cta-divider::before { left: -25px; }
.hero-cta-divider::after { right: -25px; }

.hero-cta-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.hero-cta-phone:hover {
    color: var(--text-primary);
}

.phone-icon-wrap {
    width: 55px;
    height: 55px;
    background: rgba(99, 102, 241, 0.15);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
}

.hero-cta-phone:hover .phone-icon-wrap {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
}

.phone-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-text small {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-text strong {
    font-size: 16px;
    font-weight: 600;
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-icon {
    color: #22c55e;
    font-size: 16px;
}

/* Slide animation reset */
.carousel-item .hero-content-new .hero-top-row,
.carousel-item .hero-content-new .title-word,
.carousel-item .hero-content-new .hero-desc-box,
.carousel-item .hero-content-new .hero-cta-row,
.carousel-item .hero-content-new .hero-trust-bar {
    opacity: 0;
}

.carousel-item.active .hero-content-new .hero-top-row {
    animation: fadeInDown 0.8s ease forwards;
}

.carousel-item.active .hero-content-new .title-word {
    animation: titleReveal 0.8s ease forwards;
}

.carousel-item.active .hero-content-new .title-word:nth-child(1) { animation-delay: 0.1s; }
.carousel-item.active .hero-content-new .title-word:nth-child(2) { animation-delay: 0.2s; }
.carousel-item.active .hero-content-new .title-word:nth-child(3) { animation-delay: 0.3s; }
.carousel-item.active .hero-content-new .title-word:nth-child(4) { animation-delay: 0.4s; }

.carousel-item.active .hero-content-new .hero-desc-box {
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.carousel-item.active .hero-content-new .hero-cta-row {
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.carousel-item.active .hero-content-new .hero-trust-bar {
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

/* Hero New Responsive */
@media (max-width: 1199px) {
    .hero-main-title {
        font-size: 4rem;
    }
}

@media (max-width: 991px) {
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-desc-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 25px;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-cta-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta-divider {
        display: none;
    }
    
    .hero-trust-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .hero-top-row {
        margin-bottom: 20px;
    }
    
    .hero-line-decoration {
        width: 40px;
    }
    
    .hero-subtitle-text {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
        gap: 8px 12px;
    }
    
    .title-filled::after {
        height: 5px;
        bottom: 2px;
    }
    
    .hero-desc-box {
        padding: 18px 20px;
        margin-bottom: 30px;
    }
    
    .desc-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-main .cta-text {
        padding: 15px 20px;
    }
    
    .hero-cta-main .cta-icon {
        width: 45px;
        height: 45px;
    }
    
    .phone-icon-wrap {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .phone-text strong {
        font-size: 14px;
    }
    
    .hero-trust-bar {
        gap: 15px;
    }
    
    .trust-item {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .hero-desc-box {
        border-radius: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-cta-main,
    .hero-cta-phone {
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta-main .cta-text {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .trust-item span {
        font-size: 11px;
    }
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-slider,
    .carousel-item {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat::after {
        right: -15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 15px;
    }
}

@media (max-width: 767px) {
    .hero-slider,
    .carousel-item {
        min-height: 550px;
    }
    
    .carousel-caption {
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 25px;
    }
    
    .hero-stat::after {
        right: -13px;
        height: 30px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-text {
        font-size: 11px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-slider,
    .carousel-item {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-stat::after {
        display: none;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Section Styles
   ========================================= */
.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 15px;
}

/* =========================================
   Services Section
   ========================================= */
.services-section {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--text-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* =========================================
   What You Get Section
   ========================================= */
.what-you-get {
    background: var(--dark-bg);
    position: relative;
}

.feature-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--text-primary);
}

.feature-box h5 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 0;
}

/* =========================================
   About Section - Home Page
   ========================================= */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* About Visual Styles */
.about-visual {
    position: relative;
    padding: 40px;
}

.about-image-stack {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(99, 102, 241, 0.2);
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-main .image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.5;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--dark-bg);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--gradient-1);
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
    animation: float 3s ease-in-out infinite;
}

.about-experience-badge .experience-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Playfair Display', serif;
}

.about-experience-badge .number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.about-experience-badge .plus {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.about-experience-badge .experience-text {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    line-height: 1.3;
}

/* Floating Shapes */
.about-floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.about-floating-shapes .shape-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    top: -20px;
    left: -20px;
    animation: float 4s ease-in-out infinite;
}

.about-floating-shapes .shape-2 {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    bottom: 80px;
    left: 30px;
    animation: float 3s ease-in-out infinite reverse;
}

.about-floating-shapes .shape-3 {
    width: 25px;
    height: 25px;
    background: var(--accent-color);
    top: 50%;
    right: 0;
    animation: float 2.5s ease-in-out infinite;
}

/* About Content Styles */
.about-content {
    padding-left: 50px;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-label .label-line {
    width: 50px;
    height: 2px;
    background: var(--gradient-1);
}

.about-label .label-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-title .text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* About Highlights */
.about-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* About Stats Row */
.about-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-stat {
    text-align: center;
}

.about-stat .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.about-stat .stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about-stat .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* About Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: left 0.4s ease;
    z-index: -1;
}

.about-btn:hover::before {
    left: 0;
}

.about-btn:hover {
    border-color: transparent;
    color: var(--text-primary);
}

.about-btn .btn-arrow {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.about-btn:hover .btn-arrow {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

/* About Section Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-visual {
        padding: 20px;
        margin-bottom: 50px;
    }
    
    .about-image-secondary {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -10px;
    }
    
    .about-experience-badge {
        right: 0;
        padding: 20px;
    }
    
    .about-experience-badge .number {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-stats-row {
        gap: 25px;
    }
    
    .about-stat .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-image-main img {
        height: 300px;
    }
    
    .about-image-secondary {
        width: 120px;
        height: 120px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-stats-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .about-stat {
        flex: 0 0 30%;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin: 0 auto;
    }
}

/* =========================================
   Counter Stats Section
   ========================================= */
.counter-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.counter-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.counter-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.counter-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation: pulse-circle 4s ease-in-out infinite;
}

.counter-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation: pulse-circle 5s ease-in-out infinite reverse;
}

.counter-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.counter-line-1 {
    width: 100%;
    top: 30%;
    animation: slide-line 8s linear infinite;
}

.counter-line-2 {
    width: 100%;
    bottom: 30%;
    animation: slide-line 10s linear infinite reverse;
}

@keyframes pulse-circle {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes slide-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.counter-wrapper {
    position: relative;
    z-index: 1;
}

.counter-box {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.counter-box:hover .counter-glow {
    opacity: 1;
}

.counter-box:hover .counter-icon {
    transform: scale(1.1) rotateY(180deg);
}

.counter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.counter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-primary);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.counter-content {
    position: relative;
    z-index: 1;
}

.counter-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.counter-number .count {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.counter-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.counter-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Counter Section Responsive */
@media (max-width: 991px) {
    .counter-section {
        padding: 70px 0;
    }
    
    .counter-box {
        padding: 30px 20px;
    }
    
    .counter-number .count {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .counter-number .count {
        font-size: 2rem;
    }
}

/* =========================================
   Mission & Vision Section
   ========================================= */
.mission-vision-section {
    padding: 100px 0;
    position: relative;
}

.mv-card {
    height: 100%;
    perspective: 1000px;
}

.mv-card-inner {
    background: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s ease;
    border: 1px solid transparent;
}

.mission-card .mv-card-inner {
    border-left: 4px solid var(--primary-color);
}

.vision-card .mv-card-inner {
    border-left: 4px solid var(--accent-color);
}

.mv-card:hover .mv-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mission-card:hover .mv-card-inner {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.05), transparent);
}

.vision-card:hover .mv-card-inner {
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.05), transparent);
}

.mv-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.mv-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.mission-card .mv-icon-bg {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.vision-card .mv-icon-bg {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.mv-card:hover .mv-icon-bg {
    transform: rotate(0deg);
}

.mv-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    z-index: 1;
}

.mission-card .mv-icon {
    color: var(--primary-color);
}

.vision-card .mv-icon {
    color: var(--accent-color);
}

.mv-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.mv-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mv-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mv-points li:last-child {
    border-bottom: none;
}

.mv-points li:hover {
    color: var(--text-primary);
    padding-left: 10px;
}

.mission-card .mv-points li i {
    color: var(--primary-color);
    font-size: 14px;
}

.vision-card .mv-points li i {
    color: var(--accent-color);
    font-size: 14px;
}

.mv-decoration {
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.mv-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    opacity: 0.05;
    line-height: 1;
}

.mv-card:hover .mv-number {
    opacity: 0.1;
}

/* Mission Vision Responsive */
@media (max-width: 991px) {
    .mission-vision-section {
        padding: 70px 0;
    }
    
    .mv-card-inner {
        padding: 40px 30px;
    }
    
    .mv-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .mv-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .mv-icon {
        font-size: 30px;
    }
    
    .mv-number {
        font-size: 3rem;
    }
}

/* =========================================
   Capabilities Showcase Section
   ========================================= */
.capabilities-showcase {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.capabilities-bg-pattern {
    display: none;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Capability Card */
.capability-card {
    background: transparent;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(99, 102, 241, 0.1);
}

/* Image Wrapper */
.capability-image-wrapper {
    position: relative;
    padding: 30px;
}

.capability-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.capability-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.capability-card:hover .capability-image img {
    transform: scale(1.08);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.image-glow.glow-alt {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.capability-card:hover .image-glow {
    opacity: 1;
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    top: 50px;
    left: 50px;
    background: var(--gradient-1);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.floating-badge.badge-alt {
    background: var(--gradient-2);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.floating-badge i {
    font-size: 18px;
}

.floating-stats {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: rgba(17, 17, 17, 0.95);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
    animation-delay: -1.5s;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-stats.stats-alt .stat-number {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Capability Content */
.capability-content {
    padding: 50px;
}

.capability-content.content-alt {
    padding-left: 30px;
}

.capability-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.capability-icon.icon-alt {
    background: var(--gradient-2);
}

.capability-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
    transition: all 0.4s ease;
}

.capability-card:hover .capability-icon {
    transform: rotateY(180deg);
}

.capability-content h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.capability-tagline {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.capability-content.content-alt .capability-tagline {
    color: #3b82f6;
}

.capability-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Feature Items */
.capability-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-icon.icon-alt {
    background: var(--gradient-2);
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Capability Button */
.capability-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-1);
    color: var(--text-primary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.capability-btn.btn-alt {
    background: var(--gradient-2);
}

.capability-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.capability-btn:hover::before {
    left: 100%;
}

.capability-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    color: var(--text-primary);
}

.capability-btn.btn-alt:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.capability-btn i {
    transition: transform 0.3s ease;
}

.capability-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .capability-content,
    .capability-content.content-alt {
        padding: 30px;
    }
    
    .capability-image img {
        height: 300px;
    }
    
    .floating-badge {
        top: 40px;
        left: 40px;
        padding: 12px 20px;
    }
    
    .floating-stats {
        bottom: 40px;
        right: 40px;
    }
    
    .capability-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .capabilities-showcase {
        padding: 60px 0;
    }
    
    .capability-card {
        border-radius: 20px;
    }
    
    .capability-image-wrapper {
        padding: 20px;
    }
    
    .capability-content h3 {
        font-size: 1.8rem;
    }
    
    .floating-badge,
    .floating-stats {
        display: none;
    }
}

/* =========================================
   Why Choose Us
   ========================================= */
.why-choose-us {
    background: var(--dark-bg);
    position: relative;
}

.why-card {
    background: linear-gradient(145deg, var(--card-bg), var(--card-hover));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-3);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--text-primary);
}

.why-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* =========================================
   Blog Section
   ========================================= */
.blog-section {
    background: var(--darker-bg);
}

.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-1);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

.blog-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    color: var(--text-secondary);
    font-size: 13px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-content h4 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* =========================================
   Testimonials Section - 3 Column Slider
   ========================================= */
.testimonials-section {
    background: var(--dark-bg);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    overflow: visible;
    padding: 20px 60px 60px;
    margin: 0 -30px;
}

.testimonial-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: calc(100% - 60px);
    background: linear-gradient(to right, var(--dark-bg), transparent);
    z-index: 5;
    pointer-events: none;
}

.testimonial-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: calc(100% - 60px);
    background: linear-gradient(to left, var(--dark-bg), transparent);
    z-index: 5;
    pointer-events: none;
}

.testimonial-track-wrapper {
    overflow: hidden;
    margin: 0 10px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-slide-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    color: var(--text-primary);
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 13px;
}

.rating {
    color: #ffc107;
    font-size: 14px;
}

/* Slider Navigation Buttons */
.testimonial-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-nav-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-btn.prev-btn {
    left: 0;
}

.testimonial-nav-btn.next-btn {
    right: 0;
}

/* Slider Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot:hover {
    background: var(--primary-color);
}

.testimonial-dots .dot.active {
    background: var(--gradient-1);
    width: 35px;
    border-radius: 10px;
}

/* Testimonial Slider Responsive */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonial-slider-container {
        padding: 20px 50px 60px;
    }
    
    .testimonial-slide-item {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .testimonial-nav-btn.prev-btn {
        left: 0;
    }
    
    .testimonial-nav-btn.next-btn {
        right: 0;
    }
}

@media (max-width: 767px) {
    .testimonial-slider-container {
        padding: 20px 45px 60px;
        margin: 0 -15px;
    }
    
    .testimonial-slider-container::before,
    .testimonial-slider-container::after {
        width: 45px;
    }
    
    .testimonial-slide-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .testimonial-track {
        gap: 20px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonial-nav-btn.prev-btn {
        left: 0;
    }
    
    .testimonial-nav-btn.next-btn {
        right: 0;
    }
}

/* =========================================
   Footer - Modern Design
   ========================================= */
.footer {
    background: linear-gradient(180deg, #080810 0%, #0a0a12 50%, #050508 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-logo .logo-text {
    font-size: 28px;
    position: relative;
}

.footer-logo .logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.footer-contact:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
}

.footer-contact i {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 18px;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    border-color: transparent;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover i {
    transform: scale(1.2);
}

/* Individual social hover colors */
.social-links a:nth-child(1):hover { box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4); }
.social-links a:nth-child(2):hover { box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4); }
.social-links a:nth-child(3):hover { box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4); }
.social-links a:nth-child(4):hover { box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4); }
.social-links a:nth-child(5):hover { box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4); }

.footer-middle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-middle h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-middle h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    bottom: -2px;
    transition: width 0.3s ease;
}

.footer-links a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 0;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover::after {
    opacity: 1;
    transform: translateX(8px);
    margin-left: 8px;
}

.footer-extra {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-extra-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: var(--transition);
}

.footer-extra-card:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-5px);
}

.footer-extra h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-extra h5 i {
    color: var(--primary-color);
    font-size: 18px;
}

.footer-extra p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Footer Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Footer Floating Elements */
.footer-float {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.03;
    animation: float 6s ease-in-out infinite;
}

.footer-float-1 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.footer-float-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* =========================================
   Back to Top Button
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    color: var(--text-primary);
}

/* =========================================
   Page Header (Inner Pages)
   ========================================= */
.page-header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1)),
                url(../images/inner-bg.jpg) center/cover;
    padding: 180px 0 100px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-secondary);
}

/* =========================================
   About Page Styles
   ========================================= */
.about-intro {
    padding: 100px 0;
}

.stats-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.stats-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stats-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stats-box p {
    color: var(--text-secondary);
    margin: 0;
}

.values-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.values-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.values-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.values-card h5 {
    margin-bottom: 10px;
}

.values-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-info-card i {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-form .form-control {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.2);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    min-height: 150px;
}

.btn-submit {
    background: var(--gradient-1);
    color: var(--text-primary);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    color: var(--text-primary);
}

/* =========================================
   Portfolio/Work Grid
   ========================================= */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.portfolio-info span {
    color: var(--primary-color);
    font-size: 14px;
}

/* =========================================
   Careers Page
   ========================================= */
.job-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.job-card h4 {
    margin-bottom: 15px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.job-meta span {
    color: var(--text-secondary);
    font-size: 14px;
}

.job-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.job-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.btn-apply {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-apply:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--text-primary);
}

/* =========================================
   Client Logos
   ========================================= */
.client-logo {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: var(--transition);
}

.client-logo:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.client-logo img {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================================
   Blog Page
   ========================================= */
.blog-card-horizontal {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
}

.blog-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-horizontal .row {
    align-items: stretch;
}

.blog-card-horizontal .blog-image {
    height: 100%;
    min-height: 250px;
}

.blog-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-search .form-control {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 50px;
}

.sidebar-search .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

.category-list a:hover {
    color: var(--primary-color);
}

/* =========================================
   Responsive Styles
   ========================================= */
@media (max-width: 1199px) {
    .carousel-caption h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .top-bar-left {
        justify-content: center;
        text-align: center;
    }
    
    .top-bar-right {
        text-align: center;
        margin-top: 15px;
    }
    
    .navbar-collapse {
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .btn-whatsapp {
        margin: 15px 0 0 0;
        justify-content: center;
        width: 100%;
    }
    
    .carousel-caption h1 {
        font-size: 2.2rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .capabilities-content {
        margin-top: 30px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-logo,
    .footer-contact {
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .carousel-item {
        height: 100vh;
    }
    
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .carousel-caption h3 {
        font-size: 1rem;
    }
    
    .btn-connect {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .capabilities-content h3 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .carousel-caption h1 {
        font-size: 1.4rem;
    }
    
    .carousel-caption h3 {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .service-card,
    .feature-box,
    .why-card {
        padding: 25px 20px;
    }
    
    .footer-middle h4 {
        margin-top: 20px;
    }
}

/* =========================================
   Utility Classes
   ========================================= */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-1);
}

.bg-gradient-secondary {
    background: var(--gradient-2);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
                var(--gradient-1) border-box;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ========================================= */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large Devices (1200px - 1399px) */
@media (max-width: 1399px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .hero-slider .carousel-caption h1 { font-size: 3.5rem; }
}

/* Medium-Large Devices (992px - 1199px) */
@media (max-width: 1199px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-slider .carousel-caption h1 { font-size: 3rem; }
    .hero-slider .carousel-caption h3 { font-size: 1.3rem; }
    
    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 14px;
    }
    
    .btn-whatsapp {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    /* Typography */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    
    /* Navigation */
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid var(--border-color);
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 10px !important;
        display: block;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        padding-left: 20px;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .btn-whatsapp {
        margin: 15px 0 0 0;
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Section */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slider .carousel-caption {
        padding: 0 20px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider .carousel-caption h3 {
        font-size: 1.1rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 150px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Footer */
    .footer-top {
        text-align: center;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-middle h4 {
        margin-top: 20px;
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    /* Typography */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1rem; }
    p { font-size: 14px; }
    
    /* Container Padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Navigation */
    .navbar-brand .logo-text {
        font-size: 1.3rem;
    }
    
    /* Hero Section */
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-slider .carousel-caption h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-slider .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    /* Page Header */
    .page-header {
        padding: 130px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* Feature Boxes */
    .feature-box {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Cards */
    .testimonial-card,
    .blog-card,
    .service-card {
        padding: 25px 20px;
    }
    
    /* Buttons */
    .btn, .pulse-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    /* Footer */
    .footer-top .row > div {
        margin-bottom: 25px;
    }
    
    .footer-links {
        columns: 2;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    /* Typography */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    /* Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand .logo-text {
        font-size: 1.2rem;
    }
    
    .navbar-toggler {
        padding: 5px;
    }
    
    /* Hero Section */
    .hero-slider {
        height: 55vh;
        min-height: 400px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .hero-slider .carousel-caption h3 {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Page Header */
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.4rem;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    /* Cards & Boxes */
    .feature-box,
    .testimonial-card,
    .blog-card {
        margin-bottom: 20px;
    }
    
    /* Forms */
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 15px;
        font-size: 16px;
    }
    
    /* Footer */
    .footer-links {
        columns: 1;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Extra Small Devices (up to 400px) */
@media (max-width: 400px) {
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.2rem; }
    
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 1.3rem;
    }
    
    .btn, .pulse-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .navbar-brand .logo-text {
        font-size: 1rem;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
        min-height: 300px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .hero-slider .carousel-caption h3 {
        display: none;
    }
    
    .page-header {
        padding: 100px 0 30px;
    }
}

/* Print Styles */
@media print {
    .header-wrapper,
    .footer,
    .back-to-top,
    .btn-whatsapp {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }

    p,
    ul.text-secondary,
    ul.text-secondary li,
    .content-body li,
    .mv-points li {
        color: black !important;
    }

    .text-highlight,
    .keyword-highlight {
        color: var(--primary-color) !important;
        -webkit-text-fill-color: currentColor !important;
        background: none !important;
    }

    .text-highlight::after,
    .keyword-highlight::after {
        display: none;
    }
    
    .page-header {
        padding-top: 20px;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #444444;
        --text-secondary: #cccccc;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-slider .carousel-item {
        transition: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .testimonial-card:hover,
    .blog-card:hover,
    .feature-box:hover,
    .service-card:hover {
        transform: none;
    }
    
    .navbar-nav .nav-link:hover::after {
        width: 0;
    }
}

