<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: transparent;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff3535;
}

/* Add style for the new logo */
.nav-logo {
    height: 80px;
    width: auto;
    max-height: 90%;
    transition: all 0.3s ease;
}

.header.scrolled .nav-logo {
    height: 60px;
}

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

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

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

/* Enhanced Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(255, 53, 53, 0.2);
    border-color: rgba(255, 53, 53, 0.3);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-toggle.active {
    background: rgba(255, 53, 53, 0.3);
    border-color: rgba(255, 53, 53, 0.5);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ff3535;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ff3535;
}

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

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05); /* Even brighter - minimal overlay */
    z-index: 2;
}

/* Mobile Video Optimization */
@media (max-width: 768px) {
    .hero-video {
        object-position: center center;
    }

    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.1); /* Much brighter on mobile too */
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 53, 53, 0.1) 0%, transparent 50%), /* Changed from rgba(255, 107, 53, 0.1) */
                radial-gradient(circle at 70% 80%, rgba(255, 53, 53, 0.05) 0%, transparent 50%); /* Changed from rgba(255, 107, 53, 0.05) */
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"&gt;&lt;path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grid)"/&gt;&lt;/svg&gt;') repeat;
    opacity: 0.1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none; /* Hide SVG background when video is present */
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: float 6s ease-in-out infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-left {
    text-align: left;
}

.hero-tagline {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #f8f9fa;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #e9ecef;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.hero-right {
    position: relative;
}

.hero-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    color: #333;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3535 0%, #cc2a2a 100%);
}

.card-header {
    padding: 1.2rem 1.2rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
    line-height: 1.3;
}

