/* ================================================
   WisualIT - Modern IT Solutions Website
   Complete Stylesheet
   ================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --secondary: #7c3aed;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --light: #f8fafc;
    --light-2: #f1f5f9;
    --light-3: #e2e8f0;
    --white: #ffffff;
    --text: #475569;
    --text-light: #94a3b8;
    --gradient: linear-gradient(135deg, var(--primary-light), var(--accent));
    --gradient-2: linear-gradient(135deg, var(--secondary), var(--accent));
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 10px 30px rgba(6, 182, 212, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    display: flex;
    gap: 8px;
}

.spinner > div {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.bounce1 { animation-delay: -0.32s; }
.bounce2 { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ---- Utility Classes ---- */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent) !important;
}

.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
}

.bg-dark-section {
    background: var(--dark);
}

.bg-light-section {
    background: var(--light);
}

/* ---- Buttons ---- */
.btn-accent {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    transition: var(--transition);
    z-index: -1;
}

.btn-accent:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover::before {
    left: 0;
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-left span {
    color: var(--text-light);
    margin-right: 24px;
}

.top-bar-left span i {
    color: var(--accent);
    margin-right: 6px;
}

.top-bar-right {
    text-align: right;
}

.top-bar-right a {
    color: var(--text-light);
    margin-left: 16px;
    font-size: 14px;
}

.top-bar-right a:hover {
    color: var(--accent);
}

/* ---- Navbar ---- */
#mainNavbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

#mainNavbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 8px;
    margin-top: 10px;
}

.dropdown-item {
    color: rgba(255,255,255,0.7);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent);
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-item span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Hero Floating Cards */
.hero-image-wrapper {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 16px 24px;
    border-radius: var(--radius);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--accent);
}

.floating-card span {
    font-weight: 600;
    font-size: 15px;
}

.card-1 {
    top: 30%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: 5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Swiper Custom */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
}

.heroSwiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

/* ---- Clients Marquee ---- */
.clients-marquee {
    background: var(--dark);
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.client-logo {
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.client-logo:hover {
    color: var(--accent);
}

.client-logo i {
    font-size: 24px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- About Section ---- */
.about-images {
    position: relative;
}

.about-img-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border: 5px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about-img-secondary img {
    border-radius: var(--radius-sm);
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.experience-badge h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.experience-badge span {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon i {
    font-size: 24px;
    color: var(--accent);
}

.feature-content h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    margin: 0;
    color: var(--text-light);
}

/* About Feature Boxes (about page) */
.about-feature-box {
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-feature-box i {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.about-feature-box h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.about-feature-box p {
    font-size: 14px;
    margin: 0;
    color: var(--text-light);
}

/* ---- Service Cards ---- */
.service-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(124,58,237,0.15));
    border-color: rgba(6, 182, 212, 0.3);
}

.service-icon-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.service-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    font-family: var(--font-primary);
    line-height: 1;
}

.service-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-tags li {
    padding: 4px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.1);
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--white);
    gap: 10px;
}

/* Service Detail List */
.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-detail-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.service-detail-list li i {
    color: var(--accent);
    font-size: 18px;
}

/* ---- Counter Section ---- */
.counter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.counter-card {
    background: var(--light);
    padding: 36px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-3);
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--white);
}

.counter-card h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 4px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ---- Accordion ---- */
.modern-accordion .accordion-item {
    background: var(--light);
    border: 1px solid var(--light-3);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.modern-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    box-shadow: none;
    padding: 16px 20px;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
}

.modern-accordion .accordion-button:focus {
    box-shadow: none;
}

.modern-accordion .accordion-body {
    font-size: 14px;
    color: var(--text);
    padding: 0 20px 16px;
}

/* ---- Portfolio Section ---- */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    background: transparent;
    border: 2px solid var(--light-3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.portfolio-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-link {
    transform: translateY(0);
}

.portfolio-link:hover {
    background: var(--white);
    color: var(--accent);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-cat {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info h5 {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* ---- Process Section ---- */
.process-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-3);
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.process-step {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(6, 182, 212, 0.1);
    font-family: var(--font-primary);
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}

.process-card h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 10px;
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author h6 {
    color: var(--white);
    margin-bottom: 2px;
    font-size: 15px;
}

.testimonial-author span {
    color: var(--accent);
    font-size: 13px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 60px;
    color: rgba(6, 182, 212, 0.1);
    line-height: 1;
}

.testimonialSwiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.3);
    opacity: 1;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 24px;
    border-radius: 6px;
}

/* ---- Team Section ---- */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 16px;
}

.team-social a {
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.team-info {
    padding: 20px;
}

.team-info h5 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.team-info span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
}

/* ---- Blog Section ---- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta span {
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta span i {
    margin-right: 4px;
    color: var(--accent);
}

.blog-content h5 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.blog-content h5 a {
    color: var(--dark);
}

.blog-content h5 a:hover {
    color: var(--accent);
}

.blog-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.blog-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    color: var(--primary);
    gap: 10px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid var(--light-3);
}

.sidebar-widget h5 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid var(--light-3);
}

.sidebar-categories li:last-child {
    border: none;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
}

.sidebar-categories a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.sidebar-categories a span {
    color: var(--text-light);
}

.recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.recent-post a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.recent-post a:hover {
    color: var(--accent);
}

.recent-post span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.sidebar-cta {
    background: var(--gradient) !important;
    color: var(--white);
    text-align: center;
    border: none !important;
}

.sidebar-cta h5 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.3) !important;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.8);
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 80px 0;
}

.cta-wrapper {
    background: var(--gradient);
    padding: 60px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-wrapper h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.cta-wrapper p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin: 0;
}

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(6,182,212,0.15) 0%, transparent 60%);
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.breadcrumb-item a {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.3);
}

/* ---- Contact Section ---- */
.contact-info-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-3);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}

.contact-info-card h5 {
    margin-bottom: 12px;
}

.contact-info-card p {
    color: var(--text);
    margin: 0;
    font-size: 15px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--light-3);
}

.contact-form-wrapper h3 {
    margin-bottom: 8px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 1px solid var(--light-3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.map-wrapper {
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 0 30px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: 50%;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--accent);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--light-3);
}

.timeline-year {
    display: inline-block;
    padding: 4px 16px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h5 {
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ---- Footer ---- */
.footer-section {
    background: var(--dark);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-widget p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-widget h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 4px;
}

.footer-contact li span {
    color: var(--text-light);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: var(--text-light);
    font-size: 14px;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--white);
    transform: translateY(-5px);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-padding {
        padding: 70px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-stats {
        gap: 24px;
    }
    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-wrapper {
        padding: 40px;
        text-align: center;
    }
    .about-img-secondary {
        width: 150px;
        right: -15px;
        bottom: -15px;
    }
    .timeline::before {
        left: 30px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }
    .timeline-item:nth-child(odd) {
        margin-left: 0;
        padding-left: 60px;
    }
    .timeline-item:nth-child(even) .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot {
        left: 20px;
        right: auto;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-text {
        font-size: 1rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .stat-item h3 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .cta-wrapper {
        padding: 30px;
    }
    .cta-wrapper h2 {
        font-size: 1.5rem;
    }
    .page-header {
        padding: 100px 0 40px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .counter-grid {
        grid-template-columns: 1fr;
    }
    .experience-badge {
        width: 90px;
        height: 90px;
        top: -10px;
        left: -10px;
    }
    .experience-badge h2 {
        font-size: 1.5rem;
    }
    .experience-badge span {
        font-size: 9px;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .navbar-collapse {
        background: var(--dark);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ---- Selection ---- */
::selection {
    background: var(--accent);
    color: var(--white);
}