/* ============================================
   TECHSOFT SOLUTIONS - COMPLETE STYLESHEET
   Version: 1.0
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ========================================
       BRAND COLORS - Logo Inspired
       ======================================== */
    --primary-color: #c5a071;           /* Brand bronze/copper */
    --primary-hover: #b08d5f;           /* Darker bronze for interactions */
    --primary-light: #d4b58a;           /* Light bronze accent */
    
    --secondary-color: #1A1A2E;         /* Deep navy/charcoal */
    --secondary-hover: #0F0F1E;         /* Darker navy */
    --secondary-light: #2D2D44;         /* Light navy */
    
    --accent-color: #c5a071;            /* Brand bronze accent */
    --accent-hover: #b08d5f;            /* Darker bronze */
    
    /* ========================================
       MODERN NEUTRALS
       ======================================== */
    --dark-color: #1A1A2E;              /* Professional dark */
    --dark-medium: #2D2D44;             /* Medium dark for headers */
    --dark-light: #4A4A68;              /* Light dark for subheaders */
    
    --light-color: #FAF8F5;             /* Warm light background */
    --light-medium: #F5F1EB;            /* Warm medium light for sections */
    --white: #FFFFFF;                   /* Pure white */
    --bronze-light: rgba(197, 160, 113, 0.08);  /* Light bronze tint */
    
    --text-color: #1A1A2E;              /* Deep text color */
    --text-secondary: #4A4A68;          /* Secondary text */
    --text-muted: #6C757D;              /* Muted text */
    
    --border-color: #DEE2E6;            /* Professional borders */
    --border-light: #E9ECEF;            /* Light borders */
    
    /* ========================================
       SEMANTIC COLORS
       ======================================== */
    --success-color: #10B981;           /* Modern green */
    --success-light: #D1FAE5;
    
    --warning-color: #F59E0B;           /* Modern amber */
    --warning-light: #FEF3C7;
    
    --error-color: #EF4444;             /* Modern red */
    --error-light: #FEE2E2;
    
    --info-color: #3B82F6;              /* Modern blue */
    --info-light: #DBEAFE;
    
    /* ========================================
       BRAND GRADIENTS
       ======================================== */
    --gradient: linear-gradient(135deg, #c5a071 0%, #b08d5f 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    --gradient-hero: linear-gradient(135deg, rgba(197, 160, 113, 0.95) 0%, rgba(176, 141, 95, 0.85) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.9) 100%);
    
    /* ========================================
       MODERN SHADOWS
       ======================================== */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* ========================================
       MODERN TYPOGRAPHY
       ======================================== */
    --font-primary: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'IBM Plex Serif', Georgia, serif;
    
    /* ========================================
       MODERN SPACING & RADIUS
       ======================================== */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION - COMPLETE
   ============================================ */
.navbar {
    background: #fffaef;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    z-index: 1001;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: var(--secondary-color);
}

.logo i {
    font-size: 2rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Consultation Button in Navbar */
.nav-cta {
    margin-left: 1rem;
}

.btn-consultation {
    background: linear-gradient(135deg, #890000 0%, #710000 100%);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(118, 0, 0, 0.3);
}

.btn-consultation i {
    font-size: 16px;
    animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: var(--white);
}

.nav-cta a::after {
    display: none;
}

/* Dropdown Toggle Icon */
.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s;
    margin-left: 3px;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 25px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.dropdown-item::after {
    display: none;
}

.dropdown-item i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bronze-light);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.dropdown-item:hover {
    background: var(--bronze-light);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    background: var(--primary-color);
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
} /* Added closing brace and comment marker */

/* ============================================
   HERO BANNER - PROFESSIONAL STATIC DESIGN
   ============================================ */
.hero-banner {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: linear-gradient(53deg, rgb(79 0 0 / 75%) 0%, rgb(84 50 8 / 90%) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 120px 0 100px;
}

.hero-text-wrapper {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 113, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 160, 113, 0.3);
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
}

.hero-buttons .btn i {
    font-size: 18px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ============================================
   SLIDER SECTION - WITH IMAGES
   ============================================ */
.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--dark-color);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Fallback gradients if images don't load */
.slide:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slide:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
    position: relative;
    z-index: 2;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
    text-shadow: none;
    font-family: var(--font-heading);
}

.slide-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    animation: slideInLeft 1s ease-out 0.2s both;
    line-height: 1.7;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
    border-radius: 0 5px 5px 0;
}

