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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

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

/* Upper Bar */
.upper-bar {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.upper-bar.hidden {
    transform: translateY(-100%);
}

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

.upper-left,
.upper-right {
    display: flex;
    gap: 2rem;
}

.upper-left span,
.upper-right span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.upper-left i,
.upper-right i {
    color: #60a5fa;
}

.bbbee-icon {
    height: 20px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.bbbee-icon:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2);
}

/* Navigation */
.navbar {
    background: #f1f9ff;
    color: #1e3a8a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.navbar.scrolled {
    top: 0;
    background: rgba(241, 249, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    color: #1e3a8a;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
}

.nav-link.contact-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

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

.nav-link:hover:not(.contact-btn),
.nav-link.active:not(.contact-btn) {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e3a8a;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
}

.hamburger:hover {
    background: rgba(59, 130, 246, 0.1);
}

.hamburger i {
    transition: transform 0.3s ease;
}

.hamburger:active i {
    transform: scale(0.9);
}

/* Hero Section */
.hero {
    background: #1e3a8a; /* Solid fallback background */
    color: white;
    padding: 140px 0 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: opacity;
}

.hero-slide:first-child {
    opacity: 1; /* First slide visible by default */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(59, 131, 246, 0.4) 100%);
    z-index: 2;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 120px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    animation: wave-animation 4s ease-in-out infinite;
}

@keyframes wave-animation {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-25px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.highlight {
    color: #22d3ee;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 0.5rem;
}

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

/* Enquiry Button */
.enquiry-button-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1400;
    /* Lower than hamburger menu (2000) */
}

.enquiry-btn {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    border: none;
    padding: 20px 15px;
    border-radius: 25px 0 0 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: -5px 0 20px rgba(34, 211, 238, 0.3);
    position: relative;
    overflow: hidden;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    min-height: 120px;
    border-right: none;
}

.enquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.enquiry-btn:hover::before {
    transform: translateX(100%);
}

