/* ============================================
   Khatri Plastic & Bag Suppliers
   Main Stylesheet
   ============================================ */

/* CSS Variables for Color Scheme */
:root {
    --primary-color: #181855;
    --primary-dark: #004d8c;
    --primary-light: #e6f2ff;
    --secondary-color: #9698d8;
    --secondary-dark: #008080;
    --accent-color: #9b9de3;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 2px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right a {
    color: var(--text-white);
}

.top-bar-right a:hover {
    color: var(--accent-color);
}

.navbar {
    padding: 30px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-image {
    height: 55px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.nav-dropdown-toggle svg.dropdown-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg.dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 10px 0;
    border: 1px solid var(--border-color);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    border-radius: 0;
}

.nav-dropdown-menu a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-cta {
    background-color: var(--accent-color) !important;
    color: var(--text-white) !important;
    margin-left: 10px;
}

.nav-cta:hover {
    background-color: #e8851b !important;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Banner Slider Section
   ============================================ */
.banner-slider {
    position: relative;
    min-height: 600px;
    overflow: hidden;
	margin-bottom:-80px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: 150px;
    animation: float 20s linear infinite;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #181855c4 20%, #181855f2 50%, #13133ad9 100%)
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(360deg); }
}

/* Slide Background Variations with Images */
.slide-bg-1 {
    background: url('../images/slider-bg-1.jpg') center center / cover no-repeat;
}

.slide-bg-2 {
    background: url('../images/slider-bg-2.jpg') center center / cover no-repeat;
}

.slide-bg-3 {
    background: url('../images/slider-bg-3.jpg') center center / cover no-repeat;
}

.slide .container {
    position: relative;
    z-index: 2;
	padding:60px 0;
}

.slide-content {
    color: var(--text-white);
    max-width: 720px;
    text-align: center;
	margin-top:80px;
    animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.slide h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.slide h1 span {
    color: var(--accent-color);
}

.slide p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 720px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 55px;
    height: 55px;
    background-color: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.slider-arrow svg {
    width: 28px;
    height: 28px;
    fill: var(--text-white);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background-color: rgba(255,255,255,0.5);
}

.slider-dot.active {
    background-color: var(--accent-color);
    border-color: var(--text-white);
    transform: scale(1.2);
}

/* Slider Counter */
.slider-counter {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    z-index: 10;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.slider-counter .current-slide {
    font-size: 24px;
    color: var(--accent-color);
}

.slider-counter .divider {
    opacity: 0.5;
}

.slider-counter .total-slides {
    opacity: 0.7;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255,255,255,0.2);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background-color: var(--accent-color);
    width: 0;
    transition: width 0.1s linear;
}

/* ============================================
   Hero Section (for reference - may be used elsewhere)
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: 150px;
    animation: float 20s linear infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-image-placeholder svg {
    width: 120px;
    height: 120px;
    fill: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.hero-image-placeholder span {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #e8851b;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    background-color: var(--bg-light);
	
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 360px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #d4e8ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image svg {
    width: 80px;
    height: 80px;
    fill: var(--primary-color);
    opacity: 0.7;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 15px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.product-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ============================================
   About Section - Dark Creative
   ============================================ */
.about-section {
    background: linear-gradient(135deg, #181855c4 20%, #181855f2 50%, #13133ad9 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 179, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 168, 168, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-subtitle {
    color: var(--accent-color);
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.3);
}

.about-section .section-subtitle::before,
.about-section .section-subtitle::after {
    background: rgba(247, 147, 30, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(0, 168, 168, 0.3);
    border-radius: var(--border-radius-lg);
    z-index: 0;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.2) 0%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
}

.about-image-main {
    width: 100%;
    height: 660px;
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.3) 0%, rgba(0, 168, 168, 0.2) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.about-image-main .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.about-image-main svg {
    width: 150px;
    height: 150px;
    fill: rgba(255,255,255,0.8);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #181855 100%);
    color: var(--text-white);
    padding: 25px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.4);
    z-index: 2;
}

.about-badge::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgb(150 152 216);
    border-radius: var(--border-radius-lg);
}