.slider-btn.next {
    right: 20px;
    border-radius: 5px 0 0 5px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    width: 35px;
    border-radius: 10px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #ef4444;
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background:#1a1a2e;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ============================================
   WELCOME SECTION
   ============================================ */
/* Curve Divider */
.curve-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.curve-divider svg {
    position: relative;
    display: block;
    width: 100%;
   /* height: 120px;*/
}

.curve-bottom {
    bottom: -1px;
}

.slider {
    position: relative;
}

.welcome-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F1EB 100%);
    position: relative;
}

.welcome-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* ============================================
   SERVICES HOME SECTION
   ============================================ */
.services-home {
    padding: 100px 0;
    background-color: #000000;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cg %3E%3Ccircle fill='%23000000' cx='400' cy='400' r='600'/%3E%3Ccircle fill='%23230046' cx='400' cy='400' r='500'/%3E%3Ccircle fill='%232f0052' cx='400' cy='400' r='400'/%3E%3Ccircle fill='%233b075e' cx='400' cy='400' r='300'/%3E%3Ccircle fill='%2348156a' cx='400' cy='400' r='200'/%3E%3Ccircle fill='%23552277' cx='400' cy='400' r='100'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.service-box {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.service-box:hover .service-icon-box {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-icon-box i {
    font-size: 2.5rem;
    color: white;
}

.service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.service-box p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.service-box:hover .service-link {
    gap: 15px;
}

.service-link i {
    font-size: 0.85rem;
}

/* AI Service - Featured */
.service-box.featured-service {
    position: relative;
    border: 2px solid #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    }
}

.service-box.featured-service:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border-color: #764ba2;
}