.enquiry-btn:hover {
    transform: translateX(-10px);
    box-shadow: -8px 0 30px rgba(34, 211, 238, 0.5);
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.enquiry-btn i:first-child {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.enquiry-btn span {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.enquiry-btn i:last-child {
    margin-top: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.enquiry-btn:hover i:last-child {
    transform: translateX(3px);
}

/* Enquiry Form Overlay */
.enquiry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.enquiry-form-container {
    position: absolute;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100%;
    background: #f1f9ff;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.enquiry-overlay.active .enquiry-form-container {
    right: 0;
}

.enquiry-form {
    padding: 2rem;
    height: 100%;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.form-header h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

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

.enquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    font-weight: 600;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.submit-enquiry-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.submit-enquiry-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    transform: translateY(-2px);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.section-curve-top,
.section-curve-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.section-curve-top {
    top: 0;
    height: 60px;
}

.section-curve-bottom {
    bottom: 0;
    height: 60px;
}

.section-curve-top svg,
.section-curve-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.welcome-image {
    position: relative;
}

.ceo-image {
    width: 600px;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.welcome-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.industry-highlight {
    color: #3b82f6;
    font-weight: 800;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: 1.1rem;
}

.welcome-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-item i {
    color: #22d3ee;
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid #3b82f6;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-Synced Animations */
.flip-card {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flip-card.animate-in {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
}

.roll-in {
    opacity: 0;
    transform: translateX(-100%) rotate(-360deg) scale(0.5);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.roll-in.animate-in {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease-out;
}

.slide-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease-out;
}

.slide-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.fade-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.fade-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.counter {
    animation: countUp 2s ease-out;
}

/* Company Info Section */
.company-info {
    padding: 100px 0;
    background: #f1f9ff;
}

.company-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.best-highlight {
    color: #22d3ee;
    font-weight: 800;
}

.company-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.company-stats {
    margin: 2.5rem 0;
}

.progress-item {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e3a8a;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #22d3ee);
    transition: width 2s ease;
}

.progress-percent {
    color: #3b82f6;
    font-weight: 700;
}

.visual-circle {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    border: 4px solid white;
}

/* Projects Showcase */
.projects-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.projects-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.project-number.counter-animate {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.project-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #22d3ee;
}

.project-text p {
    opacity: 0.8;
    font-size: 1.1rem;
}

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

.project-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.project-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.services-header p {
    font-size: 1.2rem;
    color: #64748b;
}

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

.service-card {
    background: #f1f9ff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-top: 4px solid #3b82f6;
}

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

.service-card i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Fire Fighting Section */
.fire-fighting {
    padding: 120px 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fire-fighting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 1px;
}

.promo-badge i {
    font-size: 1.2rem;
    animation: fire-flicker 1.5s ease-in-out infinite;
}

@keyframes fire-flicker {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.promo-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.promo-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.8;
}

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

.promo-feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.promo-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.promo-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.promo-feature-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.promo-cta {
    margin-top: 3rem;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f1f9ff;
    color: #dc2626;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.promo-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.promo-btn i {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/gallery/12.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.features-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.features-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    position: relative;
    padding: 2rem 0;
}

.timeline-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.timeline-icon i {
    font-size: 3rem;
    color: white;
}

.timeline-connector {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    margin-left: 58px;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: #f1f9ff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3b82f6;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(34, 211, 238, 0.4);
}

.timeline-content h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(34, 211, 238, 0.3);
}

.timeline-badge i {
    font-size: 1rem;
}

/* Specifications Section */
.specifications {
    padding: 80px 0;
    background: #f8fafc;
}

.specifications h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.spec-item {
    background: #f1f9ff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.spec-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #343434;
    color: white;
    padding: 40px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #22d3ee, #3b82f6, #22d3ee);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #22d3ee;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.cert-item i {
    color: #22d3ee;
    font-size: 0.9rem;
}

.cert-bbbee-icon {
    height: 14px;
    width: auto;
    margin-right: 2px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(180deg) brightness(1.2);
    transition: all 0.3s ease;
}

.cert-item:hover .cert-bbbee-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(180deg) brightness(1.4);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: #22d3ee;
    padding-left: 8px;
}

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

.contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item i {
    color: #22d3ee;
    font-size: 1rem;
    margin-top: 3px;
    min-width: 16px;
}

.contact-item strong {
    color: #22d3ee;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social h4 {
    margin-bottom: 0.8rem;
    color: #22d3ee;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: #22d3ee;
    transform: translateY(-2px);
}


.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-meta {
    font-style: italic;
    opacity: 0.6;
    color: #22d3ee;
    font-size: 0.8rem;
}
.footer-meta a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.gallery-item {
    aspect-ratio: 1;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 2rem;
}

/* Product Styles */
.product-showcase {
    padding: 80px 0;
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.team-member {
    background: #f1f9ff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #3b82f6;
}

.team-member h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team-quote {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.team-credentials {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

.team-credentials strong {
    color: #1e3a8a;
}

/* Contact Styles */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.contact-info {
    background: #f1f9ff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    width: 30px;
    margin-top: 5px;
}

.contact-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

.submit-btn {
    background: #3b82f6;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #2563eb;
}

/* Service Areas */
.service-areas {
    margin-top: 4rem;
    text-align: center;
}

.service-areas h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.area-item {
    background: #f1f9ff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    color: #1e3a8a;
}

.area-item i {
    color: #3b82f6;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    text-align: center;
}

.map-section h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
}

.map-section p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(241, 249, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
}

.map-info h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-info p {
    color: #64748b;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.map-info i {
    color: #3b82f6;
    margin-top: 2px;
    min-width: 14px;
}

.map-directions {
    margin-top: 1rem;
    text-align: center;
}

.directions-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
}

/* Team Page Specific Styles */

.team {
    padding: 80px 0;
    background: #f8fafc;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.team-intro p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.team-member {
    background: #f1f9ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.team-header {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.team-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, -20px) rotate(180deg);
    }
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.1) rotate(5deg);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.team-info {
    flex: 1;
    color: white;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    display: block;
    font-size: 1.1rem;
    color: #22d3ee;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: #f1f9ff;
    color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.team-quote {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    border-left: 5px solid #22d3ee;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: #22d3ee;
    opacity: 0.2;
}

.team-quote p {
    font-style: italic;
    color: #1e3a8a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    padding-left: 60px;
}

.team-credentials {
    padding: 2.5rem;
}

.credential-section {
    margin-bottom: 2rem;
}

.credential-section:last-child {
    margin-bottom: 0;
}

.credential-section h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e0f2fe;
}

.credential-section h4 i {
    color: #3b82f6;
    font-size: 1.3rem;
}

.credential-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.credential-section li {
    padding: 0.6rem 0;
    color: #64748b;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.credential-section li i {
    color: #22d3ee;
    margin-top: 4px;
    flex-shrink: 0;
}

.credential-section p {
    color: #64748b;
    line-height: 1.7;
    margin: 0.8rem 0;
}

.credential-section p strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Team Values Section */
.team-values {
    margin-top: 6rem;
    padding: 4rem 0;
    background: #f1f9ff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.values-header p {
    font-size: 1.1rem;
    color: #64748b;
}

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

.value-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e0f2fe;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.value-card:hover h3,
.value-card:hover p {
    color: white;
}

.value-card:hover .value-icon {
    background: #f1f9ff;
    color: #3b82f6;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Mobile Responsive for Products Page */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-stat-item {
        flex-direction: column;
        text-align: center;
    }

    .stat-info {
        text-align: center;
    }

    .product-intro h2 {
        font-size: 2rem;
    }

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

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

    .capacity-grid {
        grid-template-columns: 1fr;
    }

    .capacity-card.featured {
        transform: scale(1);
    }

    .capacity-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .upper-left {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .upper-left span {
        font-size: 0.7rem;
    }

    .hero {
        padding: 120px 0 40px;
    }

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

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

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

    .container {
        padding: 0 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 250px;
    }

    .welcome-text h2 {
        font-size: 2rem;
    }

    .section-curve-top,
    .section-curve-bottom {
        height: 30px;
    }

    .section-curve-top svg,
    .section-curve-bottom svg {
        height: 30px;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Effects */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Additional utility classes for template styling */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Ensure consistent spacing */
section {
    position: relative;
}

/* Enhanced hover effects for better UX */
.service-card:hover i {
    color: #22d3ee;
    transform: scale(1.1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(34, 211, 238, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 1;
}

.project-overlay {
    z-index: 2;
}

/* Product Page Specific Styles */

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a32 0%, #3b83f677 100%),
        url('assets/gallery/15.jpeg') no-repeat center center/cover fixed;
    color: white;
    padding: 400px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(34, 211, 238, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content>p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.header-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header-stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
}

.product-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.product-intro h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.product-intro p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.product-image-container {
    margin: 4rem 0;
    text-align: center;
}

.product-image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-image-wrapper:hover .product-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    background: #f1f9ff;
    color: #1e3a8a;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Product Features */
.product-features {
    margin: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #64748b;
}

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

.feature-card {
    background: #f1f9ff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #3b82f6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

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

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Capacity Options */
.capacity-options {
    margin: 6rem 0;
}

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

.capacity-card {
    background: #f1f9ff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e2e8f0;
}

.capacity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.capacity-card.featured {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: #1e40af;
    transform: scale(1.05);
}

.capacity-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.capacity-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(34, 211, 238, 0.4);
}

.capacity-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.capacity-card.featured .capacity-icon {
    background: #f1f9ff;
    color: #3b82f6;
}

.capacity-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.capacity-card.featured h3 {
    color: white;
}

.capacity-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 2rem;
}

.capacity-card.featured .capacity-range {
    color: #22d3ee;
}

.capacity-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.capacity-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #64748b;
}

.capacity-card.featured .capacity-features li {
    color: white;
}

.capacity-features i {
    color: #22d3ee;
    font-size: 1.1rem;
}

.capacity-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.capacity-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.capacity-card.featured .capacity-btn {
    background: #f1f9ff;
    color: #1e3a8a;
}

.capacity-card.featured .capacity-btn:hover {
    background: #22d3ee;
    color: white;
}

/* Mobile Responsive for Products Page */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-stat-item {
        flex-direction: column;
        text-align: center;
    }

    .stat-info {
        text-align: center;
    }

    .product-intro h2 {
        font-size: 2rem;
    }

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

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

    .capacity-grid {
        grid-template-columns: 1fr;
    }

    .capacity-card.featured {
        transform: scale(1);
    }

    .capacity-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .upper-left {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .upper-left span {
        font-size: 0.7rem;
    }

    .hero {
        padding: 120px 0 40px;
    }

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

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

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

    .container {
        padding: 0 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 250px;
    }

    .welcome-text h2 {
        font-size: 2rem;
    }

    .section-curve-top,
    .section-curve-bottom {
        height: 30px;
    }

    .section-curve-top svg,
    .section-curve-bottom svg {
        height: 30px;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Effects */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Additional utility classes for template styling */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Ensure consistent spacing */
section {
    position: relative;
}

/* Enhanced hover effects for better UX */
.service-card:hover i {
    color: #22d3ee;
    transform: scale(1.1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(34, 211, 238, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 1;
}

.project-overlay {
    z-index: 2;
}

/* Product Page Specific Styles */

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a32 0%, #3b83f677 100%),
        url('assets/gallery/15.jpeg') no-repeat center center/cover fixed;
    color: white;
    padding: 400px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(34, 211, 238, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content>p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.header-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header-stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Team Page Specific Styles */

.team {
    padding: 80px 0;
    background: #f8fafc;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.team-intro p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.team-member {
    background: #f1f9ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.team-header {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.team-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, -20px) rotate(180deg);
    }
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.1) rotate(5deg);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.team-info {
    flex: 1;
    color: white;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    display: block;
    font-size: 1.1rem;
    color: #22d3ee;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: #f1f9ff;
    color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.team-quote {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    border-left: 5px solid #22d3ee;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: #22d3ee;
    opacity: 0.2;
}

.team-quote p {
    font-style: italic;
    color: #1e3a8a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    padding-left: 60px;
}

.team-credentials {
    padding: 2.5rem;
}

.credential-section {
    margin-bottom: 2rem;
}

.credential-section:last-child {
    margin-bottom: 0;
}

.credential-section h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e0f2fe;
}

.credential-section h4 i {
    color: #3b82f6;
    font-size: 1.3rem;
}

.credential-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.credential-section li {
    padding: 0.6rem 0;
    color: #64748b;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.credential-section li i {
    color: #22d3ee;
    margin-top: 4px;
    flex-shrink: 0;
}

.credential-section p {
    color: #64748b;
    line-height: 1.7;
    margin: 0.8rem 0;
}

.credential-section p strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Team Values Section */
.team-values {
    margin-top: 6rem;
    padding: 4rem 0;
    background: #f1f9ff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.values-header p {
    font-size: 1.1rem;
    color: #64748b;
}

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

.value-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e0f2fe;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.value-card:hover h3,
.value-card:hover p {
    color: white;
}

.value-card:hover .value-icon {
    background: #f1f9ff;
    color: #3b82f6;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .visual-circle {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ceo-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    /* Navigation Mobile */
    .upper-bar {
        padding: 10px 0;
    }

    .upper-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .upper-left,
    .upper-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .upper-right {
        display: none;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .hamburger {
        display: block;
        z-index: 2000;
        /* Ensure it's above the menu */
        position: relative;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: #f1f9ff;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        padding: 80px 0 30px 0;
        /* Adjusted padding to avoid overlap */
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
        /* Below hamburger but above content */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 15px 30px;
        border-radius: 0;
        border-left: 4px solid transparent;
        justify-content: flex-start;
    }

    .nav-link:hover:not(.contact-btn),
    .nav-link.active:not(.contact-btn) {
        border-left-color: #3b82f6;
        background: rgba(59, 130, 246, 0.1);
        transform: translateY(0);
    }

    .nav-link.contact-btn {
        margin: 20px 30px;
        border-radius: 25px;
        text-align: center;
        justify-content: center;
    }

    /* Hero Mobile */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .hero-stats {
        gap: 1rem;
    }

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

    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Welcome Section Mobile */
    .welcome-text h2 {
        font-size: 2rem;
    }

    /* Company Info Mobile */
    .company-text h2 {
        font-size: 2rem;
    }

    /* Projects Mobile */
    .projects-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .project-number {
        font-size: 5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    /* Services Mobile */
    .services-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Fire Fighting Mobile */
    .promo-title {
        font-size: 2.5rem;
    }

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

    /* Features Timeline Mobile */
    .features-header h2 {
        font-size: 2rem;
        flex-direction: column;
    }

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

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

    .timeline-icon i {
        font-size: 2rem;
    }

    .timeline-connector {
        display: none;
    }

    .timeline-content {
        border-left: none;
        border-top: 5px solid #3b82f6;
    }

    .timeline-number {
        top: -15px;
        right: 50%;
        transform: translateX(50%);
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 200px 0 60px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-stat-item {
        flex-direction: row;
        text-align: left;
    }

    /* Enquiry Button Mobile */
    .enquiry-button-container {
        bottom: 20px;
        top: auto;
        transform: none;
        max-width: 100vw;
        overflow: hidden;
        right: 0;
    }

    .enquiry-btn {
        writing-mode: horizontal-tb;
        flex-direction: row;
        padding: 15px 20px;
        border-radius: 25px;
        min-height: auto;
        box-shadow: 0 -5px 20px rgba(34, 211, 238, 0.3);
    }

    .enquiry-btn span {
        font-size: 0.9rem;
    }

    .enquiry-form-container {
        width: 100%;
        right: -100%;
    }

    /* Team Page Mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-header {
        flex-direction: column;
        text-align: center;
    }

    .team-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .team-info h3 {
        font-size: 1.5rem;
    }

    .team-role {
        font-size: 1rem;
    }

    .team-social {
        justify-content: center;
    }

    .team-quote p {
        padding-left: 0;
        font-size: 0.95rem;
    }

    .quote-icon {
        font-size: 2rem;
        top: 10px;
        left: 10px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .team-intro h2 {
        font-size: 2rem;
        flex-direction: column;
    }

    .values-header h2 {
        font-size: 2rem;
        flex-direction: column;
    }

    /* Contact Page Mobile */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-overlay {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }

    .service-areas h2 {
        font-size: 1.8rem;
        flex-direction: column;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    /* Extra Small Mobile */
    .upper-left span {
        font-size: 0.75rem;
    }

    .logo-img {
        height: 35px;
    }

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

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .welcome-text h2,
    .company-text h2,
    .services-header h2 {
        font-size: 1.8rem;
    }

    .project-number {
        font-size: 4rem;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-curve-top,
    .section-curve-bottom {
        height: 30px;
    }

    .section-curve-top svg,
    .section-curve-bottom svg {
        height: 30px;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-content>p {
        font-size: 1rem;
    }

    .enquiry-btn {
        padding: 12px 15px;
    }

    .enquiry-btn i:first-child {
        font-size: 1.2rem;
    }

    .enquiry-btn span {
        font-size: 0.8rem;
    }

    .team-header {
        padding: 2rem 1.5rem;
    }

    .team-quote,
    .team-credentials {
        padding: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .footer-section {
        padding: 0 10px;
    }
}