.about-badge .number {
    font-size: 42px;
    font-weight: 700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.about-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-white);
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--accent-color);
}

.about-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 168, 168, 0.3);
    transform: translateX(5px);
}

.about-feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 168, 168, 0.2) 0%, rgba(0, 102, 179, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 168, 168, 0.3);
}

.about-feature-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--secondary-color);
}

.about-feature h4 {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--text-white);
}

.about-feature p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.about-section .btn-primary {
    margin-top: 30px;
}

/* Creative Background Shapes for Dark Sections */
.section-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    opacity: 0.08;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 70%);
    top: 20%;
    right: 20%;
    opacity: 0.06;
    animation-delay: -15s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    opacity: 0.05;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 10px) rotate(3deg);
    }
}

/* Floating Dots Pattern */
.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 30px;
    padding: 50px;
}

.floating-dots span {
    width: 4px;
    height: 4px;
    background: rgba(0, 168, 168, 0.3);
    border-radius: 50%;
    animation: pulse-dot 3s ease-in-out infinite;
}

.floating-dots span:nth-child(odd) {
    animation-delay: -1.5s;
    background: rgba(247, 147, 30, 0.2);
}

.floating-dots span:nth-child(3n) {
    animation-delay: -0.5s;
    width: 6px;
    height: 6px;
}

.floating-dots span:nth-child(5n) {
    animation-delay: -2s;
    background: rgba(0, 102, 179, 0.3);
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

/* Grid Lines Pattern */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
}

.grid-lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 168, 0.15) 50%, transparent 100%);
    animation: line-pulse 4s ease-in-out infinite;
}

.grid-lines span:nth-child(1) { animation-delay: 0s; }
.grid-lines span:nth-child(2) { animation-delay: -1s; }
.grid-lines span:nth-child(3) { animation-delay: -2s; }
.grid-lines span:nth-child(4) { animation-delay: -3s; }

@keyframes line-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

/* Additional Decorative Elements */
.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(0deg, rgba(6, 13, 24, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.industries-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(6, 13, 24, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

/* Hexagon Pattern Overlay */
.industries-section .section-bg-shapes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 168, 168, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 102, 179, 0.03) 0%, transparent 50%);
    background-size: 60px 60px;
}

/* Animated Gradient Border */
.about-section .section-bg-shapes::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, rgba(0, 168, 168, 0.2), rgba(247, 147, 30, 0.1), rgba(0, 102, 179, 0.2)) 1;
    animation: border-glow 5s ease-in-out infinite alternate;
}

@keyframes border-glow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

/* Floating Particles Effect */
.section-bg-shapes .particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-float 15s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100%) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100%) translateX(100px);
        opacity: 0;
    }
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--text-white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ============================================
   Industries Section - Dark Creative
   ============================================ */
.industries-section {
    background: linear-gradient(180deg, #0d1a30 0%, #0a1628 50%, #060d18 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(0, 168, 168, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(0, 102, 179, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(247, 147, 30, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.industries-section .container {
    position: relative;
    z-index: 1;
}

.industries-section .section-subtitle {
    color: var(--secondary-color);
    background: rgba(0, 168, 168, 0.1);
    border: 1px solid rgba(0, 168, 168, 0.3);
}

.industries-section .section-subtitle::before,
.industries-section .section-subtitle::after {
    background: rgba(0, 168, 168, 0.5);
}

.industries-section .section-title {
    color: var(--text-white);
}

.industries-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.industry-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: var(--border-radius-lg);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    background: linear-gradient(145deg, rgba(0, 168, 168, 0.1) 0%, rgba(0, 102, 179, 0.05) 100%);
    border-color: rgba(0, 168, 168, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 168, 168, 0.15);
}

