/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    animation: slideDown 2s ease-out;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    padding-top: 70px; /* Account for fixed navbar */
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ff4757 100%);
    background-size: 200% 100%;
    color: white;
    padding: 16px 0;
    position: fixed;
    top: 70px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4);
    animation: slideDown 0.5s ease-out, gradientShift 3s ease infinite;
    overflow: hidden;
    position: relative;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.urgency-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.urgency-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.urgency-item:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

.urgency-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.urgency-icon-wrapper.urgent-badge {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    animation: rotateIcon 2s linear infinite;
    position: relative;
}

.urgency-icon-wrapper.urgent-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
    z-index: -1;
    animation: pulseGlow 1.5s ease-in-out infinite;
    opacity: 0.7;
}

.badge-text {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: bounceBadge 1s ease-in-out infinite;
}

@keyframes bounceBadge {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.urgency-icon {
    font-size: 1.3rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

.urgency-icon-wrapper.urgent-badge .urgency-icon {
    animation: iconSpin 3s linear infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    75% {
        transform: rotate(270deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.urgency-text {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.urgency-text strong {
    font-weight: 800;
    font-size: 1.1rem;
}

.urgency-text.urgent-text {
    font-size: 1.05rem;
}

.call-now {
    display: inline-block;
    color: #ffd700;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: flashText 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
}

@keyframes flashText {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulseItem 2s ease-in-out infinite;
}

.pulse-animation.delay-1 {
    animation-delay: 0.3s;
}

.pulse-animation.delay-2 {
    animation-delay: 0.6s;
}

.flash-animation {
    animation: flashItem 1s ease-in-out infinite, pulseItem 2s ease-in-out infinite;
}

@keyframes pulseItem {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255,255,255,0);
    }
}

@keyframes flashItem {
    0%, 100% {
        background: rgba(255,255,255,0.15);
    }
    50% {
        background: rgba(255,255,255,0.3);
    }
}

.urgency-divider {
    width: 2px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .urgency-divider {
        display: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

/* Dropdown Navigation */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #3498db;
    padding-left: 25px;
}

.dropdown-item.active {
    background: #3498db;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3498db;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Enquiry Form Section */
.enquiry-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.enquiry-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.enquiry-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.enquiry-form-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.enquiry-form-header p {
    color: #7f8c8d;
    font-size: 1rem;
}

.quick-enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quick-enquiry-form .form-group {
    margin-bottom: 1rem;
}

.quick-enquiry-form input,
.quick-enquiry-form select,
.quick-enquiry-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.quick-enquiry-form input:focus,
.quick-enquiry-form select:focus,
.quick-enquiry-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.quick-enquiry-form .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* USP Section */
.usp-section {
    padding: 80px 0;
    background: white;
}

.usp-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.usp-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-5px);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.usp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.usp-card p {
    color: #7f8c8d;
    line-height: 1.8;
}

/* Trust Badges Section */
.trust-badges {
    padding: 80px 0;
    background: #f8f9fa;
}

.trust-badges h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.badge-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.badge-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.badge-item p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-label {
    position: absolute;
    right: 70px;
    background: #2c3e50;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover .floating-label {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.floating-label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #2c3e50;
}

.floating-call {
    background: #3498db;
}

.floating-call:hover {
    background: #2980b9;
}

.floating-whatsapp {
    background: #25D366;
}

.floating-whatsapp:hover {
    background: #128C7E;
}

.floating-enquiry {
    background: #667eea;
}

.floating-enquiry:hover {
    background: #5568d3;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #e9ecef;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #dc3545;
    color: white;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Stats Section */
.stats {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 0;
}

.testimonial-content {
    position: relative;
}

.testimonial-content i {
    font-size: 2rem;
    color: #3498db;
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #3498db;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-btn:hover:not(:disabled) {
    background: #2980b9;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #3498db;
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: #3498db;
    opacity: 0.7;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

.mission-values {
    background: #f8f9fa;
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-member p {
    color: #7f8c8d;
}

/* Products Page Styles */
.products {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.products-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 0;
    transition: transform 0.3s ease;
}

.product-block:hover {
    transform: translateY(-5px);
}

.product-image-block {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-image-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: white;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-product {
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-features {
    list-style: none;
    margin: 1rem 0;
}

.product-features li {
    padding: 0.3rem 0;
    color: #7f8c8d;
}

.product-features li:before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* FG Fluid Solutions Product Page Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.brand-intro {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 3rem;
    font-style: italic;
}

.fg-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.fg-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fg-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.fg-product-image {
    width: 100%;
    height: 350px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fg-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    background: white;
}

.fg-product-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fg-product-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.fg-product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.fg-product-features {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}

.fg-product-features li {
    padding: 0.5rem 0;
    color: #2c3e50;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fg-product-features li i {
    color: #27ae60;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fg-product-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Product Details Section */
.product-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.detail-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.detail-content h4 {
    font-size: 1.3rem;
    color: #3498db;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.detail-content h4:first-child {
    margin-top: 0;
}

.detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detail-content ul li {
    padding: 0.5rem 0;
    color: #2c3e50;
    padding-left: 1.5rem;
    position: relative;
}

.detail-content ul li:before {
    content: '•';
    color: #3498db;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    padding: 100px 0 20px;
    background: #f8f9fa;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2980b9;
}

.breadcrumb span {
    color: #bdc3c7;
}

/* Product List Grid */
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-list-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
}

.product-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-list-image {
    width: 40%;
    min-width: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: white;
}

.product-list-content {
    width: 60%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-list-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.product-type {
    font-size: 0.95rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.product-specs {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.product-specs li {
    padding: 0.5rem 0;
    color: #2c3e50;
    font-size: 0.95rem;
    border-bottom: 1px solid #ecf0f1;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li strong {
    color: #2c3e50;
    margin-right: 0.5rem;
}

/* Partners Page Styles */
.partnership-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.partnership-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.current-partners {
    padding: 80px 0;
}

.current-partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-card-link:hover .partner-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.partner-card[data-has-products="true"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
    text-decoration: none;
    text-align: center;
}

.partner-badge:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

.partner-badge i {
    margin-right: 0.5rem;
}

.btn-products-available {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn-products-available:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

.btn-products-available:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
}

.btn-products-available i {
    margin-right: 0.5rem;
}

.partner-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.partnership-type {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
    display: inline-block;
}

.partnership-types {
    background: #f8f9fa;
    padding: 80px 0;
}

.partnership-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.type-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.type-card ul {
    list-style: none;
    margin-top: 1rem;
}

.type-card ul li {
    padding: 0.3rem 0;
    color: #7f8c8d;
}

.type-card ul li:before {
    content: '•';
    color: #3498db;
    font-weight: bold;
    margin-right: 0.5rem;
}

.become-partner {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.become-partner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.become-partner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.partner-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item i {
    color: #3498db;
}

/* Industry Page Styles */
.industry-overview {
    padding: 60px 0;
    text-align: center;
}

.industry-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.industry-overview p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.industries {
    padding: 80px 0;
    background: #f8f9fa;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.industry-icon i {
    font-size: 3rem;
    color: #3498db;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.industry-features {
    list-style: none;
    margin: 1rem 0;
}

.industry-features li {
    padding: 0.3rem 0;
    color: #7f8c8d;
}

.industry-features li:before {
    content: '•';
    color: #3498db;
    font-weight: bold;
    margin-right: 0.5rem;
}

.industry-stats {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.industry-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.case-studies {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-study {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-content {
    padding: 1.5rem;
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.case-industry {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
    display: inline-block;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.map-section {
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* CTA Section */
.cta {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 120px; /* Account for navbar + urgency banner */
    }

    .urgency-banner {
        top: 70px;
        padding: 12px 0;
    }

    .urgency-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .urgency-item {
        width: 100%;
        max-width: 90%;
        justify-content: center;
        padding: 10px 20px;
    }

    .urgency-text {
        font-size: 0.9rem;
    }

    .urgency-text strong {
        font-size: 1rem;
    }

    .urgency-icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .urgency-icon {
        font-size: 1.1rem;
    }

    .hero {
        padding: 120px 0 60px;
        margin-top: 50px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .enquiry-form-wrapper {
        padding: 1.5rem;
    }

    .quick-enquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .floating-label {
        display: none;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 10px;
    }

    .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;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        display: block;
        font-size: 1.1rem;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0.5rem 0 0 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active {
        max-height: 300px;
    }

    .dropdown-item {
        padding: 0.6rem 2rem;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.95rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .page-hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .features-grid,
    .products-grid,
    .industries-grid,
    .partners-grid,
    .team-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-image-block {
        height: 300px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .fg-products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fg-product-image {
        height: 280px;
    }

    .fg-product-content {
        padding: 1.5rem;
    }

    .fg-product-content h3 {
        font-size: 1.6rem;
    }

    .fg-product-cta {
        flex-direction: column;
    }

    .fg-product-cta .btn {
        width: 100%;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .breadcrumb-section {
        padding: 90px 0 15px;
    }

    .breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .product-list-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-list-card {
        flex-direction: column;
    }

    .product-list-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .product-list-content {
        width: 100%;
        padding: 1.5rem;
    }

    .product-list-content h3 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    @media (max-width: 768px) {
        .testimonial-card {
            flex: 0 0 100%;
        }

        .testimonials-carousel-wrapper {
            padding: 0 50px;
        }

        .carousel-prev {
            left: 5px;
        }

        .carousel-next {
            right: 5px;
        }

        .carousel-btn {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }
    }

    .feature-card,
    .product-card,
    .industry-card,
    .partner-card,
    .team-member,
    .testimonial-card {
        padding: 1.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .mission-grid,
    .benefits-grid,
    .types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card,
    .benefit-card,
    .type-card {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .partner-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .benefit-item {
        justify-content: center;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .page-hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-link {
        padding: 0.7rem 0.8rem;
        font-size: 1rem;
    }

    .dropdown-item {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .feature-card,
    .product-card,
    .industry-card,
    .partner-card,
    .team-member,
    .mission-card,
    .benefit-card,
    .type-card,
    .contact-card,
    .faq-item,
    .testimonial-card {
        padding: 1.2rem;
    }

    .story-text h2 {
        font-size: 1.8rem;
    }

    .story-text p {
        font-size: 0.95rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .form-container {
        padding: 1.2rem;
        margin: 0 5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 0.95rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .nav-logo img {
        height: 30px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .feature-card,
    .product-card,
    .industry-card,
    .partner-card,
    .team-member,
    .mission-card,
    .benefit-card,
    .type-card,
    .contact-card,
    .faq-item,
    .testimonial-card {
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .feature-card:hover,
    .product-card:hover,
    .industry-card:hover,
    .partner-card:hover,
    .team-member:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    .nav-link:hover {
        color: #3498db;
    }
}

/* Prevent zoom on input focus for iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"] {
        font-size: 16px;
    }
}

/* Industry Carousel Styles */
.industry-carousel-section {
    padding: 80px 0;
    background: white;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.industry-main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.industry-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    font-weight: 300;
}

.industry-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.industry-carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.industry-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.industry-slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.industry-slide.active {
    display: flex;
}

.industry-slide-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.industry-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-slide-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.industry-slide-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    text-align: justify;
    text-align-last: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid #3498db;
    color: #3498db;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #3498db;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: -80px;
}

.carousel-arrow-right {
    right: -80px;
}

.industry-pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.industry-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #3498db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-pagination-dot.active {
    background: #3498db;
    transform: scale(1.2);
}

.industry-pagination-dot:hover {
    background: rgba(52, 152, 219, 0.5);
}

@media (max-width: 1200px) {
    .carousel-arrow-left {
        left: -60px;
    }
    
    .carousel-arrow-right {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .industry-main-title {
        font-size: 2rem;
    }
    
    .industry-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .industry-slide {
        padding: 2rem 1rem;
    }
    
    .industry-slide-image {
        width: 200px;
        height: 200px;
    }
    
    .industry-slide-title {
        font-size: 1.5rem;
    }
    
    .industry-slide-description {
        font-size: 0.9rem;
        text-align: left;
        text-align-last: left;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-arrow-left {
        left: 10px;
    }
    
    .carousel-arrow-right {
        right: 10px;
    }
    
    .industry-pagination {
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .industry-pagination-dot {
        width: 10px;
        height: 10px;
    }
}

/* Partner Products Modal Styles */
.partner-products-modal {
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
}

.partner-products-modal .modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.partner-products-modal .modal-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.partner-products-modal .modal-header p {
    color: #666;
    font-size: 1rem;
}

.partner-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.partner-product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.partner-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f8f9fa;
}

.partner-product-content {
    padding: 1.5rem;
}

.partner-product-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.partner-product-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .partner-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .partner-products-modal {
        max-width: 95%;
        padding: 1.5rem;
    }

    .partner-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}
