/* ===== CSS VARIABLES ===== */
:root {
    --light-blue: #D9E7F4;
    --dark-blue: #6CA1D3;
    --orange: #DB8436;
    --black: #000000;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hero Section - Overlay with Background Image */
.hero.hero-overlay {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/dental-hero.jpg"); /* Desktop background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

.hero.hero-overlay .container {
    position: relative;
    z-index: 3;
}

.hero-inner {
    max-width: 650px;
    text-align: left;
    padding: 2rem 0;
}

/* Hero Badge */
.hero-inner .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: heroFadeIn 0.6s ease-out 0.1s both;
}

.hero-inner .hero-badge svg {
    width: 18px;
    height: 18px;
    color: #FFA500;
}

/* Hero Title */
.hero-inner .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    animation: heroFadeIn 0.6s ease-out 0.2s both;
}

.hero-inner .hero-title .highlight1 {
    color: #FFA500;
    display: block;
}

/* Hero Subtitle */
.hero-inner .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: heroFadeIn 0.6s ease-out 0.3s both;
}

/* Hero Features */
.hero-inner .hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: heroFadeIn 0.6s ease-out 0.4s both;
}

.hero-inner .hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.hero-inner .hero-feature svg {
    width: 22px;
    height: 22px;
    color: #FFA500;
    flex-shrink: 0;
}

/* Hero Buttons */
.hero-inner .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: heroFadeIn 0.6s ease-out 0.5s both;
}

.hero-inner .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-inner .btn-primary {
    background: #FFA500;
    color: #fff;
    border: 2px solid #FFA500;
}

.hero-inner .btn-primary:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

.hero-inner .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-inner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-inner .btn svg {
    width: 18px;
    height: 18px;
}

/* Fade in animation */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide old grid layout */
.hero-grid,
.hero-image,
.hero-shapes {
    display: none;
}

/* ========== TABLET RESPONSIVE (768px - 1024px) ========== */
@media (max-width: 1024px) {
    .hero.hero-overlay {
        min-height: 85vh;
    }

    .hero-inner {
        max-width: 600px;
    }

    .hero-inner .hero-title {
        font-size: 3rem;
    }

    .hero-inner .hero-subtitle {
        font-size: 1.0625rem;
    }
}

/* ========== MOBILE RESPONSIVE (max-width: 768px) ========== */
@media (max-width: 768px) {
    .hero.hero-overlay {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    /* Different background image for mobile */
    .hero-bg {
        background-image: url("images/dental-hero-mobile.jpg"); /* Mobile background */
        background-position: center right; /* Show right side of image */
    }

    /* Left-aligned gradient overlay for mobile */
    .hero-overlay-layer {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }

    .hero-inner {
        max-width: 100%;
        text-align: left; /* Keep left-aligned on mobile */
        padding: 1rem 0;
    }

    .hero-inner .hero-badge {
        font-size: 0.813rem;
        padding: 0.4rem 0.9rem;
    }

    .hero-inner .hero-badge svg {
        width: 16px;
        height: 16px;
    }

    .hero-inner .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }

    .hero-inner .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }

    .hero-inner .hero-features {
        align-items: flex-start; /* Left-align features */
        gap: 0.875rem;
        margin-bottom: 2rem;
    }

    .hero-inner .hero-feature {
        font-size: 0.938rem;
        justify-content: flex-start; /* Left-align */
    }

    .hero-inner .hero-feature svg {
        width: 20px;
        height: 20px;
    }

    .hero-inner .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
        align-items: flex-start; /* Left-align buttons */
    }

    .hero-inner .btn {
        width: auto;
        min-width: 200px;
        justify-content: center;
        padding: 0.938rem 1.5rem;
        font-size: 0.938rem;
    }
}