.industry-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 168, 168, 0.15) 0%, rgba(0, 102, 179, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    border: 1px solid rgba(0, 168, 168, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.industry-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed rgba(0, 168, 168, 0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 168, 168, 0.25) 0%, rgba(0, 102, 179, 0.2) 100%);
    box-shadow: 0 10px 30px rgb(150 152 216);
}

.industry-card:hover .industry-icon::before {
    border-color: rgb(150 152 216);
    transform: rotate(45deg);
}

.industry-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--secondary-color);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon svg {
    fill: var(--accent-color);
}

.industry-card h4 {
    font-size: 18px;
    color: var(--text-white);
    margin: 0;
    transition: color 0.3s ease;
}

.industry-card:hover h4 {
    color: var(--accent-color);
}

.industries-section .btn-outline {
    border-color: rgb(150 152 216);
    color: var(--secondary-color);
}

.industries-section .btn-outline:hover {
    background: rgb(150 152 216);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

/* ============================================
   Clients Section
   ============================================ */
.clients-section {
    background-color: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.client-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.client-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.client-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #d4e8ff 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.client-logo svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.client-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.client-card span {
    font-size: 13px;
    color: var(--text-light);
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.client-stat {
    text-align: center;
    color: var(--text-white);
}

.client-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.client-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.client-stat .counter {
    display: inline;
    font-variant-numeric: tabular-nums;
}

/* Counter animation pulse effect */
.client-stat.animate .counter {
    animation: countPulse 0.3s ease-out;
}

@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-white);
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    opacity: 0.9;
    font-size: 15px;
}

.contact-item a {
    color: var(--text-white);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-white);
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 140px 0 60px;
    color: var(--text-white);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 150px;
}

.page-header .container {
    position: relative;
	margin-top:50px;
    z-index: 1;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--text-white);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--accent-color);
}

/* ============================================
   Quote Form
   ============================================ */
.quote-section {
    background-color: var(--bg-light);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.quote-info {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.quote-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.quote-info p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-benefit-icon {
    width: 30px;
    height: 30px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.quote-benefit-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--text-white);
}

.quote-benefit span {
    color: var(--text-dark);
    font-size: 15px;
}

.quote-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.quote-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #1a2530;
    color: var(--text-white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text .company-name {
    color: var(--text-white);
}

.footer-brand p {
    opacity: 0.8;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.8;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    /* Banner Slider Responsive */
    .slide h1 {
        font-size: 42px;
    }
    
    .slide-content {
        max-width: 600px;
        text-align: center;
		margin-top:80px;
		
    }
    
    .slide-buttons {
        justify-content: flex-start;
    }
    
    .slider-counter {
        right: 20px;
        bottom: 30px;
    }
    
    .slider-dots {
        bottom: 30px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .about-badge {
        position: absolute;
        right: 60px;
    }
	.slider-nav{
		position:absolute;
		top:40%;
	}
	.logo img{
		margin:0 auto;
	}
	.social-links{
		justify-content:center;
	}
	.footer-contact-item{
		justify-content:center;
	}
	
	.product-main-image{
		display:flex;
		height:360px;
	}
	.about-content.fade-in.visible{
	text-align:center;
	}
	.service-icon{
	margin: 15px auto;
	}
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: var(--bg-light);
        border-radius: var(--border-radius);
        margin-top: 5px;
        display: none;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-menu a {
        padding: 12px 20px;
        text-align: center;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Banner Slider Mobile Responsive */
    .banner-slider {
        min-height: 500px;
    }
    
    .slide {
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .slide-content {
        text-align: center;
        max-width: 100%;
		margin-top:80px !important;
    }
    
    .slide h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .slide-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }
    
    .slide-buttons {
        justify-content: center;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-counter {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .hero-image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
		text-align:center;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .client-stat-number {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .product-card,
    .service-card {
        padding: 20px;
    }
    
    .contact-info,
    .contact-form-wrapper,
    .quote-info,
    .quote-form-wrapper {
        padding: 25px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Error message */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: none;
}

.error-message.show {
    display: block;
}

/* ============================================
   STICKY WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

/* Pulse Animation */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #333;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}