.service-box.featured-service .service-icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-box.featured-service:hover .service-icon-box {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Service Box Color Variations */
.service-box:nth-child(1) .service-icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-box:nth-child(2) .service-icon-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-box:nth-child(3) .service-icon-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-box:nth-child(4) .service-icon-box {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-box:nth-child(5) .service-icon-box {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-box:nth-child(6) .service-icon-box {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-box:nth-child(7) .service-icon-box {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.service-box:nth-child(8) .service-icon-box {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.service-box:nth-child(9) .service-icon-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.service-box:nth-child(10) .service-icon-box {
    background: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%);
}

.service-box:nth-child(11) .service-icon-box {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.service-box:nth-child(12) .service-icon-box {
    background: linear-gradient(135deg, #f77062 0%, #fe5196 100%);
}

.service-box:nth-child(13) .service-icon-box {
    background: linear-gradient(135deg, #c471f5 0%, #fa71cd 100%);
}

.service-box:nth-child(14) .service-icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

/* Animation for service boxes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-box {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }
.service-box:nth-child(5) { animation-delay: 0.5s; }
.service-box:nth-child(6) { animation-delay: 0.6s; }
.service-box:nth-child(7) { animation-delay: 0.7s; }
.service-box:nth-child(8) { animation-delay: 0.8s; }
.service-box:nth-child(9) { animation-delay: 0.9s; }
.service-box:nth-child(10) { animation-delay: 1s; }
.service-box:nth-child(11) { animation-delay: 1.1s; }
.service-box:nth-child(12) { animation-delay: 1.2s; }
.service-box:nth-child(13) { animation-delay: 1.3s; }
.service-box:nth-child(14) { animation-delay: 1.4s; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bronze-light);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 120px 0 80px;
    background: var(--primary-color);
    background-color: #330033;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23404' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23505'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Overview */
.about-overview {
    padding: 80px 0;
    background: white;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.about-image i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.about-stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mini-stat {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.mini-stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mini-stat p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Mission Vision Values */
.mission-vision {
    padding: 80px 0;
    background: var(--light-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.mv-card p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 10px 0;
    line-height: 1.6;
    color: var(--text-color);
}

.values-list strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 120px;
}

/* Company Timeline */
.company-timeline {
    padding: 80px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    /*width: 50%;*/
    padding: 0 40px;
    margin-bottom: 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

/*.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #667eea;
    border-radius: 50%;
    z-index: 1;
}*/

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-content {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Why Choose About */
.why-choose-about {
    padding: 80px 0;
    background: var(--light-color);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.choose-item {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.choose-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.choose-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.choose-item p {
    line-height: 1.7;
    color: var(--text-color);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo i {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Company Stats */
.company-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.stat-item-about {
    text-align: center;
}

.stat-item-about i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-item-about h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item-about p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: var(--light-color);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.cert-item {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-item i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cert-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cert-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Testimonials About */
.testimonials-about {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-color);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.author-info h4 {
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.author-info p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Alert Messages */
.alert {
    padding: 15px 0;
    margin-bottom: 20px;
    animation: slideDown 0.5s ease-out;
}

.alert.alert-success {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.alert.alert-error {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.alert .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.2rem;
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links-contact a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.required {
    color: #dc3545;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Map Section */
.map-section {
    height: 450px;
    background: var(--light-color);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: var(--light-color);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.quick-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quick-contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quick-contact-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.quick-contact-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Introduction */
.services-intro {
    padding: 60px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* All Services Section */
.all-services {
    padding: 80px 0;
    background: var(--light-color);
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.category-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.category-card > p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-color);
}

.category-services {
    list-style: none;
    padding: 0;
}

.category-services li {
    margin-bottom: 10px;
}

.category-services a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s;
    position: relative;
    padding-left: 20px;
}

.category-services a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: left 0.3s;
}

.category-services a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.category-services a:hover::before {
    left: 5px;
}

/* Why Services */
.why-services {
    padding: 80px 0;
    background: var(--light-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.why-item {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 90px;
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-number {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.why-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.why-item p {
    line-height: 1.7;
    color: var(--text-color);
}

/* Industries Served */
.industries-served {
    padding: 80px 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.industry-item {
    background: var(--light-color);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.industry-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-item h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: var(--light-color);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 0 0 180px;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
}

.process-arrow {
    color: var(--primary-color);
    font-size: 2rem;
}

/* Services Testimonials */
.services-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-item {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-item .testimonial-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-item .testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-item .testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.testimonial-item .testimonial-author p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.testimonial-item .testimonial-author .rating {
    display: flex;
    gap: 5px;
}

.testimonial-item .testimonial-author .rating i {
    color: #ffc107;
    font-size: 1rem;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ============================================
   RESPONSIVE NAVIGATION
   ============================================ */
@media (max-width: 968px) {
    .dropdown-menu {
        min-width: 500px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F1EB 100%);
    position: relative;
}
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .logo img {
        max-width: 150px;
        height: auto;
    }

    .nav-cta {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .btn-consultation {
        padding: 8px 20px !important;
        font-size: 14px;
        gap: 6px;
    }

    .btn-consultation i {
        font-size: 14px;
    }

    .hamburger {
        display: flex;
        order: 3;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        align-items: stretch;
        grid-column: 1 / -1;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 15px 25px;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu a::after {
        display: none;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        padding: 10px 0;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f8fafc;
    }

    .dropdown.active .dropdown-menu {
        max-height: 1000px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .dropdown-item {
        padding: 12px 25px;
        margin: 0 15px;
        border-radius: 8px;
    }

    .dropdown-item:hover {
        transform: translateX(0);
    }

    .dropdown-toggle {
        position: relative;
    }

    /* Slider */
    .slider {
        height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-text {
        font-size: 1.1rem;
    }

    .slider-btn {
        padding: 12px 15px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    /* Services Grid */
    .services-grid-home {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .service-box {
        padding: 30px 20px;
    }

    .service-icon-box {
        width: 75px;
        height: 75px;
    }

    .service-icon-box i {
        font-size: 2rem;
    }

    .service-box h3 {
        font-size: 1.1rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 80px;
        padding-right: 20px;
    }

    .timeline-item::before,
    .timeline-item.left::before,
    .timeline-item.right::before {
        left: 20px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    /* Services Page */
    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .services-cta h2 {
        font-size: 2.2rem;
    }

    .services-cta p {
        font-size: 1.1rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .process-step {
        flex: 0 0 100%;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .why-grid,
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Hero Banner Tablet */
    .hero-banner {
        min-height: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons .btn {
        padding: 15px 28px;
    }
    .page-header {
    padding: 60px 0 80px;
    background: var(--primary-color);
    background-color: #330033;
    background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23404' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23505'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E);
    color: white;
    text-align: center;
    font-size: 2rem !important;
}
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .nav-menu > li > a {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .dropdown-item {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Slider */
    .slider {
        height: 400px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-text {
        font-size: 0.95rem;
    }

    .slider-btn {
        padding: 10px 12px;
        font-size: 1rem;
    }

    .slider-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 25px;
    }

    /* Hero Banner Responsive */
    .hero-banner {
        min-height: 300px;
    }

    .hero-content {
        padding: 50px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        display: none;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        width: auto;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
        flex: 0 0 auto;
    }

    .hero-buttons .btn i {
        font-size: 12px;
    }

    .hero-features {
        display: none;
    }

    .hero-feature-item {
        font-size: 14px;
    }

    /* Services */
    .services-grid-home {
        grid-template-columns: 1fr;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .services-intro,
    .all-services,
    .service-categories,
    .why-services,
    .industries-served,
    .service-process,
    .services-testimonials,
    .services-cta {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .why-item {
        padding-left: 30px;
    }

    .why-number {
        position: static;
        transform: none;
        margin-bottom: 15px;
    }

    .categories-grid,
    .why-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* About */
    .about-overview,
    .mission-vision,
    .company-timeline,
    .why-choose-about,
    .team-section,
    .company-stats,
    .certifications,
    .testimonials-about,
    .about-cta {
        padding: 50px 0;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .stats-grid-about {
        grid-template-columns: 1fr;
    }

    .timeline-content {
        padding: 20px;
    }

    .about-stats-mini {
        grid-template-columns: 1fr;
    }

    .mv-grid,
    .choose-grid,
    .team-grid,
    .cert-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-links-contact {
        justify-content: center;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .map-section {
        height: 350px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    display: none;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */

   /* ============================================== */
/* === 1. Base Floating Button & Containers === */
/* ============================================== */
#chat-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #007aff; 
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    font-size: 22px;
    line-height: 1;
    z-index: 9999; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#chat-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

#chat-container {
    position: fixed;
    /* FIX for Desktop Overlap: Position it below the fixed header */
    top: 50px; /* Adjust this value if your header is taller or shorter */
    
    right: 30px;
    width: 350px;
    height: 520px;
    
    /* Glassmorphism Key Properties */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998; 
}

.hidden {
    display: none !important;
}

/* ============================================== */
/* === 2. Header (Visibility Ensured) === */
/* ============================================== */
#chat-header {
    padding: 12px 20px;
    background: linear-gradient(90deg, #4CAF50 0%, #007aff 100%); 
    color: white;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.header-content {
    display: flex;
    align-items: center;
}

.bot-icon {
    font-size: 20px;
    margin-right: 10px;
}

#close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    opacity: 0.9;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.2s;
    margin-left: 10px;
}

/* ============================================== */
/* === 3. Chat Window and Messages === */
/* ============================================== */
#chat-window {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.7);
}

.message {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-end;
}

.avatar-icon {
    font-size: 20px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 4px; 
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 20px; 
    max-width: 75%;
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.bot-message {
    justify-content: flex-start;
}

.bot-message .avatar-icon {
    margin-right: 10px;
    background-color: #e6e6e6; 
}

.bot-message .message-bubble {
    background-color: #ffffff;
    color: #333;
    border-bottom-left-radius: 5px; 
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-bubble {
    background-color: #007aff;
    color: white;
    border-bottom-right-radius: 5px; 
}


/* ============================================== */
/* === 4. Input Area & Typing Indicator === */
/* ============================================== */
#chat-input-area {
    display: flex;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

#user-input {
    flex-grow: 1;
    padding: 12px 18px;
    border: 1px solid #d9d9d9;
    border-radius: 25px;
    font-size: 15px;
    margin-right: 10px;
    background-color: #f7f7f7;
}

#chat-input-area button {
    background-color: #007aff;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typing Indicator Animation */
.typing-dot {
    opacity: 0;
    animation: typing-blink 1s infinite;
    padding-left: 1px;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}


/* ============================================== */
/* === 5. Mobile View (Responsiveness Fix) === */
/* ============================================== */
@media (max-width: 600px) {
    #chat-container {
        /* Full Screen Takeover for mobile */
        width: 100vw;
        height: 80vh;
        right: 0;
        bottom: 0;
        top: 0; /* Ensures it starts at the top of the mobile screen */
        border-radius: 0;
        z-index: 99999; 
        border: none;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px); 
    }

    #chat-button {
        bottom: 15px;
        right: 15px;
        padding: 12px;
    }
    
    #chat-input-area {
        padding: 8px;
    }
}