/* ========== SMALL MOBILE (max-width: 480px) ========== */
@media (max-width: 480px) {
    .hero.hero-overlay {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-bg {
        background-position: 70% center; /* Adjust position for smaller screens */
    }

    .hero-inner .hero-title {
        font-size: 1.875rem;
        line-height: 1.15;
    }

    .hero-inner .hero-subtitle {
        font-size: 0.938rem;
        margin-bottom: 1.5rem;
    }

    .hero-inner .hero-features {
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }

    .hero-inner .hero-feature {
        font-size: 0.875rem;
    }

    .hero-inner .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
        min-width: 180px;
    }
}

/* ========== EXTRA SMALL MOBILE (max-width: 360px) ========== */
@media (max-width: 360px) {
    .hero-inner .hero-title {
        font-size: 1.625rem;
    }

    .hero-inner .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-inner .hero-feature {
        font-size: 0.813rem;
    }

    .hero-inner .btn {
        min-width: 160px;
        font-size: 0.813rem;
    }
}


/* ===== DENTAL PRELOADER - REALISTIC GUM ===== */
/* ===== DENTAL PRELOADER - USING YOUR IMAGE ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.dental-loader {
    text-align: center;
}

.tooth-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooth-gum-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 35px rgba(108, 161, 211, 0.25));
    animation: toothBounce 1.4s ease-in-out infinite;
}

/* Sparkle shine effect */
.sparkle-effect {
    position: absolute;
    width: 180%;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0) 15%,
        rgba(255, 255, 255, 0.9) 35%,
        rgba(219, 132, 54, 1) 50%, 
        rgba(255, 255, 255, 0.9) 65%,
        rgba(255, 255, 255, 0) 85%,
        transparent 100%);
    top: 45%;
    left: -40%;
    animation: shineMove 3s ease-in-out infinite;
    filter: blur(4px);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(219, 132, 54, 0.7);
    pointer-events: none;
}

/* Loading text animation */
.loading-text {
    font-size: 28px;
    font-weight: 700;
    color: #6CA1D3;
    letter-spacing: 3px;
    font-family: 'Poppins', sans-serif;
}

.loading-text span {
    display: inline-block;
    animation: letterBounce 1.5s ease-in-out infinite;
}

.loading-text span:nth-child(1) { animation-delay: 0s; }
.loading-text span:nth-child(2) { animation-delay: 0.1s; }
.loading-text span:nth-child(3) { animation-delay: 0.2s; }
.loading-text span:nth-child(4) { animation-delay: 0.3s; }
.loading-text span:nth-child(5) { animation-delay: 0.4s; }
.loading-text span:nth-child(6) { animation-delay: 0.5s; }
.loading-text span:nth-child(7) { animation-delay: 0.6s; }

.dots span {
    animation: dotBounce 1.5s ease-in-out infinite;
}

.dots span:nth-child(1) { animation-delay: 0.7s; }
.dots span:nth-child(2) { animation-delay: 0.8s; }
.dots span:nth-child(3) { animation-delay: 0.9s; }

/* Animations */
@keyframes toothBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.08);
    }
}

@keyframes shineMove {
    0% {
        transform: translateX(-200%) rotate(-25deg);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(300%) rotate(-25deg);
        opacity: 0;
    }
}

@keyframes letterBounce {
    0%, 100% {
        transform: translateY(0);
        color: #6CA1D3;
    }
    50% {
        transform: translateY(-12px);
        color: #DB8436;
    }
}

@keyframes dotBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-12px);
        opacity: 1;
        color: #DB8436;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .tooth-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .loading-text {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .tooth-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .loading-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
}


/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--dark-blue);
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--black);
}

.lang-btn:hover {
    background: var(--light-blue);
    border-color: var(--orange);
}

.lang-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-blue);
}

#currentLang {
    font-size: 14px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--black);
    transition: var(--transition);
    font-weight: 500;
}

.lang-option:first-child {
    border-radius: 10px 10px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 10px 10px;
}

