/* Previous CSS + New Sections CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cf4e25;
    --primary-dark: #b8421f;
    --primary-light: #e55a2b;
    --secondary-color: #f4a261;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo a img {
    width: 250px;
    height: auto;
    transition: var(--transition);
    max-height: 50px;
    object-fit: contain;
}

.nav-logo a img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: block;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Call Button Styles */
.nav-cta {
    margin-left: 1rem;
}

.call-btn {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.50rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 78, 37, 0.3);
}

.call-btn i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Mobile/Desktop Display Control */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    background: none;
    border: none;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}



/* Responsive Styles */
@media (max-width: 1200px) {
    .nav-logo a img {
        width: 200px;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .call-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .nav-logo a img {
        width: 180px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .call-btn {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.3rem 0;
    }

    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .nav-logo a img {
        width: 150px;
        max-height: 40px;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
        height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu>* {
        width: 100%;
        display: block;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
        width: 100%;
        border-bottom: 1px solid var(--background-light);
        margin: 0;
    }

    .nav-link:hover {
        background: var(--background-light);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin: 1rem 2rem;
        padding: 0;
    }

    .call-btn {
        width: calc(100% - 4rem);
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 1rem 2rem;
        border-radius: 10px;
    }


}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 50px;
    }

    .nav-logo a img {
        width: 120px;
        max-height: 35px;
    }

    .hamburger {
        transform: scale(0.8);
    }

    .nav-menu {
        top: 50px;
        height: calc(100vh - 50px);
    }

    .nav-link {
        padding: 1rem;
        font-size: 1rem;
    }

    .call-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .navbar {
        padding: 0.2rem 0;
    }


}

/* Navbar Scroll Effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-logo a img {
    transform: scale(0.95);
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .nav-menu.active {
        animation: slideIn 0.3s ease-in-out;
    }

    @keyframes slideIn {
        from {
            left: -100%;
        }

        to {
            left: 0;
        }
    }
}

/* Touch friendly hover effects for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover {
        background: var(--background-light);
        color: var(--primary-color);
    }

    .call-btn:hover {
        transform: none;
    }

    .call-btn:active {
        transform: scale(0.95);
    }
}



/* Prevent body scroll when mobile menu is open */
body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .navbar,
    .nav-menu,
    .nav-link,
    .call-btn,
    .hamburger,
    .bar {
        transition: none;
    }

    .call-btn i {
        animation: none;
    }

    .nav-menu.active {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 2px solid var(--text-dark);
    }

    .nav-link {
        border: 1px solid transparent;
    }


}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    max-width: 100%;
    padding: 0 5rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    opacity: 0.3;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
    text-align: justify
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.btn-primary:hover {
    background: #f19a3e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Image Section - UPDATED */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: auto;
    /* Changed from 100% to auto */
    min-height: 400px;
    /* Added minimum height */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN FIX - Image will show fully now */
.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed from cover to contain */
    object-position: center;
    transition: transform 0.5s ease;
    max-height: 500px;
    /* Added max height */
}

.hero-main-image:hover .main-image {
    transform: scale(1.05);
}

/* Responsive Design - UPDATED */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
        max-width: 1100px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        height: 450px;
    }

    .hero-main-image {
        min-height: 350px;
    }

    .main-image {
        max-height: 400px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-image {
        height: 400px;
    }

    .hero-main-image {
        min-height: 300px;
    }

    .main-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-image {
        height: 350px;
        margin-top: 2rem;
    }

    .hero-main-image {
        min-height: 250px;
        border-radius: 15px;
    }

    .main-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 60px;
    }

    .hero-container {
        padding: 0 15px;
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .hero-image {
        height: 280px;
    }

    .hero-main-image {
        min-height: 200px;
        border-radius: 12px;
    }

    .main-image {
        max-height: 250px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-main-image {
        min-height: 220px;
    }

    .main-image {
        max-height: 280px;
    }
}

/* High resolution screens */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1500px;
        gap: 5rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .hero-image {
        height: 550px;
    }

    .hero-main-image {
        min-height: 450px;
    }

    .main-image {
        max-height: 500px;
    }
}

/* Loading state for image */


.main-image.loaded {
    background: none;
    animation: none;
}



/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .floating-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .floating-card,
    .hero-title,
    .hero-description,
    .hero-buttons,
    .hero-main-image,
    .main-image {
        animation: none;
    }

    .btn::before {
        display: none;
    }

    .floating-card:hover,
    .btn:hover {
        transform: none;
    }
}

