/* Global Move Care - Professional CSS Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Marquee Bar */
.marquee-bar {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 14px;
    font-weight: 500;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed !important;
    top: 44px !important;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    width: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Enhanced Logo with Gradient */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.logo-box-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 500;
    background: linear-gradient(45deg, #2196F3, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-2px);
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px;
}

.mobile-nav-links li {
    margin: 15px 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #667eea;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 800px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

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

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px; /* Increased gap between left and right */
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
    text-align: center;
}

.hero-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.hero-logo-img {
    width: 250px;
    height: 210px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    background: transparent;
}

.hero-logo-img:hover {
    transform: scale(1.1) rotate(0deg);
}

.hero-title {
    font-size: 5rem; /* Increased from 3.5rem */
    font-weight: 800;
    align-self: flex-start;
    line-height: 1;
    margin-bottom: 25px;
    color: #2c3e50;
}

.highlight {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 18px;
}

/* Hero Image Section */
.hero-image {
    animation: slideInRight 1s ease-out;
    position: relative;
}

.hero-product-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px; /* Increased margin for feature boxes */
}

.product-image-container {
    background: rgba(255, 255, 255, 0);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-product-img {
    width: 650px; /* Increased from 350px */
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-product-img:hover {
    transform: scale(1.05);
}

.hero-features {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.feature-icon-box {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.feature-icon-box span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

/* Enhanced Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::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"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.1);
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 550;
    color: rgb(255, 255, 255);
    text-shadow: 0 2px 10px rgba(51, 83, 157, 0.66);
    transition: all 1s ease;
    transform: matrix3d();
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 600;
    color: #c6edff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

/* Excellence Section */
.excellence-section {
    padding: 120px 0;
    background: #f8faff;
}

.excellence-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.vm-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.vm-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #2c3e50;
}

.vm-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
}

.excellence-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.excellence-content p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.partners-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Partners Slider */
.partners-slider {
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 25px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: partnerSlide 20s linear infinite;
    width: fit-content;
}

@keyframes partnerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-img {
    min-width: 100px;
    height: 70px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.partner-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(70%);
    transition: all 0.3s ease;
}

.partner-logo-img:hover .partner-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* How We Work Section */
.how-we-work-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    color: #764ba2;
}

.process-steps {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.process-step {
    min-width: 350px;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-icon {
    font-size: 32px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-content p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-image {
    position: relative;
}

.why-products {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: flex-start;
}

.product-sample {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
    width: 320px;
    height: 400px;
    flex-shrink: 0;
}

.product-sample:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-sample-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-sample:hover .product-sample-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    padding: 25px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-sample:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay span {
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    text-align: center;
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 18px 15px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.why-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.6s ease;
}

.why-feature-item:hover::before {
    left: 100%;
}

.why-feature-item:hover {
    transform: translateX(12px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(102, 126, 234, 0.15);
}

.why-feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
    transition: transform 0.3s ease;
}

.why-feature-item:hover .why-feature-icon {
    transform: scale(1.08) rotate(3deg);
}

.why-feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.why-feature-content p {
    color: #666;
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-slider {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonials-track {
    display: flex;
    gap: 35px;
    animation: testimonialScroll 35s linear infinite;
    width: fit-content;
}

@keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 420px;
    background: white;
    padding: 35px 30px 30px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.08);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.15);
}

.quote-mark {
    font-size: 4.5rem;
    color: rgba(102, 126, 234, 0.15);
    line-height: 1;
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: 'Georgia', serif;
    font-weight: bold;
}

.testimonial-content {
    margin: 25px 0 30px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.rating {
    margin-bottom: 25px;
}

.rating span {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.client-info {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.client-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    flex-shrink: 0;
}

.client-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
    line-height: 1.3;
}

.client-details span {
    color: #666;
    font-size: 14px;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%), 
                url('assets/packaging.jpg') center/cover fixed;
    color: white;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

/* Footer */
.footer {
    background: #f8faff;
    color: #333;
    padding: 80px 0 0;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.3rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 250px;
    height: 210px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
    text-align: center;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.25);
    transition: transform 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.contact-text {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.contact-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    padding: 30px 0;
    text-align: center;
    background: rgba(102, 126, 234, 0.03);
}

.footer-bottom-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Animation Classes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-wrapper,
    .excellence-wrapper,
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-product-img {
        width: 400px; /* Reduced for tablet */
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vm-card {
        min-height: auto;
        padding: 30px 25px;
    }
    
    .partners-slider {
        max-width: 100%;
    }
    
    .partners-track {
        gap: 25px;
    }
    
    .partner-logo-img {
        min-width: 90px;
        height: 60px;
    }
    
    .product-sample {
        width: 250px;
        height: 320px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-product-img {
        width: 300px; /* Mobile size for boxes image */
    }
    
    .hero-logo-img {
        width: 80px; /* Smaller logo for mobile */
        height: 80px;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 10px;
        position: static;
        transform: none;
        margin-top: 20px;
    }
    
    .why-products {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .product-sample {
        width: 200px;
        height: 250px;
    }
    
    .cta-section {
        background-attachment: scroll; /* Fixed background can cause issues on mobile */
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .process-step {
        min-width: 280px;
    }
    
    .testimonial-card {
        min-width: 320px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .hero-product-img {
        width: 200px; /* Smaller for mobile */
    }
    
    .hero-logo-img {
        width: 60px; /* Even smaller for mobile */
        height: 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .excellence-content h2,
    .why-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
}
  .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }



        /* Hero Section - Ultra Enhanced */
        .about-hero {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/><circle cx="200" cy="150" r="80" fill="rgba(255,255,255,0.1)"/><circle cx="600" cy="300" r="120" fill="rgba(255,255,255,0.08)"/><circle cx="1000" cy="200" r="100" fill="rgba(255,255,255,0.12)"/><circle cx="1200" cy="400" r="90" fill="rgba(255,255,255,0.09)"/><polygon points="300,500 400,500 350,400" fill="rgba(255,255,255,0.1)"/><polygon points="800,600 950,600 875,450" fill="rgba(255,255,255,0.08)"/></svg>');
            background-size: cover;
            background-position: center;
            height: calc(70vh + 80px);
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
            animation: backgroundPulse 8s ease-in-out infinite alternate;
        }

        @keyframes backgroundPulse {
            0% { opacity: 0.5; }
            100% { opacity: 0.8; }
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
        }

        .about-hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ffffff, #f8f9fa, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 8px 32px rgba(0,0,0,0.3);
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { text-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 50px rgba(255,255,255,0.2); }
            100% { text-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 80px rgba(255,255,255,0.4); }
        }

        .about-hero p {
            font-size: 1.6rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.95;
            line-height: 1.8;
            font-weight: 300;
        }

        .about-hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
        }

        .about-hero-stat {
            text-align: center;
        }

        .about-hero-stat-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
        }

        .about-hero-stat-label {
            font-size: 1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Styles - Ultra Enhanced */
          .about-section {
            padding: 100px 0;
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #f8f9fa 100%);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            text-align: center;
        }

        .about-section h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            font-weight: 800;
        }

        .about-section h2::after {
            content: '';
            width: 120px;
            height: 4px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .about-section > .about-container > p {
            font-size: 1.3rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 4rem;
            line-height: 1.8;
        }

        /* Team Grid */
        .about-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .about-team-member {
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.9));
            backdrop-filter: blur(15px);
            padding: 3rem 2rem;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .about-team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .about-team-member::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.05), transparent);
            animation: teamRotate 8s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .about-team-member:hover::after {
            opacity: 1;
        }

        .about-team-member:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 40px 100px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.3);
        }

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

        /* Enhanced Team Avatar with Real Images */
      

        .about-team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 35px;
            transition: all 0.1s ease;
            display: block;
        }

        .about-team-member:hover .about-team-avatar img {
            transform: translateY(-10px) scale(1.05);
        }

       
        /* Team Member Details */
        .about-team-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
            background: linear-gradient(45deg, #2c3e50, #34495e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-team-role {
            font-size: 1.1rem;
            color: #667eea;
            margin-bottom: 1.5rem;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .about-team-bio {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* Fade Animation */
        .about-fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-section h2 {
                font-size: 2.5rem;
            }

            .about-team-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-team-member {
                padding: 2.5rem 1.5rem;
            }

            .about-team-avatar {
                width: 180px;
                height: 230px;
            }
        }

        @media (max-width: 480px) {
            .about-container {
                padding: 0 20px;
            }

            .about-section h2 {
                font-size: 2rem;
            }

            .about-team-member {
                padding: 2rem 1rem;
            }

            .about-team-avatar {
                width: 160px;
                height: 200px;
            }
        }
        /* Story Section Enhanced */
        .about-story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            margin-top: 5rem;
            align-items: center;
        }

        .about-story-text {
            text-align: left;
        }

        .about-story-text h3 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            color: #2c3e50;
            font-weight: 700;
        }

        .about-story-text p {
            text-align: left;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .about-story-visual {
            position: relative;
            height: 400px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .about-story-visual::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 400 300"><rect width="100%" height="100%" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="30" fill="white" opacity="0.3"/><circle cx="200" cy="150" r="40" fill="white" opacity="0.2"/><circle cx="320" cy="100" r="25" fill="white" opacity="0.4"/><text x="200" y="200" font-family="Arial" font-size="20" text-anchor="middle" fill="white" opacity="0.8">Global Packaging Excellence</text></svg>');
            background-size: cover;
        }

        /* Mission Vision - Ultra Enhanced */
        .about-mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 5rem;
        }

        .about-mission-box, .about-vision-box {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.8));
            backdrop-filter: blur(10px);
            padding: 4rem;
            border-radius: 25px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .about-mission-box::before, .about-vision-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .about-mission-box:hover, .about-vision-box:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 35px 100px rgba(102, 126, 234, 0.2);
        }

        .about-mission-box h3, .about-vision-box h3 {
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            font-size: 2rem;
            font-weight: 700;
        }

        .about-mission-box p, .about-vision-box p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #666;
        }

        /* Values Section - Ultra Enhanced */
        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .about-value-item {
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.9));
            backdrop-filter: blur(15px);
            padding: 3.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.06);
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
        }

        .about-value-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            animation: rotate 6s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .about-value-item:hover::before {
            opacity: 1;
        }

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

        .about-value-item:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 70px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .about-value-icon {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            display: block;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
            position: relative;
            z-index: 2;
        }

        .about-value-item h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .about-value-item p {
            font-size: 1.1rem;
            text-align: center;
            color: #666;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        /* Features Section - Ultra Enhanced */
        .about-features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .about-feature-item {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.8));
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
        }

        .about-feature-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .about-feature-item:hover::before {
            transform: scaleY(1);
        }

        .about-feature-item:hover {
            transform: translateX(15px);
            box-shadow: 0 15px 60px rgba(102, 126, 234, 0.12);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .about-feature-icon {
            font-size: 2rem;
            margin-right: 2rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .about-feature-text {
            font-size: 1.1rem;
            color: #555;
            font-weight: 600;
            line-height: 1.6;
        }

        /* Team Section - New Addition */
        .about-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .about-team-member {
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.9));
            backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .about-team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(102, 126, 234, 0.15);
        }

        .about-team-avatar {
            width: 220px;
            height: 280px;
            border-radius: 50%;
            background: #ffffff00;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .about-team-name {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .about-team-role {
            font-size: 1rem;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .about-team-bio {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section - Ultra Enhanced */
        .about-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .about-cta::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 1400 400"><circle cx="200" cy="100" r="60" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="200" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="1000" cy="150" r="70" fill="rgba(255,255,255,0.07)"/><circle cx="1200" cy="250" r="50" fill="rgba(255,255,255,0.04)"/></svg>');
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .about-cta-content {
            position: relative;
            z-index: 2;
        }

        .about-cta h2 {
            color: white;
            margin-bottom: 2rem;
            font-size: 3rem;
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .about-cta h2::after {
            background: linear-gradient(45deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
        }

        .about-cta p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            color: rgba(255,255,255,0.95);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem;
        }

        .about-cta-button {
            display: inline-block;
            background: linear-gradient(45deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
            color: #667eea;
            padding: 20px 50px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .about-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .about-cta-button:hover::before {
            left: 100%;
        }

        .about-cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            background: white;
        }

        /* Timeline Section - New Addition */
        .about-timeline {
            margin-top: 5rem;
        }

        .about-timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .about-timeline-year {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-right: 3rem;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
            min-width: 120px;
            text-align: center;
        }

        .about-timeline-content {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            flex: 1;
            border-left: 4px solid #667eea;
        }

        .about-timeline-content h4 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .about-timeline-content p {
            color: #666;
            font-size: 1rem;
            text-align: left;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 3rem;
            }

            .about-hero p {
                font-size: 1.2rem;
            }

            .about-hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .about-mission-vision {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-story-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-section {
                padding: 80px 0;
            }

            .about-section h2 {
                font-size: 2.5rem;
            }

            .about-values-grid {
                grid-template-columns: 1fr;
            }

            .about-features-list {
                grid-template-columns: 1fr;
            }

            .about-feature-item:hover {
                transform: none;
            }

            .about-timeline-item {
                flex-direction: column;
                text-align: center;
            }

            .about-timeline-year {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .about-hero {
                height: 70vh;
            }

            .about-hero h1 {
                font-size: 2.2rem;
            }

            .about-container {
                padding: 0 20px;
            }

            .about-mission-box, .about-vision-box {
                padding: 2.5rem;
            }

            .about-value-item {
                padding: 2.5rem;
            }

            .about-team-grid {
                grid-template-columns: 1fr;
            }
        }
  .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 800"><defs><pattern id="contactGrid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23contactGrid)"/><circle cx="150" cy="120" r="100" fill="rgba(255,255,255,0.06)"/><circle cx="500" cy="250" r="80" fill="rgba(255,255,255,0.08)"/><circle cx="850" cy="180" r="120" fill="rgba(255,255,255,0.05)"/><circle cx="1200" cy="300" r="90" fill="rgba(255,255,255,0.07)"/></svg>');
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 85px;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 25% 75%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
                        radial-gradient(circle at 75% 25%, rgba(118, 75, 162, 0.4) 0%, transparent 50%);
            animation: contactPulse 10s ease-in-out infinite alternate;
        }

        @keyframes contactPulse {
            0% { opacity: 0.6; }
            100% { opacity: 0.9; }
        }

        .contact-hero-content {
            position: relative;
            z-index: 2;
        }

        .contact-hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            text-shadow: 0 8px 32px rgba(0,0,0,0.3);
            animation: contactTitleGlow 4s ease-in-out infinite alternate;
        }

        @keyframes contactTitleGlow {
            0% { text-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 60px rgba(255,255,255,0.2); }
            100% { text-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 90px rgba(255,255,255,0.4); }
        }

        .contact-hero p {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
            line-height: 1.8;
            font-weight: 300;
            animation: contactSlideUp 1.5s ease-out 0.5s both;
        }

        @keyframes contactSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 0.95;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .contact-section {
            padding: 100px 0;
            position: relative;
        }

        .contact-section:nth-child(even) {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
        }

        .contact-section:nth-child(odd) {
            background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #f8f9fa 100%);
        }

        /* Contact Cards Grid */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .contact-info-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.9));
            backdrop-filter: blur(15px);
            padding: 3.5rem;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .contact-info-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(102, 126, 234, 0.2);
        }

        .contact-icon {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-info-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .contact-info-card p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .contact-info-card a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-info-card a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        /* Contact Form Section - COMPLETELY REDESIGNED */
        .contact-form-section {
            background: #ffffff;
            padding: 120px 0;
        }

        .contact-form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-form-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .contact-form-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 2rem;
        }

        /* IMPROVED FORM DESIGN */
        .contact-form {
            background: #ffffff;
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid #f1f3f4;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
        }

        .contact-form:hover {
            border-color: rgba(102, 126, 234, 0.2);
            box-shadow: 0 25px 80px rgba(102, 126, 234, 0.15);
        }

        .contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-form-group {
            margin-bottom: 1.5rem;
        }

        .contact-form-group.full-width {
            grid-column: 1 / -1;
        }

        .contact-form-label {
            display: block;
            margin-bottom: 0.8rem;
            color: #2c3e50;
            font-weight: 600;
            font-size: 1rem;
        }

        .contact-form-input,
        .contact-form-select,
        .contact-form-textarea {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            background: #ffffff;
            color: #2c3e50;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .contact-form-input::placeholder,
        .contact-form-textarea::placeholder {
            color: #6c757d;
        }

        .contact-form-input:focus,
        .contact-form-select:focus,
        .contact-form-textarea:focus {
            outline: none;
            border-color: #667eea;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

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

        .contact-form-select {
            cursor: pointer;
        }

        .contact-form-select option {
            background: #ffffff;
            color: #2c3e50;
        }

        .contact-submit-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            width: 100%;
            margin-top: 1rem;
        }

        .contact-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        .contact-submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* Success Overlay Modal */
        .success-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .success-modal {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideInScale 0.5s ease;
        }

        .success-icon {
            font-size: 4rem;
            color: #27ae60;
            margin-bottom: 1.5rem;
            animation: bounce 0.6s ease;
        }

        .success-modal h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .success-modal p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .success-close-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .success-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInScale {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(-30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Map Section */
        .contact-map-section {
            padding: 0;
            background: #f8f9fa;
        }

        .contact-map-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }

        .contact-map-info {
            padding: 4rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-map-info h3 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .contact-address {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact-hours {
            font-size: 1.1rem;
            opacity: 0.9;
            font-style: italic;
        }

        .contact-map-visual {
            background: linear-gradient(45deg, #e8f2ff, #f0f8ff);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .contact-map-placeholder {
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><rect width="100%" height="100%" fill="%23f0f8ff"/><circle cx="300" cy="200" r="80" fill="%23667eea" opacity="0.3"/><circle cx="300" cy="200" r="40" fill="%23764ba2" opacity="0.6"/><circle cx="300" cy="200" r="15" fill="%23667eea"/><text x="300" y="320" font-family="Arial" font-size="18" text-anchor="middle" fill="%23667eea">Baku, Azerbaijan</text><text x="300" y="340" font-family="Arial" font-size="14" text-anchor="middle" fill="%23764ba2">28 May Street, Nasimi District</text></svg>');
            background-size: cover;
            background-position: center;
        }

        /* Closing Section */
        .contact-closing {
            text-align: center;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            padding: 80px 0;
        }

        .contact-closing h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .contact-closing p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Animations */
        .contact-fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-hero {
                height: 60vh;
                margin-top: 70px;
            }

            .contact-hero h1 {
                font-size: 2.8rem;
            }

            .contact-hero p {
                font-size: 1.2rem;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-map-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-map-info {
                padding: 3rem 2rem;
            }

            .contact-section {
                padding: 60px 0;
            }

            .success-modal {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .contact-hero h1 {
                font-size: 2.2rem;
            }

            .contact-container {
                padding: 0 20px;
            }

            .contact-info-card {
                padding: 2.5rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .contact-map-info {
                padding: 2rem;
            }
        }
          .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Hero Section */
        .services-hero {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(62, 33, 91, 0.9));           
            background-position: center, fixed, center;
            background-attachment: scroll, fixed, scroll;
            height: 70vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 85px;
        }

        .services-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                        radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(118, 75, 162, 0.4) 0%, transparent 50%);
            opacity: 0.15;
            animation: servicesPulse 8s ease-in-out infinite alternate;
        }

        .services-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(118, 75, 162, 0.4) 0%, transparent 50%);
            animation: servicesPulse 8s ease-in-out infinite alternate;
        }
        .services-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
            opacity: 0.15;
            z-index: 1;
        }

        @keyframes servicesPulse {
            0% { opacity: 0.6; }
            100% { opacity: 0.9; }
        }

        .services-hero-content {
            position: relative;
            z-index: 2;
        }

        .services-hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            text-shadow: 0 8px 32px rgba(0,0,0,0.3);
            animation: servicesTitleGlow 4s ease-in-out infinite alternate;
        }

        @keyframes servicesTitleGlow {
            0% { text-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 60px rgba(255,255,255,0.2); }
            100% { text-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 90px rgba(255,255,255,0.4); }
        }

        .services-hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            line-height: 1.8;
            font-weight: 300;
            animation: servicesSlideUp 1.5s ease-out 0.5s both;
        }

        @keyframes servicesSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 0.95;
                transform: translateY(0);
            }
        }

      /* ============================================
   PARALLAX BACKGROUND - ADD THIS TO EXISTING CSS
   Existing service styles ko touch nahi kiya hai
   ============================================ */