.psira-badge {
    background: linear-gradient(135deg, #ff3535 0%, #cc2a2a 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 3px 8px rgba(255, 53, 53, 0.3);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.badge-text {
    font-size: 0.55rem;
    opacity: 0.9;
}

.badge-number {
    font-size: 0.65rem;
    font-weight: 700;
}

.services-showcase {
    padding: 0.8rem 1.2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

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

.service-item:hover {
    background: rgba(255, 53, 53, 0.02);
    border-radius: 6px;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.service-icon-mini {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(255, 53, 53, 0.1) 0%, rgba(255, 53, 53, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon-mini svg {
    width: 18px;
    height: 18px;
}

.service-item:hover .service-icon-mini {
    background: linear-gradient(135deg, rgba(255, 53, 53, 0.15) 0%, rgba(255, 53, 53, 0.1) 100%);
    transform: scale(1.05);
}

.service-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.1rem 0;
    color: #2c3e50;
}

.service-content p {
    font-size: 0.7rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.2;
}

.card-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.8rem 1.2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.stat-mini {
    text-align: center;
    flex: 1;
}

.stat-mini .stat-number {
    display: block;
    font-size: 0.75rem !important;
    font-weight: 700;
    color: #ff3535;
    line-height: 1;
}

.stat-mini .stat-label {
    display: block;
    font-size: 0.55rem !important;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}



.cta-button {
    display: inline-block;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button.primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: #ff3535;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    background: rgba(255, 53, 53, 0.2);
    border-radius: 50%;
    border: 2px solid #ff3535;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 53, 53, 0.3);
    transform: scale(1.1);
}

.service-icon svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    color: #495057;
    line-height: 1.7;
    flex-grow: 1;
}

/* Enhanced About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Main Content */
.about-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.about-text {
    padding-right: 2rem;
}

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

/* PSIRA Certification Banner */
.psira-banner {
    background: white;
    border-radius: 15px;
    margin: 2rem 0;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.psira-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.psira-logo {
    flex-shrink: 0;
}

.psira-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
}

.psira-info {
    flex: 1;
}

.psira-header h3 {
    color: #ff3535;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.psira-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.psira-reg {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.psira-info p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* About Image */
.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.main-about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay-text {
    transform: translateY(0);
}

.image-overlay-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.image-overlay-text p {
    margin: 0;
    opacity: 0.9;
}

/* Mission Values Section */
.mission-values-section {
    margin: 4rem 0;
}

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

.mission, .values, .vision {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #ff3535;
    transition: all 0.3s ease;
    text-align: center;
}

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

.mvv-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission h3, .values h3, .vision h3 {
    color: #ff3535;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

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

.mission li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mission li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #ff3535;
    font-weight: bold;
}

.values p, .vision p {
    line-height: 1.7;
    color: #555;
    text-align: left;
}

/* 24/7 Operations Banner */
.operations-banner {
    background: white;
    border-radius: 15px;
    margin: 3rem 0;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.operations-banner-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
}

.operations-image {
    flex-shrink: 0;
}

.operations-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.operations-info {
    flex: 1;
}

.operations-info h3 {
    color: #ff3535;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.operations-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.operations-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.operations-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 2px solid #ff3535;
    transition: all 0.3s ease;
}

.operations-features .feature-item:hover {
    background: #ff3535;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 53, 53, 0.3);
}

.feature-icon {
    font-size: 1.2rem;
}

.operations-features .feature-item span:last-child {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mobile Responsiveness for Operations Banner */
@media (max-width: 768px) {
    .operations-banner-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }

    .operations-img {
        width: 100%;
        max-width: 280px;
        height: 180px;
        margin: 0 auto;
    }

    .operations-info h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .operations-info p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .operations-features {
        justify-content: center;
        gap: 1rem;
    }

    .operations-features .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Stats Section */
.enhanced-stats {
    margin: 4rem 0;
    text-align: center;
}

.stats-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.stat {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #ff3535;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff3535;
    margin-bottom: 0.5rem;
    display: block;
}

.stat h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Company Highlights */
.company-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.highlight-image {
    flex-shrink: 0;
}

.highlight-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-content h4 {
    color: #ff3535;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grain)"/&gt;&lt;/svg&gt;') repeat;
    pointer-events: none;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.95);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon svg {
    transition: transform 0.3s ease;
}

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

.stat h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 53, 53, 0.1) 0%, transparent 50%); /* Changed from rgba(255, 107, 53, 0.1) */
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

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

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ff3535;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #2d2d2d;
    color: white;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

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

.contact-form button {
    background: #ff3535;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 53, 53, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff3535, #cc2a2a);
}

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

.quote-icon {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-author span {
    color: #ff3535;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff3535;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 53, 53, 0.2);
    border-radius: 50%;
    border: 2px solid #ff3535;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Enhanced Form Styling */
.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group input {
    padding-right: 50px;
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-group:focus-within .form-icon {
    opacity: 1;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff3535, #cc2a2a);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 53, 53, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 53, 53, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ff3535;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    padding: 0.3rem 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li:hover {
    opacity: 1;
}

.registration-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 53, 53, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ff3535;
}

.footer-psira {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-psira-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
    flex-shrink: 0;
}

.footer-psira-text p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.registration-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ff3535;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #ff3535;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: #ff3535;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design */
/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 2rem 2rem;
        gap: 0;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: 0 0 50px rgba(0,0,0,0.3);
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
        animation: slideInMobile 0.6s ease forwards;
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1.2rem 2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

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

    .nav-menu a:hover::before {
        left: 100%;
    }

    .nav-menu a:hover {
        background: rgba(255, 53, 53, 0.2);
        border-color: rgba(255, 53, 53, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 53, 53, 0.3);
        color: white;
    }

    .nav-menu a.active {
        background: rgba(255, 53, 53, 0.3);
        border-color: rgba(255, 53, 53, 0.5);
        color: white;
        box-shadow: 0 5px 15px rgba(255, 53, 53, 0.4);
    }

    @keyframes slideInMobile {
        to {
            opacity: 1;
            transform: translateX(0);
        }
        from {
            opacity: 0;
            transform: translateX(50px);
        }
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-right {
        display: flex;
        justify-content: center;
        width: 100%;
    }

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

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        max-width: 90%;
        width: 100%;
        margin: 0 auto;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .card-header {
        padding: 1rem 1rem 0.5rem;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        text-align: left;
    }

    .card-header h3 {
        font-size: 0.95rem;
        flex: 1;
    }

    .psira-badge {
        padding: 0.2rem 0.5rem;
        border-radius: 6px;
        font-size: 0.55rem;
    }

    .badge-text {
        font-size: 0.45rem;
    }

    .badge-number {
        font-size: 0.55rem;
    }

    .services-showcase {
        padding: 0.5rem 1rem;
    }

    .service-item {
        padding: 0.5rem 0;
        gap: 0.6rem;
    }

    .service-icon-mini {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }

    .service-icon-mini svg {
        width: 15px;
        height: 15px;
    }

    .service-content h4 {
        font-size: 0.75rem;
        margin-bottom: 0.05rem;
    }

    .service-content p {
        font-size: 0.6rem;
        line-height: 1.1;
    }

    .card-footer {
        padding: 0.5rem 1rem;
    }

    .stat-mini .stat-number {
        font-size: 0.65rem !important;
    }

    .stat-mini .stat-label {
        font-size: 0.45rem !important;
    }
    
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

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

    .about-text {
        padding-right: 0;
    }

    .psira-certification {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .main-about-image {
        height: 300px;
    }

    .mission-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .mission, .values, .vision {
        padding: 2rem;
    }

    .stats-title {
        font-size: 1.8rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat {
        padding: 2rem 1.5rem;
    }

    .company-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

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

    .navbar {
        padding: 0 15px;
    }

    .nav-toggle {
        padding: 6px;
        gap: 4px;
    }

    .nav-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .nav-menu {
        padding: 2rem 1rem 1rem;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .hero-right {
        padding: 0 1rem;
        display: flex;
        justify-content: center;
    }

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

    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-card {
        border-radius: 12px;
        margin: 0;
        width: 100%;
        max-width: 320px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .card-header {
        padding: 0.8rem 0.8rem 0.4rem;
        flex-direction: row;
        gap: 0.4rem;
    }

    .card-header h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .psira-badge {
        padding: 0.15rem 0.4rem;
        border-radius: 4px;
        font-size: 0.5rem;
    }

    .badge-text {
        font-size: 0.4rem;
    }

    .badge-number {
        font-size: 0.5rem;
    }

    .services-showcase {
        padding: 0.4rem 0.8rem;
    }

    .service-item {
        padding: 0.4rem 0;
        gap: 0.5rem;
    }

    .service-icon-mini {
        width: 22px;
        height: 22px;
        border-radius: 5px;
    }

    .service-icon-mini svg {
        width: 13px;
        height: 13px;
    }

    .service-content h4 {
        font-size: 0.7rem;
        margin-bottom: 0.02rem;
    }

    .service-content p {
        font-size: 0.55rem;
        line-height: 1.1;
    }

    .card-footer {
        padding: 0.4rem 0.8rem;
    }

    .stat-mini .stat-number {
        font-size: 0.55rem !important;
    }

    .stat-mini .stat-label {
        font-size: 0.4rem !important;
    }

    .mobile-hide {
        display: none;
    }

    .hero-right {
        display: none;
    }

    .service-card,
    .stat {
        padding: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .notification {
        left: 10px;
        right: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Enhanced mobile menu for very small screens */
    .nav-menu li {
        margin-bottom: 0.8rem;
    }

    .nav-menu a:hover {
        transform: translateY(-1px);
    }
}

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

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
    border-left: 4px solid #ff3535;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: #333;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 53, 53, 0.3);
    border-top: 3px solid #ff3535;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.loader-content p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff3535, #cc2a2a);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 53, 53, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 53, 53, 0.4);
}

/* Enhanced Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 53, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 53, 53, 0.5);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

.cta-button:hover {
    animation: glow 1s ease-in-out infinite;
}

.service-icon {
    animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 1s;
}

.service-card:nth-child(4) .service-icon {
    animation-delay: 1.5s;
}

/* Glass Morphism Effects */
.service-card,
.testimonial-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Improved Focus States */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ff3535;
    box-shadow: 0 0 0 3px rgba(255, 53, 53, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
    background: #ff3535;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc2a2a;
}

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

.service-card,
.stat {
    animation: fadeInUp 0.6s ease-out;
}

/* Services Page Specific Styles */

/* Active Navigation Link */
.nav-menu a.active {
    color: #ff3535;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff3535;
}

/* Services Hero Section */
.services-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    overflow: hidden;
    padding-top: 70px; /* Add padding instead of margin to prevent scroll issues */
}

.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 53, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 53, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff3535;
    margin-bottom: 0.5rem;
}

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

/* Services Overview Section */
.services-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Detailed Services Section */
.detailed-services {
    padding: 4rem 0;
    background: white;
}

.service-detail {
    margin-bottom: 6rem;
    transition: all 0.3s ease;
}

.service-detail:last-child {
    margin-bottom: 0;
}

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

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 53, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-detail:hover .service-detail-icon {
    background: rgba(255, 53, 53, 0.2);
    transform: scale(1.05);
}

.service-detail-title h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff3535, #cc2a2a);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-content.reverse .service-detail-body {
    grid-template-columns: 1fr 2fr;
}

.service-description {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ff3535;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-features h4,
.service-applications h4 {
    color: #ff3535;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.service-features li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #ff3535;
    font-weight: bold;
}

.service-applications {
    margin-top: 2rem;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #fff;
    color: #ff3535;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #ff3535;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #ff3535;
    color: white;
}

/* Service Images */
.service-image-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.service-image-container:hover .service-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-image-container:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Services CTA Section */
.services-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button.primary {
    background: linear-gradient(135deg, #ff3535, #cc2a2a);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 53, 53, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 53, 53, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #ff3535;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: #ff3535;
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Keep hero section as is */
    .services-hero {
        min-height: 100vh;
        padding: 6rem 0;
        margin-top: 0;
    }

    .services-hero-content {
        padding: 0 1.5rem;
    }

    .services-hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .services-hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .hero-stat {
        width: 100%;
        max-width: 300px;
        padding: 1.5rem;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
        color: #e9ecef;
    }

    /* Fix services content */
    .services-overview {
        padding: 3rem 1rem;
    }

    .detailed-services {
        padding: 2rem 1rem;
    }

    .service-detail {
        margin: 2rem 0;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-detail-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .service-detail-title h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .service-badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: rgba(255, 53, 53, 0.1);
        color: #ff3535;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .service-detail-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-description {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
    }

    .service-description p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .service-features h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #ff3535;
    }

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

    .service-features li {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

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

    .service-features li::before {
        content: 'âœ“';
        color: #ff3535;
        font-weight: bold;
    }

    .service-image-container {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .service-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .image-overlay {
        padding: 1.5rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }

    .image-overlay h4 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        color: #ffffff;
    }

    .image-overlay p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .service-applications {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
    }

    .service-applications h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #ff3535;
    }

    .application-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .tag {
        padding: 0.5rem 1rem;
        background: rgba(255, 53, 53, 0.1);
        color: #ff3535;
        border-radius: 20px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .tag:hover {
        background: rgba(255, 53, 53, 0.2);
        transform: translateY(-2px);
    }

    .services-cta {
        padding: 3rem 1.5rem;
    }

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

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

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

    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 5rem 0;
    }

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

    .services-hero p {
        font-size: 1rem;
        padding: 0;
    }

    .hero-stat {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-detail {
        margin: 1.5rem 0;
        padding: 1.5rem 1rem;
    }

    .service-detail-title h3 {
        font-size: 1.5rem;
    }

    .service-description {
        padding: 1.2rem;
    }

    .service-description p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 0.95rem;
    }

    .service-image {
        height: 250px;
    }

    .tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
  /* Stack service detail body vertically */
  .service-detail-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    border: none !important;
    padding: 0 !important;
  }

  /* Remove vertical red line on mobile */
  .service-detail-body::before,
  .service-detail-body::after {
    display: none !important;
  }

  /* Add padding to main text/features */
  .service-description, .service-features {
    padding: 1.2rem 1rem !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Improve spacing for Ideal For section */
  .service-applications {
    margin-bottom: 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    padding: 1rem 0.5rem !important;
    background: #f8f9fa !important;
  }

  /* Make badges smaller and better spaced */
  .application-tags .tag {
    font-size: 0.85rem !important;
    padding: 0.3rem 0.7rem !important;
    margin-bottom: 0.5rem !important;
    border-radius: 16px !important;
  }

  /* Add space between sections */
  .service-detail {
    margin-bottom: 2.5rem !important;
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid #eee !important;
  }

  /* Ensure text is not cramped */
  .service-description p, .service-features li {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .service-features ul {
    padding-left: 0;
  }
  .service-features li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.4rem 0 !important;
    margin-bottom: 0.2rem !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    position: relative;
  }
  .service-features li::before {
    content: 'âœ“';
    color: #ff3535;
    font-weight: bold;
    font-size: 1.1em;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2em;
    height: 1.2em;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
  }
}

/* Companies Logo Slider Section */
.companies-slider {
    background: #f8f9fa;
    padding: 60px 0;
    overflow: hidden;
}

.companies-slider h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.companies-slider h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff3535, #cc2a2a);
    border-radius: 2px;
}

.logo-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.logo-slider {
    display: flex;
    animation: slideLogos 30s linear infinite;
    width: calc(200px * 30); /* 15 logos * 2 for seamless loop */
    gap: 40px;
}

.logo-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.logo-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

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

.company-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 15)); /* Move by half the total width for seamless loop */
    }
}

/* Pause animation on hover */
.logo-slider-container:hover .logo-slider {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .companies-slider {
        padding: 40px 0;
    }
    
    .companies-slider h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .logo-slider {
        animation-duration: 20s; /* Faster on mobile */
        gap: 20px;
        width: calc(140px * 30);
    }
    
    .logo-slide {
        min-width: 120px;
        padding: 15px;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .company-name {
        font-size: 0.75rem;
    }
    
    @keyframes slideLogos {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 15));
        }
    }
}

@media (max-width: 480px) {
    .companies-slider h2 {
        font-size: 1.75rem;
    }
    
    .logo-slider {
        animation-duration: 15s;
        gap: 15px;
        width: calc(100px * 30);
    }
    
    .logo-slide {
        min-width: 90px;
        padding: 10px;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .company-name {
        font-size: 0.7rem;
    }
    
    @keyframes slideLogos {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 15));
        }
    }
}

/* About Section */</pre></body></html>