/* about section */
.about {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side */
.about-left {
    padding-right: 30px;
}

.section-tag {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.about-description {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Clients Showcase */
.clients-showcase {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.main-client-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.main-client-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(0deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(360deg);
    }
}

.main-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

/* Right Side */
.about-right {
    padding-left: 30px;
}

.believe-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.believe-description {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: #2d3748;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 8px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    height: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about {
        padding: 60px 0;
    }

    .about-wrapper {
        gap: 40px;
    }

    .about-title {
        font-size: 42px;
    }

    .believe-section h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-left,
    .about-right {
        padding: 0;
    }

    .about-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .believe-section h3 {
        font-size: 28px;
    }

    .about-description,
    .believe-description {
        font-size: 16px;
    }

    .main-client-image {
        width: 200px;
        height: 200px;
    }

    .features-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .about-title {
        font-size: 30px;
    }

    .believe-section h3 {
        font-size: 24px;
    }

    .about-description,
    .believe-description,
    .features-list li {
        font-size: 15px;
    }

    .main-client-image {
        width: 180px;
        height: 180px;
    }

    .section-tag {
        font-size: 11px;
        padding: 6px 12px;
    }
}


/* Vision & Mission Section */
.vm-section {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 1;
}

.vm-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section Header */
.vm-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: vmFadeInUp 0.8s ease-out;
}

.vm-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.vm-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    margin: 1rem auto;
    border-radius: 2px;
}

.vm-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Vision Mission Content Grid */
.vm-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: vmFadeInUp 0.8s ease-out 0.2s both;
}

/* Vision & Mission Boxes */
.vm-vision-box,
.vm-mission-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-vision-box::before,
.vm-mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vm-vision-box:hover::before,
.vm-mission-box:hover::before {
    transform: scaleX(1);
}

.vm-vision-box:hover,
.vm-mission-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Icons */
.vm-vision-icon,
.vm-mission-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vm-vision-box:hover .vm-vision-icon,
.vm-mission-box:hover .vm-mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.vm-vision-icon i,
.vm-mission-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

/* Box Text */
.vm-vision-box h3,
.vm-mission-box h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.vm-vision-box p,
.vm-mission-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.vm-vision-box p:last-child,
.vm-mission-box p:last-child {
    margin-bottom: 0;
}

/* Highlights Grid */
.vm-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    animation: vmFadeInUp 0.8s ease-out 0.4s both;
}

.vm-highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.vm-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.vm-highlight-box:hover::before {
    left: 100%;
}

.vm-highlight-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.vm-highlight-box i {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.vm-highlight-box span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Animations */
@keyframes vmFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vm-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .vm-title {
        font-size: 2.2rem;
    }

    .vm-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .vm-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vm-vision-box,
    .vm-mission-box {
        padding: 2rem 1.5rem;
    }

    .vm-highlight-box {
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .vm-highlight-box i {
        font-size: 1.5rem;
    }

    .vm-highlight-box span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vm-highlights-grid {
        grid-template-columns: 1fr;
    }

    .vm-title {
        font-size: 1.8rem;
    }

    .vm-vision-box h3,
    .vm-mission-box h3 {
        font-size: 1.5rem;
    }
}


/* Products Section */
.prod-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.prod-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Header */
.prod-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: prodFadeInUp 0.8s ease-out;
}

.prod-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.prod-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    margin: 1rem auto;
    border-radius: 2px;
}

.prod-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Grid - Desktop: 5 per row */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    animation: prodFadeInUp 0.8s ease-out 0.4s both;
}

/* Product Items */
.prod-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.prod-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.prod-item:hover::before {
    transform: scaleX(1);
}

.prod-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Product Image/Icon */
.prod-image {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.prod-item:hover .prod-image {
    transform: scale(1.1) rotate(5deg);
}

.prod-image i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Product Name */
.prod-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

/* Animations */
@keyframes prodFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation for Items */
.prod-item {
    opacity: 0;
    animation: prodSlideIn 0.6s ease-out forwards;
}

.prod-item:nth-child(1) {
    animation-delay: 0.1s;
}

.prod-item:nth-child(2) {
    animation-delay: 0.2s;
}

.prod-item:nth-child(3) {
    animation-delay: 0.3s;
}

.prod-item:nth-child(4) {
    animation-delay: 0.4s;
}

.prod-item:nth-child(5) {
    animation-delay: 0.5s;
}

.prod-item:nth-child(6) {
    animation-delay: 0.6s;
}

.prod-item:nth-child(7) {
    animation-delay: 0.7s;
}

.prod-item:nth-child(8) {
    animation-delay: 0.8s;
}

.prod-item:nth-child(9) {
    animation-delay: 0.9s;
}

.prod-item:nth-child(10) {
    animation-delay: 1s;
}

@keyframes prodSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */

/* Tablet View - 3 per row */
@media (max-width: 1024px) {
    .prod-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile View - 2 per row */
@media (max-width: 768px) {
    .prod-section {
        padding: 4rem 0;
    }

    .prod-title {
        font-size: 2.2rem;
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .prod-item {
        padding: 1.5rem 1rem;
    }

    .prod-image {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .prod-image i {
        font-size: 1.8rem;
    }

    .prod-item h3 {
        font-size: 1.1rem;
    }
}

/* Small Mobile - Still 2 per row */
@media (max-width: 480px) {
    .prod-grid {
        gap: 1rem;
    }

    .prod-item {
        padding: 1.2rem 0.8rem;
    }

    .prod-image {
        width: 60px;
        height: 60px;
    }

    .prod-image i {
        font-size: 1.5rem;
    }

    .prod-item h3 {
        font-size: 1rem;
    }

    .prod-title {
        font-size: 1.8rem;
    }
}

/* Extra Large Screens - Still 5 per row */
@media (min-width: 1400px) {
    .prod-container {
        max-width: 1400px;
    }

    .prod-grid {
        gap: 2.5rem;
    }

    .prod-item {
        padding: 2.5rem 2rem;
    }

    .prod-image {
        width: 90px;
        height: 90px;
    }

    .prod-image i {
        font-size: 2.2rem;
    }
}


/* Solutions Section */
.sol-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.sol-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.03), rgba(var(--primary-color-rgb), 0.08));
    z-index: 1;
}

.sol-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.sol-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: solFadeInUp 0.8s ease-out;
}

