/* DeepNative - Main Stylesheet */
/* Premium, Sleek Design with Soft Lavender/Purple Theme */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Soft Lavender/Purple Palette (from color.jpg) */
    --primary: #9B8FC8;
    --primary-light: #C4B8E0;
    --primary-lighter: #E8E4F2;
    --primary-dark: #7B6CAE;
    --primary-darker: #5D4F8C;

    /* Secondary - Dark for contrast */
    --secondary: #2D3142;
    --secondary-light: #4F5565;

    /* Gradient Button Colors */
    --btn-gradient-1: linear-gradient(135deg, #C4B8E0 0%, #9B8FC8 50%, #7B6CAE 100%);
    --btn-gradient-2: linear-gradient(135deg, #E8E4F2 0%, #C4B8E0 50%, #9B8FC8 100%);
    --btn-gradient-hover: linear-gradient(135deg, #7B6CAE 0%, #5D4F8C 50%, #4A3D6D 100%);
    --btn-gradient-secondary: linear-gradient(135deg, #FFFFFF 0%, #F8F6FC 50%, #E8E4F2 100%);
    --btn-gradient-dark: linear-gradient(135deg, #3D4155 0%, #2D3142 50%, #1D2030 100%);

    /* Backgrounds - Soft lavender gradient matching color.jpg */
    --bg-gradient: linear-gradient(180deg, #F5F3F9 0%, #EAE6F2 40%, #DCD5EB 100%);
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-card: rgba(255, 255, 255, 0.98);
    --bg-dark: #2D3142;
    --bg-section: linear-gradient(180deg, #FFFFFF 0%, #F8F6FC 100%);
    --bg-section-alt: linear-gradient(180deg, #F8F6FC 0%, #EAE6F2 100%);

    /* Text Colors */
    --text-dark: #2D3142;
    --text-medium: #4F5565;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;

    /* Accent Colors */
    --accent-dark: #2D3142;
    --accent-success: #10B981;
    --accent-warning: #F59E0B;
    --accent-info: #3B82F6;

    /* Shadows - Soft purple tinted */
    --shadow-sm: 0 2px 8px rgba(155, 143, 200, 0.08);
    --shadow-md: 0 4px 24px rgba(155, 143, 200, 0.12);
    --shadow-lg: 0 8px 40px rgba(155, 143, 200, 0.16);
    --shadow-xl: 0 20px 60px rgba(155, 143, 200, 0.2);
    --shadow-hover: 0 16px 48px rgba(155, 143, 200, 0.25);
    --shadow-btn: 0 4px 20px rgba(123, 108, 174, 0.35);
    --shadow-btn-hover: 0 8px 30px rgba(123, 108, 174, 0.45);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.05);

    /* Transitions - Smooth */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 50%;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-gradient);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== ENHANCED BUTTONS WITH GRADIENTS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--btn-gradient-hover);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--btn-gradient-1);
    color: white;
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-btn-hover);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1);
}

.btn-secondary {
    background: var(--btn-gradient-secondary);
    color: var(--primary-dark);
    border: 2px solid transparent;
    background-origin: border-box;
    box-shadow: var(--shadow-sm), inset 0 0 0 2px var(--primary-light);
}

.btn-secondary::before {
    background: var(--btn-gradient-2);
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-btn);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-outline::before {
    background: var(--btn-gradient-1);
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-btn);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-normal);
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-dark);
    background: var(--primary-lighter);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 12px 24px !important;
    font-size: 0.85rem !important;
    border-radius: var(--radius-xl) !important;
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-normal);
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 160px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--primary-lighter) 0%, transparent 70%);
    opacity: 0.4;
}

.page-hero h1 {
    position: relative;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    position: relative;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--primary-lighter) 0%, transparent 70%);
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, var(--primary-light) 0%, transparent 70%);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.hero h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ===== VISION MISSION SECTION ===== */
.vision-mission {
    position: relative;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vm-card h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.vm-card p {
    font-size: 1.05rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-lighter);
    opacity: 0.5;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-dark);
}

.service-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== TRUSTED BRANDS RIBBON ===== */
.brands-ribbon {
    background: #ffffff !important;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.brands-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 40px;
}

.brands-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding-right: 40px;
    background: #ffffff !important;
    z-index: 2;
}

.brands-slider {
    flex: 1;
    overflow: hidden !important;
    position: relative;
}

.brands-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 80px !important;
    width: max-content !important;
    animation: scroll 40s linear infinite !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.brand-logo img {
    height: 45px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ===== WORK GALLERY CAROUSEL SECTION ===== */
.work-gallery {
    background: var(--bg-section);
    padding: var(--section-padding);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(45, 49, 66, 0.95) 0%, rgba(45, 49, 66, 0.7) 60%, transparent 100%);
    color: white;
}

.carousel-caption h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.carousel-caption p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
}

/* Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover svg {
    stroke: white;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-caption {
        padding: 30px 20px 25px;
    }

    .carousel-caption h4 {
        font-size: 1.1rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* ===== VALUES SECTION ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-gradient-1);
    border-radius: var(--radius-full);
    margin: 0 auto 25px;
    box-shadow: var(--shadow-btn);
}

.value-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.value-card h4 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.value-card p {
    font-size: 0.9rem;
}

/* ===== TEAM SECTION ===== */
.team {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--btn-gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: contain;
    background: linear-gradient(to bottom, #f8f6fc 0%, #e8e4f2 100%);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232, 132, 95, 0.9) 0%, rgba(232, 132, 95, 0.3) 40%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-image-overlay {
    opacity: 1;
}

.team-info {
    padding: 30px 25px;
    position: relative;
}

.team-info h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.team-info p {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team card for 3 members */
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== FOUNDER SECTION ===== */
.founder {
    background: linear-gradient(135deg, var(--bg-white) 0%, #FEF7F4 100%);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-lighter) 0%, transparent 70%);
    opacity: 0.4;
    border-radius: 50%;
}

.founder-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.founder-image {
    position: relative;
}

.founder-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.founder-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 92, 168, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.founder-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.founder-image:hover img {
    transform: scale(1.03);
}

.founder-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(107, 92, 168, 0.95) 0%, rgba(90, 77, 150, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 25px 30px;
    z-index: 2;
}

.founder-info h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.founder-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.founder-text {
    padding-top: 20px;
}

.founder-text h2 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.founder-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--btn-gradient-1);
    border-radius: 2px;
}

.founder-text>p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 35px;
    color: var(--text-light);
}

