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

:root {
    --primary-color: #1e5fa8;
    --secondary-color: #2d7fc5;
    --accent-color: #ff6b35;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 3px 0;
    font-size: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
    max-height: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-top.hidden {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 600px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
    margin: 0 auto;
}

/* Header Social Media Icons */
.header-social {
    display: flex;
    gap: 12px;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.header-social-icon {
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    background: transparent;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    padding: 5px;
}

/* Ensure X (Twitter) icon matches other icons */
.fa-x-twitter {
    color: var(--white) !important;
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect for X icon */
.header-social-icon:hover .fa-x-twitter {
    opacity: 1;
    transform: translateY(-2px);
}

.header-social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #ffffff;
    background: transparent;
    box-shadow: none;
}

/* Responsive Header Social Media Icons */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
        max-height: none;
        height: auto;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .contact-info span {
        font-size: 12px;
        justify-content: center;
    }
    
    .header-social {
        order: -1;
        margin-bottom: 5px;
    }
    
    .header-social-icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info span {
        font-size: 10px;
    }
    
    .header-social {
        gap: 8px;
    }
    
    .header-social-icon {
        font-size: 14px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 10px 0;
}

.logo-button {
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px;
    background: transparent;
}

.logo-button:hover {
    background: rgba(30, 95, 168, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 95, 168, 0.15);
}

.logo-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(30, 95, 168, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-text p {
    color: var(--text-light);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    font-family: 'Poppins', sans-serif;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem; /* Reduced from 1.05rem to 0.9rem */
    letter-spacing: 0.3px; /* Slightly reduced letter spacing */
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px); 
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Transform hamburger into a close (X) icon when active */
.hamburger.active span {
    background: var(--text-dark);
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Slightly enlarge touch target */
.hamburger {
    padding: 8px;
    border-radius: 6px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    height: 550px;
    background: linear-gradient(rgba(3, 45, 87, 0.4), rgba(0, 51, 102, 0.5)), 
                url('img/request image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 51, 102, 0.45) 0%, 
        rgba(0, 71, 142, 0.4) 50%, 
        rgba(0, 91, 182, 0.35) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #d2542b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Hero Section Button - Orange */
.hero .btn-primary {
    background: #ff6b35;
    color: var(--white);
}

.hero .btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

/* About Carousel - Full Card Coverage */
.about-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

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

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.about-image .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    transform: translateY(0);
    transition: none;
    z-index: 2;
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 30px;
    text-align: center;
    color: white;
}

.slide-content p {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    margin: 0;
    padding: 0;
}

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

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

.indicator:hover {
    background: var(--primary-color);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 18px;
}

.about-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
}

.service-image .image-placeholder {
    background: linear-gradient(135deg, #d0e3f0 0%, #a8c8e0 100%);
    border-radius: 0;
}

.quality-image .image-placeholder {
    background: linear-gradient(135deg, #e8f4f8 0%, #c8e4f0 100%);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2);
    color: #888888; /* Light gray color */
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-light);
    padding: 80px 0;
}

.why-choose-us .features-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    margin-top: 50px;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
}

.why-choose-us .features-grid::-webkit-scrollbar {
    display: none;
}

.why-choose-us .feature-box {
    flex: 1 0 200px;
    background: white;
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e8f0fe;
    box-sizing: border-box;
    min-height: 280px;
    justify-content: space-between;
}

.why-choose-us .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 95, 168, 0.1);
}

.why-choose-us .feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.why-choose-us .feature-box:hover .feature-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--accent-color), #ff8c5a);
}

.why-choose-us .feature-box h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.why-choose-us .feature-box:hover h3 {
    color: var(--accent-color);
}

.why-choose-us .feature-box p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: scale(1);
}

.vm-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Subtle overlay on hover */
.vm-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vm-card:hover::after {
    opacity: 1;
}

.vm-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.value-card:hover .value-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--primary-color);
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Services Section */
.services {
    background: var(--white);
}

/* Remove underlines from service card text */
.services-grid .service-card {
    text-decoration: none !important;
}

.services-grid .service-card h3,
.services-grid .service-card p {
    text-decoration: none !important;
}

.services-grid .service-card:hover {
    text-decoration: none !important;
}

