* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2196F3;
}

.logo img {
    height: 60px;
    width: auto;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2196F3;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #2196F3;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background: white;
    color: #2196F3;
}

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

.carousel-container {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.carousel-slides {
    width: 100%;
    height: auto;
    position: relative;
}

.carousel-slide {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2196F3;
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.service-card:hover .service-hover-image {
    opacity: 0.9;
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.solutions-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.solutions-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-preview-card {
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.solution-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #2196F3;
}

.solution-preview-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.solution-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-preview-card:hover .solution-preview-img img {
    transform: scale(1.05);
}

.solution-icon-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.solution-icon-badge i {
    font-size: 1.2rem;
}

.solution-preview-info {
    padding: 1.5rem;
}

.solution-preview-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.solution-preview-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-preview-card {
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #2196F3;
}

.product-preview-img {
    height: 180px;
    overflow: hidden;
    background: #f5f7fa;
}

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

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

.product-preview-info {
    padding: 1.2rem 1.3rem 1.4rem;
}

.product-preview-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #333;
}

.product-preview-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.45;
}

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

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2.5rem;
}

/* Previous Work Section */
.previous-work {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-feed {
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-header {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #E4405F;
    font-weight: 600;
}

.instagram-header i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-embed {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-embed .instagram-media {
    max-width: 100% !important;
    width: 100% !important;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.post-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-caption {
    color: white;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
}

.post-stats {
    display: flex;
    gap: 1rem;
    color: white;
    font-weight: 600;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E4405F, #F56040);
    color: white;
}

.instagram-cta .btn-primary:hover {
    background: linear-gradient(135deg, #F56040, #E4405F);
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: #2196F3;
}

.location-map {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 300px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.location-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.location-features span {
    color: #2196F3;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #2196F3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.owner-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #2196F3;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.contact-item a {
    color: #2196F3;
    text-decoration: none;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2196F3;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #2196F3;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 600;
}

.story-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

.owner-bio {
    padding: 80px 0;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.owner-photo-container {
    position: relative;
    text-align: center;
}

.professional-photo {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 4px solid #2196F3;
}

.photo-overlay {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #2196F3;
}

.photo-overlay h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.photo-overlay p {
    margin: 0;
    color: #2196F3;
    font-weight: 600;
    font-size: 0.9rem;
}

.bio-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.bio-text h3 {
    font-size: 1.5rem;
    color: #2196F3;
    margin-bottom: 1.5rem;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.expertise-areas {
    margin-top: 2rem;
}

.expertise-areas h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.expertise-areas ul {
    list-style: none;
    padding: 0;
}

.expertise-areas li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.expertise-areas i {
    color: #2196F3;
    margin-right: 0.5rem;
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #2196F3;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.nav-menu a.active {
    color: #2196F3;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .story-content,
    .bio-content,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-stats {
        justify-content: center;
    }
    
    .professional-photo {
        width: 200px;
        height: 240px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Mobile Navigation Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    .nav-menu a {
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    .whatsapp-float a {
        width: 56px;
        height: 56px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .carousel-container {
        max-width: 300px;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        min-width: auto;
    }
    
    .location-map iframe {
        width: 100%;
        height: 250px;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .product-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
/* Products Page Styles */
.products-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.products-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.products-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.product-categories {
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #2196F3;
    background: transparent;
    color: #2196F3;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2196F3;
    color: white;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.category-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.product-section {
    margin-bottom: 4rem;
}

.product-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-section h3 i {
    color: #2196F3;
}

.product-card.detailed {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card.detailed:hover {
    transform: translateY(-5px);
    border-color: #2196F3;
}

.product-card.detailed h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.product-features i {
    color: #4CAF50;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-specs span {
    background: #f0f8ff;
    color: #2196F3;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.spares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spare-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spare-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spare-category h3 i {
    color: #2196F3;
}

.spare-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.spare-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.spare-item:hover {
    background: #e3f2fd;
}

.spare-item span:first-child {
    color: #333;
    font-weight: 500;
}

.price {
    color: #2196F3;
    font-weight: 600;
}

.products-cta {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.products-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.products-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Arif Profile Page Styles */
.profile-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.profile-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.profile-placeholder i {
    font-size: 4rem;
    color: white;
}

.profile-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-info h2 {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 400;
}

.profile-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.profile-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #2196F3;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #128C7E;
}

.expertise {
    padding: 80px 0;
    background: #f8f9fa;
}

.expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.expertise-card p {
    color: #666;
    line-height: 1.6;
}

.experience {
    padding: 80px 0;
}

.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: #e0e0e0;
    margin-left: -1px;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    background: #2196F3;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    height: fit-content;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content h4 {
    font-size: 1rem;
    color: #2196F3;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.certifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.cert-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-3px);
}

.cert-item i {
    color: #FFD700;
    font-size: 1.5rem;
}

.cert-item span {
    color: #333;
    font-weight: 500;
}

.profile-contact-section {
    padding: 80px 0;
}

.profile-contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.profile-contact-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 3rem;
    color: #2196F3;
    margin-bottom: 1rem;
}

.contact-option h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-option p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .products-hero h1,
    .profile-info h1 {
        font-size: 2.5rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .spares-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image img,
    .profile-placeholder {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .profile-contact {
        justify-content: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-hero h1,
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .category-content h2,
    .expertise h2,
    .experience h2,
    .certifications h2,
    .profile-contact-section h2 {
        font-size: 2rem;
    }
    
    .product-card.detailed,
    .spare-category,
    .expertise-card,
    .contact-option {
        padding: 1.5rem;
    }
}
@media (max-width: 768px) {
    .solutions-preview-grid,
    .product-preview-grid {
        grid-template-columns: 1fr;
    }

    .solution-preview-img {
        height: 180px;
    }

    .product-preview-img {
        height: 170px;
    }
}

@media (max-width: 480px) {
    .solution-preview-img {
        height: 160px;
    }

    .product-preview-img {
        height: 150px;
    }
}
/* Dual Founders Layout */
.bio-content.reverse {
    grid-template-columns: 2fr 1fr;
    margin-top: 4rem;
}

.bio-content.reverse .owner-photo-container {
    order: 2;
}

.bio-content.reverse .bio-text {
    order: 1;
}

.contact-info {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: #f0f8ff;
    color: #2196F3;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2196F3;
}

.contact-link:hover {
    background: #2196F3;
    color: white;
    transform: translateY(-2px);
}

.contact-link.whatsapp {
    background: #f0fff4;
    color: #25D366;
    border-color: #25D366;
}

.contact-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Mobile responsive for dual founders */
@media (max-width: 768px) {
    .bio-content.reverse {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }
    
    .bio-content.reverse .owner-photo-container,
    .bio-content.reverse .bio-text {
        order: unset;
    }
    
    .contact-info {
        justify-content: center;
    }
}
/* Home Page Founders Section */
.founders-section {
    margin-bottom: 2rem;
}

.founders-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.founder-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-3px);
}

.founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid #2196F3;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.founder-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.founder-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.founder-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.founder-contact:hover {
    background: #1976D2;
    transform: translateY(-1px);
}

/* Mobile responsive for founders section */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .founder-card {
        padding: 1rem;
    }
    
    .founder-photo {
        width: 60px;
        height: 60px;
    }
}
/* Product Gallery Styles */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-item:hover {
    transform: translateY(-5px);
    border-color: #2196F3;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.img-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.img-placeholder span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile responsive for product gallery */
@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-img {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-img {
        height: 160px;
    }
}
/* Custom Hero Backgrounds */
.solutions-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/our_solution.png') center/cover no-repeat;
}

.products-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/our_product.png') center/cover no-repeat;
}
.about-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/about_us.png') center/cover no-repeat;
}
/* Amazon-style Product Layout */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.product-item-detailed {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-item-detailed:hover {
    border-color: #2196F3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image-container {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.product-item-detailed:hover .product-image-container img {
    transform: scale(1.05);
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.product-features i {
    color: #4CAF50;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.product-specs span {
    background: #e3f2fd;
    color: #1976D2;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Mobile responsive for Amazon-style layout */
@media (max-width: 768px) {
    .product-item-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-details h3 {
        font-size: 1.3rem;
    }
    
    .product-specs {
        gap: 0.5rem;
    }
    
    .product-specs span {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .product-item-detailed {
        padding: 1rem;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-details h3 {
        font-size: 1.2rem;
    }
}
/* Color Variants */
.color-variants {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.color-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.color-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.color-dot.active {
    border-color: #2196F3 !important;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.3);
}
/* Solutions Page Styles */
.solutions-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.approach-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-item i {
    font-size: 2.5rem;
    color: #2196F3;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
}

.solutions-applications {
    padding: 80px 0;
}

.solution-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.solution-icon i {
    font-size: 3rem;
    color: #2196F3;
}

.solution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.problem, .solution {
    padding: 1rem;
    border-radius: 10px;
}

.problem {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.solution {
    background: #e8f5e8;
    border-left: 4px solid #4caf50;
}

.problem h4, .solution h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.problem p, .solution p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.benefits span {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits i {
    font-size: 0.8rem;
}

.key-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #2196F3;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.solutions-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-buttons .btn-primary {
    background: white;
    color: #2196F3;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solution-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .intro-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .solution-content h3 {
        font-size: 1.3rem;
    }
    
    .solution-item {
        padding: 1.5rem;
    }
}