.lang-option:hover {
    background: var(--light-blue);
    color: var(--dark-blue);
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* Responsive Language Switcher */
@media (max-width: 968px) {
    .language-switcher {
        width: 100%;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
    }

    .lang-dropdown {
        position: relative;
        top: 10px;
        width: 100%;
        box-shadow: none;
        background: var(--light-gray);
    }
}


/* ===== NAVIGATION ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== SOFTWARE SECTION (Dental Designs Page) ===== */
.software-section {
    padding: 80px 0;
    background: var(--white);
}

/* ===== CAD SERVICES PAGE SECTION ===== */
.cad-services-page {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f3fa 0%, var(--light-blue) 100%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 70px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu li{
    font-weight: 500;
    color: var(--black);
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dark-blue), var(--orange));
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.btn-submit{
    background: linear-gradient(135deg, var(--orange), #e69654) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(219, 132, 54, 0.3) !important;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 132, 54, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 161, 211, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(108, 161, 211, 0.4);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--dark-blue);
}

.btn-secondary:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-cta {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    font-size: 18px;
    padding: 16px 40px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--light-blue), #c4ddf0);
    color: var(--dark-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title.light {
    color: var(--white);
}

.highlight {
    background:var(--dark-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.highlight1 {
    background:var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-light {
    color: var(--orange);
}

.section-subtitle {
    color: var(--gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle1 {
    color: var(--white);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--dark-blue);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--dark-blue);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--dark-blue);
    bottom: -50px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--dark-blue);
    top: 50%;
    left: 50%;
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-blue);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    font-size: 14px;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--dark-blue);
    fill: none;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--white);
}

.hero-feature svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark-blue);
    background: var(--white);
    border-radius: 50%;
    padding: 4px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: none;
    align-items: center;
    gap: 15px;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    bottom: 30px;
    left: -30px;
}

.card-2 {
    top: 30px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), #c4ddf0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
}

.card-desc {
    font-size: 13px;
    color: var(--gray);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--white);
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), #c4ddf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--dark-blue);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--dark-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--dark-blue);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-badge-float{
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--orange), #e69654);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    text-align: center;
}

.badge-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
}

.lead-text {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.about-point {
    display: flex;
    gap: 20px;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
    stroke-width: 3;
}

.point-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.point-content p {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--dark-blue), var(--orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card.card-orange:hover {
    border-color: var(--orange);
}

.feature-card.card-blue:hover {
    border-color: var(--dark-blue);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: var(--light-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-orange .feature-icon {
    background: linear-gradient(135deg, var(--dark-blue), #5a8fc4);
}

.card-blue .feature-icon {
    background: linear-gradient(135deg, var(--dark-blue), #5a8fc4);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== CAD SERVICES SECTION ===== */
/* ===== CAD SERVICES SECTION (UPDATED) ===== */
.cad-services {
    padding: 100px 0;
    background: var(--dark-blue);
}

.software-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.software-item {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.software-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.software-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.software-item:hover .software-logo {
    background: var(--light-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.software-item h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.software-item p {
    color: var(--gray);
    font-size: 15px;
}

.software-divider {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
}

/* Services Grid with Images */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #efefef, #f3f3f3);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 161, 211, 0.85), rgba(219, 132, 54, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-icon {
    transform: scale(1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--orange);
    fill: none;
}

.service-content {
    padding: 30px 25px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.service-content > p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-details span {
    padding: 8px 15px;
    background: var(--light-blue);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-blue);
    display: inline-block;
    border-left: 3px solid var(--orange);
}

/* Responsive Updates for Services */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-image {
        height: 220px;
    }

    .software-showcase {
        padding: 40px 30px;
    }

    .software-logo {
        height: 100px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 200px;
    }

    .software-showcase {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .software-divider {
        transform: rotate(90deg);
    }

    .software-logo {
        height: 90px;
    }
    

}


/* ===== WORKFLOW SECTION ===== */
.workflow-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #5a8fc4 100%);
    position: relative;
    overflow: hidden;
}

.workflow-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.workflow-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.timeline-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-10px);
}

.timeline-time {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), #e69654);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(219, 132, 54, 0.3);
}

.timeline-step {
    text-align: center;
    color: var(--light-blue);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-blue), #5a8fc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.timeline-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.timeline-card h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.timeline-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-card ul li {
    padding-left: 25px;
    color: var(--gray);
    position: relative;
    font-size: 15px;
}

.timeline-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.timeline-arrow {
    flex-shrink: 0;
}

.timeline-arrow svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

/* ===== CUSTOMERS SECTION ===== */
.customers-section {
    padding: 100px 0;
    background: var(--white);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.customer-card {
    background: var(--light-gray);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.customer-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.customer-logo-box {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

.customer-card p {
    color: var(--gray);
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: var(--dark-blue);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #5a8fc4 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* ===== DESIGNS SECTION ===== */
.designs-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.design-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.design-image {
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #efefef, #f3f3f3);
    position: relative;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.design-card:hover .design-image img {
    transform: scale(1.1);
}

.design-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange), #e69654);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(219, 132, 54, 0.3);
}

.design-content {
    padding: 35px 30px;
}

.design-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.design-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.design-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), #c4ddf0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-blue);
}

.design-content > p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.design-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.design-features li {
    padding: 12px 15px;
    padding-left: 40px;
    background: var(--light-gray);
    border-radius: 10px;
    color: var(--black);
    position: relative;
    font-size: 15px;
    font-weight: 500;
    border-left: 3px solid var(--orange);
}

.design-features li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--orange);
    font-weight: 700;
    font-size: 18px;
}

/* ===== PROCESS VIDEO SECTION ===== */
.process-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background: var(--black);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark-blue);
    color: var(--white);
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 35px;
    height: 35px;
    fill: var(--orange);
    margin-left: 5px;
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.info-card:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-blue), #5a8fc4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
}