.services-grid .service-card:hover h3,
.services-grid .service-card:hover p {
    text-decoration: none !important;
}

.services-wrapper {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    overflow: hidden;
    margin-bottom: 30px;
}

.services-grid .service-card.hidden {
    display: none;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.services-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.services-next-btn,
.services-prev-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.services-next-btn:hover,
.services-prev-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 95, 168, 0.4);
}

.services-next-btn:disabled,
.services-prev-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.service-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.hidden {
    display: none;
}

.service-card.fade-in {
    animation: fadeInUp 0.5s ease-out;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image .image-placeholder {
    transition: transform 0.3s;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.service-view-more-btn:hover {
    background: #2a6db8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 95, 168, 0.3);
    color: white;
}

.service-view-more-btn:hover::before {
    left: 100%;
}

.service-view-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(30, 95, 168, 0.3);
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Clients Section */
.clients {
    background: var(--bg-light);
    padding: 60px 0;
    overflow: hidden;
}

.clients-wrapper {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 30px;
    animation: slideClients 30s linear infinite;
    width: fit-content;
}

@keyframes slideClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    min-height: 120px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Service Detail Section */
.service-detail {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
                url('img/hvac image1.jpg') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.service-detail .container {
    position: relative;
    z-index: 2;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-detail-image {
    width: 100%;
    height: 400px;
}

.service-detail-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.service-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.service-detail-text .btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.service-detail-text .btn-primary:hover {
    background: #d2542b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Service Detail Section */
@media (max-width: 992px) {
    .service-detail {
        padding: 60px 0;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .service-detail-text h2 {
        font-size: 28px;
    }
    
    .service-detail-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 40px 0;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .service-detail-text h2 {
        font-size: 24px;
    }
    
    .service-detail-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-detail {
        padding: 30px 0;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .service-detail-text h2 {
        font-size: 22px;
    }
    
    .service-detail-text p {
        font-size: 13px;
    }
    
    .service-detail-text .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Service Detail Sections for Different Pages */
.service-electrical .service-detail,
.service-mechanical .service-detail {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
                url('img/hvac image1.jpg') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-electrical .service-detail::before,
.service-mechanical .service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.service-electrical .service-detail .container,
.service-mechanical .service-detail .container {
    position: relative;
    z-index: 2;
}

.service-electrical .service-detail-text h2,
.service-mechanical .service-detail-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.service-electrical .service-detail-text p,
.service-mechanical .service-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.service-electrical .service-detail-text .btn-primary,
.service-mechanical .service-detail-text .btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.service-electrical .service-detail-text .btn-primary:hover,
.service-mechanical .service-detail-text .btn-primary:hover {
    background: #d2542b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Service Detail Sections */
@media (max-width: 992px) {
    .service-electrical .service-detail,
    .service-mechanical .service-detail {
        padding: 60px 0;
    }
    
    .service-electrical .service-detail-content,
    .service-mechanical .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .service-electrical .service-detail-text h2,
    .service-mechanical .service-detail-text h2 {
        font-size: 28px;
    }
    
    .service-electrical .service-detail-text p,
    .service-mechanical .service-detail-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .service-electrical .service-detail,
    .service-mechanical .service-detail {
        padding: 40px 0;
    }
    
    .service-electrical .service-detail-content,
    .service-mechanical .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .service-electrical .service-detail-text h2,
    .service-mechanical .service-detail-text h2 {
        font-size: 24px;
    }
    
    .service-electrical .service-detail-text p,
    .service-mechanical .service-detail-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-electrical .service-detail,
    .service-mechanical .service-detail {
        padding: 30px 0;
    }
    
    .service-electrical .service-detail-content,
    .service-mechanical .service-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .service-electrical .service-detail-text h2,
    .service-mechanical .service-detail-text h2 {
        font-size: 22px;
    }
    
    .service-electrical .service-detail-text p,
    .service-mechanical .service-detail-text p {
        font-size: 13px;
    }
    
    .service-electrical .service-detail-text .btn-primary,
    .service-mechanical .service-detail-text .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Service Cards Grid */
.service-cards-section {
    background: #f5f7fa;
    padding: 80px 0;
    margin-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.load-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 95, 168, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 95, 168, 0.3);
}

.load-more-btn:active {
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: calc(0.1s * var(--i, 0));
}

.service-feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-feature-card:hover::before {
    transform: scaleX(1);
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 95, 168, 0.3);
    transition: all 0.3s ease;
}

.service-feature-card:hover .service-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(30, 95, 168, 0.4);
}

.service-feature-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Quality Section */
.quality {
    background: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 51, 102, 0.3)), 
                url('img/quality backround.jpg') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 51, 102, 0.45) 0%, 
        rgba(0, 71, 142, 0.4) 50%, 
        rgba(0, 91, 182, 0.35) 100%);
    z-index: 1;
}

.quality > .container {
    position: relative;
    z-index: 2;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quality-text h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quality-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.quality-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-page .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-page .map-container {
    grid-column: 1 / -1;
    margin-top: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info-item h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
}

.contact-info-item h3:first-child {
    margin-top: 0;
}

.contact-info-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid #e0e0e0;
}

.form-success-message {
    display: none;
    background: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    margin: -40px -40px 20px -40px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #4caf50;
    border-bottom: none;
    animation: slideDown 0.3s ease-out;
}

.form-success-message.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-container {
    margin-top: 60px;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    grid-column: 1 / -1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Modern Contact Form Styling */
.contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 95, 168, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.form-success-message {
    display: none;
    background: rgba(30, 95, 168, 0.95);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    border: 2px solid rgba(30, 95, 168, 0.3);
    backdrop-filter: blur(10px);
}

.form-success-message.show {
    display: block;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6c757d;
}

.form-group select {
    color: #333;
    cursor: pointer;
}

.form-group select option {
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 20px rgba(30, 95, 168, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #2a6db8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 95, 168, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Responsive Design for Modern Contact Form */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 35px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .btn-primary {
        padding: 16px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px 25px;
        border-radius: 12px;
    }
    
    .form-success-message {
        margin-bottom: 18px;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .btn-primary {
        padding: 14px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        gap: 25px;
    }
    
    .contact-form {
        padding: 25px 20px;
        border-radius: 10px;
    }
    
    .form-success-message {
        margin-bottom: 15px;
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 13px;
        border-radius: 8px;
        letter-spacing: 0.5px;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--white);
    opacity: 0.8;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    vertical-align: middle;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--white);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        font-family: 'Poppins', sans-serif;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-info span {
        font-size: 13px;
    }

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

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

    .vision-mission {
        grid-template-columns: 1fr;
    }

    /* Responsive Design for Quality Section */
@media (max-width: 992px) {
    .quality {
        background-size: cover;
        background-position: center;
    }
    
    .quality-text h2 {
        font-size: 28px;
    }
    
    .quality-text p {
        font-size: 15px;
    }
    
    .quality-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .quality-text {
        order: 2;
    }
    
    .quality-image {
        order: 1;
        height: 300px;
    }
    
    .quality-text h2 {
        font-size: 26px;
        text-align: center;
    }
    
    .quality-text p {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .quality {
        padding: 60px 0;
    }
    
    .quality-content {
        gap: 30px;
    }
    
    .quality-image {
        height: 250px;
    }
    
    .quality-text h2 {
        font-size: 24px;
    }
    
    .quality-text p {
        font-size: 13px;
    }
}

    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-item {
        grid-template-columns: 1fr;
    }

    /* Responsive Design for About Carousel */
@media (max-width: 768px) {
    .about-carousel {
        height: 400px;
        border-radius: 8px;
    }
    
    .slide-content {
        padding: 30px 20px 20px;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .about-carousel {
        height: 350px;
        border-radius: 6px;
    }
    
    .slide-content {
        padding: 25px 15px 15px;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

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

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

    .about-carousel {
        height: 400px;
    }

    .about-slide-overlay {
        padding: 25px 20px 30px;
    }

    .about-slide-text p {
        font-size: 14px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-feature-card {
        padding: 30px 25px;
    }

    .service-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

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

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

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

/* Responsive tweaks for About page */
/* Quality Section */
.quality-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

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

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

.section-divider {
    width: 80px;
    height: 3px;
    background: #1e5fa8;
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 300;
}

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

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

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

.standard-icon {
    font-size: 2.5rem;
    color: #1e5fa8;
    margin-bottom: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(30, 95, 168, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

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

.standard-card p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1rem;
}

/* Safety & Compliance Section */
.safety-section {
    padding: 5rem 0;
    background: white;
}

.safety-content {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    gap: 0;
}

.safety-text {
    flex: 0 0 55%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.safety-text h2 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1e5fa8;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.safety-text p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-family: 'Poppins', Arial, sans-serif;
}

.safety-measures {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-measures li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0;
}

.safety-measures li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #1e5fa8;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.safety-measures li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.safety-measures li span {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Poppins', Arial, sans-serif;
    margin-top: 0;
}

.safety-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.safety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

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

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

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

.certification-icon {
    font-size: 2.5rem;
    color: #1e5fa8;
    margin-bottom: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(30, 95, 168, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

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

.certification-card p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* CTA Section */
.cta-section .btn-primary,
.cta-section .cta-button {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary i,
.cta-section .cta-button i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary::before,
.cta-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cta-section .btn-primary:hover {
    background: #d2542b;
    border-color: #d2542b;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.cta-section .btn-primary:hover::before,
.cta-section .cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-section .btn-primary:hover i,
.cta-section .cta-button:hover i {
    transform: translateX(8px);
}

.cta-section .btn-primary:active,
.cta-section .cta-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* Add a subtle pulse animation on hover */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.cta-section .btn-primary:hover {
    animation: pulse 1.5s infinite;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e5fa8 0%, #2d7fc5 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    margin-top: 2rem;
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    border: 2px solid #ff6b35;
}

.cta-section .btn:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.cta-section .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/pattern.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.cta-section .section-header {
    margin-bottom: 2.5rem;
}

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

.cta-section .section-divider {
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 1.5rem;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 1rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
}

.btn-primary:hover {
    background: #e65c2b;
    border-color: #e65c2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section .section-subtitle {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    /* About carousel smaller on tablets */
    .about-carousel {
        height: 380px;
    }

    /* Stats: 2 columns on medium screens */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Vision / Mission: stack vertically */
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vm-card {
        padding: 28px;
    }

    /* Values grid: 3 columns */
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Quality section: stack image/text */
    .quality-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quality-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    /* Make carousel mobile-friendly */
    .about-carousel {
        height: 300px;
        border-radius: 8px;
    }

    .about-image .image-placeholder {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* Stats: single column */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Values grid: 2 columns */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .value-card {
        padding: 18px 12px;
    }

    /* Reduce paddings and font sizes for smaller screens */
    .about { padding: 50px 0; }
    .vm-card { padding: 20px; }
    .stat-item { padding: 20px; }
    .stat-number { font-size: 36px; }
    .page-header h1 { font-size: 32px; }
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-overview .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-overview .section-subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.services-overview .section-header h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-overview .section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services-overview .section-header p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-top: 20px;
}

.services-overview .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services-overview .service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8f0fe;
    padding: 30px;
    text-align: center;
}

.services-overview .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 95, 168, 0.1);
    border-color: var(--accent-color);
}

.services-overview .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 95, 168, 0.2);
}

.services-overview .service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--accent-color), #ff8c5a);
}

.services-overview .service-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.services-overview .service-card:hover h3 {
    color: var(--accent-color);
}

.services-overview .service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.services-overview .learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    margin: 0 auto;
}

.services-overview .learn-more i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.services-overview .learn-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 95, 168, 0.3);
}

.services-overview .learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .services-overview .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 0;
    }
    
    .services-overview .section-header h2 {
        font-size: 30px;
    }
    
    .services-overview .service-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-carousel { height: 230px; }
    .quality-image { height: 220px; }
    .values-grid { grid-template-columns: 1fr; }
    .logo-text h2 { font-size: 20px; }
    .logo img { height: 44px; }
    .nav-menu { gap: 12px; }
    .page-header { padding: 50px 0; }
    .page-header h1 { font-size: 26px; }
    .subtitle { font-size: 14px; }
    .vm-card h3 { font-size: 20px; }
    .stat-number { font-size: 30px; }
    .stat-icon { font-size: 36px; }
}