.achievements {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.achievements h4 {
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievements h4::before {
    content: '🏆';
    font-size: 1.2rem;
}

.achievements ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achievements li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    padding: 12px 15px;
    background: linear-gradient(135deg, #F8F6FC 0%, #F5F3FA 100%);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.achievements li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.achievements li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--btn-gradient-1);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Founder Section Responsive */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 320px 1fr;
        gap: 50px;
    }

    .founder-image img {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-image img {
        height: 400px;
    }

    .achievements ul {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--btn-gradient-1);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta svg {
    width: 14px;
    height: 14px;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-read-more:hover {
    gap: 10px;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

/* ===== SINGLE BLOG POST ===== */
.blog-single {
    background: var(--bg-white);
    padding: 60px 0;
}

.blog-single-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-single-header {
    margin-bottom: 40px;
}

.blog-single-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-single-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-single-meta svg {
    width: 16px;
    height: 16px;
}

.blog-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.blog-single-body {
    font-size: 1.1rem;
    line-height: 1.9;
}

.blog-single-body p {
    margin-bottom: 1.5rem;
}

.blog-single-body h2,
.blog-single-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-single-body ul,
.blog-single-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-single-body li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.blog-single-body ol li {
    list-style: decimal;
}

/* ===== CONTACT SECTION ===== */
.contact {
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info {
    background: var(--btn-gradient-1);
    padding: 60px 50px;
    color: white;
}

.contact-info h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-item-text h5 {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.8;
}

.contact-item-text p {
    color: white;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: white;
    transform: translateY(-3px);
}

.social-link:hover svg {
    color: var(--primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: white;
    transition: var(--transition-normal);
}

.contact-form {
    padding: 60px 50px;
}

.contact-form h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    border: 2px solid #E5E5E5;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 126, 200, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #2D2D2D 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.pagination a:hover,
.pagination span.active {
    background: var(--btn-gradient-1);
    color: white;
    box-shadow: var(--shadow-btn);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 20px;
    }

    /* Mobile Navigation */
    .nav {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 10px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        z-index: 1000;
        margin: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Mobile overlay */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
    }

    /* Hero Section */
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
        text-align: center;
    }

    .hero p {
        font-size: 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Brands Ribbon Mobile */
    .brands-ribbon {
        padding: 25px 15px;
    }

    .brands-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .brands-label {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
        text-align: center;
    }

    .brands-logos {
        gap: 25px;
        justify-content: center;
    }

    .brand-logo img {
        height: 45px;
    }

    /* Page Hero */
    .page-hero {
        padding: 100px 20px 40px;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .page-hero p {
        text-align: center;
    }

    /* Grid Layouts */
    .about-content,
    .vision-mission-grid,
    .services-grid,
    .blog-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* About Section Mobile */
    .about-text {
        text-align: center;
    }

    .about-text .section-label,
    .about-text h2,
    .about-text p {
        text-align: center;
    }

    .about-text .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-header h2,
    .section-header p {
        text-align: center;
    }

    .section-label {
        font-size: 0.75rem;
        text-align: center;
        display: block;
    }

    /* Cards */
    .service-card,
    .value-card {
        padding: 25px 20px;
        text-align: center;
    }

    .service-card h4,
    .service-card p,
    .value-card h4,
    .value-card p {
        text-align: center;
    }

    .service-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        margin-left: auto;
        margin-right: auto;
    }

    .value-icon svg {
        width: 28px;
        height: 28px;
    }

    /* CTA Sections */
    .cta {
        text-align: center;
    }

    .cta h2,
    .cta p {
        text-align: center;
    }

    .cta .btn {
        margin-left: auto;
        margin-right: auto;
    }

    /* Vision Mission */
    .vm-card {
        text-align: center;
    }

    .vm-card h3,
    .vm-card p {
        text-align: center;
    }

    /* Founder Section */
    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .founder-image img {
        height: 350px;
    }

    .founder-text {
        text-align: center;
    }

    .founder-text p {
        text-align: center;
    }

    .achievements li {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    /* Blog */
    .blog-card .blog-content {
        padding: 20px;
        text-align: center;
    }

    .blog-card h3,
    .blog-card p {
        text-align: center;
    }

    .blog-read-more {
        justify-content: center;
    }

    .blog-single-content {
        padding: 0 15px;
    }

    /* Contact */
    .contact-info,
    .contact-form {
        padding: 30px 25px;
        text-align: center;
    }

    .contact-info h3,
    .contact-info p {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    /* All buttons centered */
    .text-center .btn,
    section .btn {
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        order: -1;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h4 {
        text-align: center;
    }

    .footer-links ul {
        padding: 0;
        text-align: center;
    }

    .footer-links li {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 20px 15px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .founder-info {
        padding: 20px;
    }

    .founder-info h4 {
        font-size: 1.2rem;
    }

    .achievements {
        padding: 20px;
    }

    .team-image img {
        height: 280px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-white {
    background: var(--bg-white);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}