.sol-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.sol-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    margin: 1rem auto;
    border-radius: 2px;
}

.sol-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Solutions Content Grid */
.sol-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

/* Image Section */
.sol-image-wrapper {
    position: relative;
    animation: solFadeInLeft 0.8s ease-out 0.2s both;
}

.sol-image-stack {
    position: relative;
    height: 450px;
    width: 100%;
}

.sol-image-item {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.sol-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sol-image-item:hover::before {
    transform: translateX(100%);
}

.sol-image-1 {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    animation: solFloat 3s ease-in-out infinite;
}

.sol-image-2 {
    bottom: 50px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    animation: solFloat 3s ease-in-out infinite 1.5s;
}

.sol-image-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.sol-image-item i {
    font-size: 4rem;
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

/* Floating Elements */
.sol-floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: solBob 2s ease-in-out infinite;
}

.sol-float-1 {
    top: 80px;
    right: 50px;
    animation-delay: 0.5s;
}

.sol-float-2 {
    bottom: 150px;
    left: 30px;
    background: linear-gradient(135deg, #10ac84, #00d2d3);
    animation-delay: 1s;
}

.sol-floating-element i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Text Section */
.sol-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: solFadeInRight 0.8s ease-out 0.4s both;
}

.sol-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sol-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.05), transparent);
    transition: left 0.6s ease;
}

.sol-item:hover::before {
    left: 100%;
}

.sol-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

/* Solution Icons */
.sol-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.sol-item:hover .sol-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Solution Content */
.sol-content-text h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.sol-content-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Animations */
@keyframes solFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes solFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes solFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes solFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes solBob {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sol-content {
        gap: 3rem;
    }

    .sol-image-stack {
        height: 350px;
    }

    .sol-image-item {
        width: 160px;
        height: 160px;
    }

    .sol-image-item i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .sol-section {
        padding: 4rem 0;
    }

    .sol-title {
        font-size: 2.2rem;
    }

    .sol-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .sol-image-stack {
        height: 300px;
        margin: 0 auto;
        max-width: 350px;
    }

    .sol-image-item {
        width: 140px;
        height: 140px;
    }

    .sol-image-item i {
        font-size: 2.5rem;
    }

    .sol-floating-element {
        width: 50px;
        height: 50px;
    }

    .sol-floating-element i {
        font-size: 1.2rem;
    }

    .sol-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .sol-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .sol-image-stack {
        height: 250px;
        max-width: 280px;
    }

    .sol-image-item {
        width: 120px;
        height: 120px;
    }

    .sol-image-item i {
        font-size: 2rem;
    }

    .sol-item {
        padding: 1.5rem;
    }

    .sol-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .sol-content-text h4 {
        font-size: 1.3rem;
    }

    .sol-title {
        font-size: 1.8rem;
    }

    .sol-floating-element {
        display: none;
    }
}

/* Staggered Animation for Solution Items */
.sol-item:nth-child(1) {
    animation: solSlideIn 0.6s ease-out 0.6s both;
}

.sol-item:nth-child(2) {
    animation: solSlideIn 0.6s ease-out 0.8s both;
}

.sol-item:nth-child(3) {
    animation: solSlideIn 0.6s ease-out 1s both;
}

@keyframes solSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Contact Section */
.contact {
    background: var(--background-light);
    padding: 4rem 1.25rem;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-subtext {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

/* Form Fields */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font: inherit;
    background: #fff;
    transition: var(--transition);
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(207, 78, 37, 0.1);
    outline: none;
}

.form-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-status {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Honeypot */
.hp-field {
    display: none !important;
}

/* Responsive */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}





/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 3rem 1.5rem 1rem;
    margin-top: 3rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-logo {
    width: 180px;
    margin-bottom: 1rem;
}

.footer-about p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-contact h3,
.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #ddd;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a,
.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}