.quick-links-card {
    background: linear-gradient(135deg, var(--light-blue), #c4ddf0);
    padding: 30px;
    border-radius: 15px;
}

.quick-links-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--black);
    transition: var(--transition);
}

.quick-link:last-child {
    margin-bottom: 0;
}

.quick-link:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateX(5px);
}

.quick-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.quick-link:hover svg {
    stroke: var(--white);
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 50px 40px;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.form-intro {
    color: var(--gray);
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dark-blue);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
}

.footer-section p {
    color: white;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    .about-badge-float{
   
    display: none;
}

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .workflow-timeline {
        flex-direction: column;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .customers-grid {
        grid-template-columns: 1fr;
    }

    .designs-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 40px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 200px;
    }

    .software-showcase {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }
}
/* ===== CEO SECTION ===== */
.ceo-section {
    padding: 100px 0;
    background: var(--white);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.ceo-card {
    background: linear-gradient(135deg, var(--dark-blue), #5a8fc4);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.ceo-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.ceo-image {
    width: 250px;
    background-color: white;
    height: 250px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-info {
    position: relative;
    z-index: 1;
}

.ceo-info h3 {
    font-size: 25px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.ceo-title {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.ceo-content {
    background: var(--light-gray);
    padding: 50px 40px;
    border-radius: 20px;
}

.ceo-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.highlight-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-blue);
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 3;
}

.highlight-item span {
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
    font-weight: 500;
}

.ceo-company-info {
    padding: 30px;
    background: linear-gradient(135deg, var(--light-blue), #c4ddf0);
    border-radius: 15px;
    border-left: 5px solid var(--orange);
}

.ceo-company-info h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.ceo-company-info p {
    font-size: 15px;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 500;
}

.ceo-company-info p:last-child {
    margin-bottom: 0;
}

/* Responsive CEO Section */
@media (max-width: 968px) {
    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-card {
        padding: 40px 30px;
    }

    .ceo-image {
        width: 200px;
        height: 200px;
    }

    .ceo-info h6 {
        font-size: 32px;
    }

    .ceo-content {
        padding: 40px 30px;
    }

    .highlight-item {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .ceo-card {
        padding: 30px 20px;
    }

    .ceo-image {
        width: 180px;
        height: 180px;
    }

    .ceo-info h3 {
        font-size: 24px;
    }

    .ceo-content {
        padding: 30px 20px;
    }

    .ceo-company-info {
        padding: 20px;
    }
}
/* ===== DENTAL DESIGNS PAGE - WHITE THEME WITH NEW CLASS NAMES ===== */

/* Hero Banner Section - White Background */
.designs-hero-banner {
    background: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--light-blue);
}

.designs-hero-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--light-blue);
    opacity: 0.3;
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.hero-banner-wrapper {
    position: relative;
    z-index: 1;
}

.portfolio-label {
    display: inline-block;
    padding: 8px 24px;
    background: var(--light-blue);
    color: var(--dark-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-main-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.banner-description {
    font-size: 20px;
    color: var(--black);
}

/* Digital Services Showcase Section */
.digital-services-showcase {
    padding: 100px 0;
    background: var(--white);
}

.showcase-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.services-tag {
    display: inline-block;
    padding: 8px 24px;
    background: var(--light-blue);
    color: var(--dark-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.gradient-text-primary {
    background: var(--dark-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-intro-text {
    color: var(--gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Software Platforms Display */
.software-platforms-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    padding: 50px;
    background: var(--light-gray);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--light-blue);
}

.platform-box {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.platform-logo-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.platform-logo-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.platform-box:hover .platform-logo-container {
    background: var(--light-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.platform-box h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.platform-box p {
    color: var(--gray);
    font-size: 15px;
}

.platform-separator {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
}

/* Services Catalog Grid */
.services-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.catalog-item-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--light-blue);
}

.catalog-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.item-visual-area {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #efefef, #f3f3f3);
}

.item-visual-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-item-card:hover .item-visual-area img {
    transform: scale(1.1);
}

.visual-hover-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 161, 211, 0.85), rgba(219, 132, 54, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.catalog-item-card:hover .visual-hover-layer {
    opacity: 1;
}

.hover-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.catalog-item-card:hover .hover-icon-circle {
    transform: scale(1);
}

.hover-icon-circle svg {
    width: 40px;
    height: 40px;
    stroke: var(--orange);
    fill: none;
}

.item-info-block {
    padding: 30px 25px;
}

.item-info-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.item-info-block > p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.item-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-features-list span {
    padding: 8px 15px;
    background: var(--light-blue);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-blue);
    display: inline-block;
    border-left: 3px solid var(--orange);
}

/* Portfolio Gallery Zone */
.portfolio-gallery-zone {
    padding: 100px 0;
    background: var(--light-gray);
}

.gallery-header-section {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-category-tag {
    display: inline-block;
    padding: 8px 24px;
    background: var(--light-blue);
    color: var(--dark-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-main-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, var(--dark-blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subheading-text {
    color: var(--gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Portfolio Items Layout */
.portfolio-items-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-project-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-blue);
}

.portfolio-project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.project-thumbnail-area {
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-blue), #c4ddf0);
    position: relative;
}

.project-thumbnail-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-project-card:hover .project-thumbnail-area img {
    transform: scale(1.1);
}

.premium-quality-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange), #e69654);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(219, 132, 54, 0.3);
}

.project-details-section {
    padding: 35px 30px;
}

.project-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-title-row h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
}

.project-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), #c4ddf0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-blue);
}

.project-details-section > p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.project-specs-listing {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-specs-listing li {
    padding: 12px 15px;
    padding-left: 40px;
    background: var(--light-gray);
    border-radius: 10px;
    color: var(--black);
    position: relative;
    font-size: 15px;
    font-weight: 500;
    border-left: 3px solid var(--dark-blue);
}

.project-specs-listing li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--orange);
    font-weight: 700;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .banner-main-title {
        font-size: 42px;
    }

    .services-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .item-visual-area {
        height: 220px;
    }

    .software-platforms-display {
        padding: 40px 30px;
    }

    .platform-logo-container {
        height: 100px;
    }

    .portfolio-items-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .banner-main-title {
        font-size: 36px;
    }

    .services-catalog-grid {
        grid-template-columns: 1fr;
    }

    .item-visual-area {
        height: 200px;
    }

    .software-platforms-display {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .platform-separator {
        transform: rotate(90deg);
    }

    .platform-logo-container {
        height: 90px;
    }
}