/* Section Styles - REPLACE YOUR EXISTING .services-section */
.services-section {
    padding: 100px 0;
    position: relative;
    /* Parallax background ke liye minimum height */
    min-height: 100vh;
}

/* Fixed Parallax Background Image */
.services-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../assets/packagingbackground.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

/* Dark Overlay - Better Text Readability */
.services-section::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(112, 190, 238, 0.21) 0%,
        rgba(214, 215, 215, 0.207) 50%,
        rgba(255, 255, 255, 0.229) 100%
    );
    z-index: -1;
}

/* Content ko foreground mein laane ke liye */
.services-section > * {
    position: relative;
    z-index: 1;
}

/* Heading ko white color (kyunki background dark hai) */
.services-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    /* Dark background ke against white text */
    color: #ffffff;
    position: relative;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.services-section h2::after {
    content: '';
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Services Layout - Single Block One by One */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.9));
    backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    animation: serviceRotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Service Image with Enhanced 3D Effects */
.service-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto 3rem;
    perspective: 1000px;
    overflow: hidden;
    border-radius: 20px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.service-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-image {
    transform: rotateY(12deg) rotateX(6deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.service-card:hover .service-image-container::before {
    opacity: 1;
}

/* Enhanced Service Content */
.service-content {
    position: relative;
    z-index: 3;
}

.service-card h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.service-card p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    list-style: none;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.service-features li {
    padding: 1rem 0;
    color: #555;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.4rem;
    top: 1rem;
}

.service-cta {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* ============================================
   RESPONSIVE - MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    /* Mobile pe fixed background performance issue deta hai */
    .services-section::before {
        background-attachment: scroll;
        position: absolute;
    }
    
    .services-section::after {
        position: absolute;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.8rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
    
    .service-features li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-section h2 {
        font-size: 1.5rem;
    }
    
    .service-image-container {
        height: 200px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}
        /* Simple Process Grid - New Design */
        .simple-process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .simple-process-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.9));
            backdrop-filter: blur(15px);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
        }

        .simple-process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .simple-process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .simple-process-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        }

        .simple-process-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .simple-process-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Enhanced Industries Section */
        .industries-section {
            padding: 120px 0;
            position: relative;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
        }

        .industries-section h2 {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            font-weight: 800;
        }

        .industries-section h2::after {
            content: '';
            width: 150px;
            height: 5px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .industries-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        /* Enhanced Slider Container */
        .industries-slider-wrapper {
            position: relative;
            overflow: hidden;
            margin: 4rem 0;
        }

        .industries-slider {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 2.5rem;
            padding: 2rem 0;
        }

        /* Enhanced Industry Cards - 1.5x Larger */
        .industry-card {
            flex: 0 0 320px; /* Increased from ~213px to 320px (1.5x) */
            height: 240px; /* Increased from 160px to 240px (1.5x) */
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.9));
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 3rem 2rem; /* Increased padding */
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255,255,255,0.3);
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 25px 25px 0 0;
        }

        .industry-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.05), transparent);
            animation: industryRotate 8s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .industry-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 40px 100px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.4);
        }

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

        /* Enhanced Industry Icons */
        .industry-icon {
            font-size: 4.5rem; /* Increased from 3rem to 4.5rem (1.5x) */
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .industry-card:hover .industry-icon {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 12px 25px rgba(102, 126, 234, 0.3));
        }

        .industry-card h4 {
            font-size: 1.4rem; /* Increased from 1.1rem to 1.4rem */
            color: #2c3e50;
            font-weight: 700;
            position: relative;
            z-index: 2;
            background: linear-gradient(45deg, #2c3e50, #34495e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Slider Controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
        }

        .slider-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .slider-btn:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        .slider-btn:active {
            transform: translateY(-1px) scale(1.05);
        }

        /* Slider Dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(102, 126, 234, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: linear-gradient(45deg, #667eea, #764ba2);
            transform: scale(1.3);
        }

        .slider-dot:hover {
            background: rgba(102, 126, 234, 0.6);
            transform: scale(1.1);
        }

        /* Auto-play indicator */
        .auto-play-indicator {
            text-align: center;
            margin-top: 2rem;
            color: #666;
            font-size: 0.9rem;
        }

        .auto-play-toggle {
            background: none;
            border: 1px solid #667eea;
            color: #667eea;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            margin-left: 1rem;
            transition: all 0.3s ease;
        }

        .auto-play-toggle:hover {
            background: #667eea;
            color: white;
        }

        /* CTA Section */
        .services-cta {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            text-align: center;
            padding: 80px 0;
        }

        .services-cta h2 {
            margin-bottom: 1.5rem;
        }

        .services-cta p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-primary, .cta-secondary {
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-primary {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        .cta-secondary {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .cta-secondary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
        }

        /* Animations */
        .services-fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-hero {
                height: 60vh;
                margin-top: 70px;
            }

            .services-hero h1 {
                font-size: 2.8rem;
            }

            .services-hero p {
                font-size: 1.2rem;
            }

            .services-grid {
                gap: 2rem;
            }

            .service-card {
                padding: 2.5rem;
            }

            .simple-process-grid {
                grid-template-columns: 1fr;
            }

            .services-section {
                padding: 60px 0;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .industries-section h2 {
                font-size: 2.5rem;
            }

            .industry-card {
                flex: 0 0 280px;
                height: 220px;
                padding: 2.5rem 1.5rem;
            }

            .industry-icon {
                font-size: 3.5rem;
            }

            .industry-card h4 {
                font-size: 1.2rem;
            }

            .slider-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .services-hero h1 {
                font-size: 2.2rem;
            }

            .services-container {
                padding: 0 20px;
            }

            .service-card {
                padding: 2rem;
            }

            .industries-section h2 {
                font-size: 2rem;
            }

            .industry-card {
                flex: 0 0 250px;
                height: 200px;
                padding: 2rem 1rem;
            }

            .industry-icon {
                font-size: 3rem;
            }
        }