/* Modern Colorful Construction Theme */
:root {
    /* Vibrant Color Palette */
    --primary-color: #2A5C8B; /* Deep blue */
    --secondary-color: #F2A950; /* Golden orange */
    --accent-color: #4CAF50; /* Green */
    --dark-color: #2C3E50; /* Dark blue */
    --light-color: #F8F9FA; /* Light gray */
    --text-color: #333333;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #E0E0E0;
    --dark-gray: #757575;
    
    /* Additional Vibrant Colors */
    --red-accent: #E74C3C;
    --yellow-accent: #F1C40F;
    --teal-accent: #1ABC9C;
    --purple-accent: #9B59B6;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, rgba(42,92,139,0.8) 0%, rgba(26,188,156,0.8) 100%);
    --card-gradient: linear-gradient(to bottom right, #FFFFFF, #F8F9FA);
    
    /* Shadows */
    --soft-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hard-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    --text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-medium: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Components */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(42, 92, 139, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-medium);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 169, 80, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.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 1s ease, transform 8s linear;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* 10% black overlay */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 2;
    padding: 30px;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: var(--text-shadow);
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.slide-content .btn {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-nav button {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-nav button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}











/* Colorful Why Choose Us Section */
.key-values-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4f0fb 100%);
}

.value-card {
    background: white;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #4CAF50, #8BC34A) 1;
    box-shadow: 0 10px 20px rgba(75, 175, 80, 0.1);
}

.value-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
}

.value-card h3 {
    color: #2E7D32;
    font-weight: 600;
}

/* Colorful Building Categories Section */
.building-categories-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f8ff 100%);
}

.category-card {
    background: white;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #2196F3, #03A9F4) 1;
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.1);
}

.icon-box {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card h3 {
    color: #1976D2;
    font-weight: 600;
}

/* Colorful Our Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff9f9 100%);
}

.service-card {
    background: white;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #FF5722, #FF9800) 1;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.2);
}

.service-card h3 {
    color: #E64A19;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF5722, #FF9800);
}

.service-type {
    color: #FF9800;
    font-weight: 500;
}

/* Colorful Customer Messages Section */
.customer-messages-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #faf5ff 100%);
}

.customer-card {
    background: white;
    border-left: 5px solid;
    border-image: linear-gradient(to bottom, #9C27B0, #E91E63) 1;
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.1);
}

.customer-info h3 {
    color: #7B1FA2;
    font-weight: 600;
}

.customer-message {
    background: linear-gradient(90deg, rgba(233, 30, 99, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
    border-left: 3px solid #9C27B0;
}

.customer-message p {
    color: #555;
    font-style: italic;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card, .category-card, .service-card, .customer-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Delay animations for staggered effect */
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.customer-card:nth-child(1) { animation-delay: 0.1s; }
.customer-card:nth-child(2) { animation-delay: 0.2s; }
.customer-card:nth-child(3) { animation-delay: 0.3s; }















/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* About Section */
.about-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--teal-accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--yellow-accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text h2 span {
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--hard-shadow);
    transform: rotateY(0deg);
    transition: var(--transition-medium);
}

.about-image:hover img {
    transform: rotateY(10deg);
}

/* Key Values Section */
.key-values-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.values-grid {
    background-color: var(--white); /* optional if you want same color */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--card-gradient);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-medium);
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--secondary-color);
    transition: var(--transition-medium);
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.value-card:hover::before {
    height: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(215, 212, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-medium);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.value-card:hover h3 {
    color: var(--secondary-color);
}

/* Projects Section */
.projects-section {
    background-color: var(--white);
    position: relative;
}

.projects-slideshow {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--hard-shadow);
}

.projects-slide-container {
    display: flex;
    transition: transform 0.5s ease;
}

.project-slide {
    min-width: 100%;
    padding: 0;
}

.project-slide-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
}

.project-slide-image {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.project-slide-image1 {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.project-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-slide-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-slide-card:hover .project-slide-image img {
    transform: scale(1.1);
}

.project-slide-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
    box-shadow: var(--soft-shadow);
}

.project-slide-status.ongoing {
    background-color: var(--yellow-accent);
}

.project-slide-status.completed {
    background-color: var(--accent-color);
}

.project-slide-details {
    padding: 30px;
    text-align: center;
    background-color: var(--white);
}

.project-slide-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.project-slide-details h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.project-slide-location {
    color: var(--dark-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
}

.project-slide-summary {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.projects-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.projects-slider-nav button {
    background-color: rgba(42, 92, 139, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.projects-slider-nav button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.projects-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.projects-slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.projects-slider-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.projects-slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.projects-slider-dot.active::before {
    border-color: var(--primary-color);
}

/* Building Categories Section */
.building-categories-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition-medium);
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition-medium);
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.category-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--teal-accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition-medium);
}

.category-card:hover .icon-box {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--yellow-accent));
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.category-card:hover h3 {
    color: var(--primary-color);
}

.category-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.category-card:hover p {
    color: var(--text-color);
}

/* Services Section */
.services-section {
    background-color: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-medium);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--primary-color), var(--teal-accent));
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition-medium);
}

.service-card:hover h3::after {
    width: 100px;
}

.service-type {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(242, 169, 80, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover .service-type {
    background-color: var(--secondary-color);
    color: var(--white);
}

.service-card p {
    margin-bottom: 25px;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.service-card:hover p {
    color: var(--text-color);
}

.service-card .btn {
    width: 100%;
}

/* Customer Messages Section */
.customer-messages-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.customer-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition-medium);
    overflow: hidden;
}

.customer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.customer-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.customer-card:hover .customer-image img {
    transform: scale(1.1);
}

.customer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.customer-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.customer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.customer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.customer-info p {
    margin: 8px 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-info p i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.customer-message {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(42, 92, 139, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    flex: 1;
    position: relative;
}

.customer-message::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(42, 92, 139, 0.1);
    font-family: serif;
    line-height: 1;
}

.customer-message p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .section {
        padding: 80px 0;
    }
    
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .project-slide-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .project-slide-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .values-grid, .categories-grid, .services-grid, .customer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .project-slide-image {
        height: 300px;
    }
    
    .project-slide-details h3 {
        font-size: 1.5rem;
    }
    
    .projects-slider-nav button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .project-slide-image {
        height: 250px;
    }
    
    .project-slide-details {
        padding: 20px;
    }
    
    .project-slide-details h3 {
        font-size: 1.3rem;
    }
    
    .projects-slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    animation: float 5s ease-in-out infinite 1s;
}

.floating-3 {
    animation: float 7s ease-in-out infinite 2s;
}

/* HEADER STYLES */
.site-header {
    background-color: var(--white);
    box-shadow: var(--soft-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-medium);
}

.site-header.sticky {
    background-color: var(--light-color);
    box-shadow: var(--hard-shadow);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px !important;
    width: 200px !important;
    object-fit: contain;
    display: block;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
    position: relative;
}

.main-nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px;
    position: relative;
    transition: var(--transition-fast);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus {
    color: var(--primary-color);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: var(--gray);
    color: var(--dark-color);
    border-radius: 50%;
    margin-left: 10px;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

/* FOOTER STYLES */
.site-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeInUp 1s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--white);
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
}

.footer-about p,
.footer-contact address {
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition-medium);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-4px) scale(1.1);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-contact address p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-contact address i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================================
   Additional Page Styles - Building on Previous CSS
   ========================================================================== */

/* About Company Section */
.about-company-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-company-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--teal-accent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.about-company-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-company-text {
    flex: 1;
}

.about-company-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.about-company-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.about-company-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-company-text h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.about-company-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.values-list {
    margin-top: 30px;
}

.value-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: rgba(42, 92, 139, 0.03);
    border-radius: 8px;
    transition: var(--transition-medium);
}

.value-item:hover {
    background-color: rgba(42, 92, 139, 0.1);
    transform: translateY(-5px);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-item h4::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.about-company-image {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.about-company-image img {
    border-radius: 15px;
    box-shadow: var(--hard-shadow);
    transform: rotateY(5deg);
    transition: var(--transition-medium);
}

.about-company-image:hover img {
    transform: rotateY(0deg);
}

.company-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background-color: var(--white);
    box-shadow: var(--hard-shadow);
    border-radius: 15px;
    padding: 25px;
    width: 90%;
    max-width: 600px;
    z-index: 2;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gray), transparent);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}


.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Office Locations Section */
.office-locations-section {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.office-locations-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--yellow-accent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.office-locations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    position: relative;
}

.office-locations-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition-medium);
    z-index: -1;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.location-card:hover::before {
    height: 100%;
    width: 100%;
    opacity: 0.05;
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
}

.location-card p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.location-card:hover p {
    color: var(--text-color);
}

.location-card i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Board Members Section */
.board-members-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.board-members-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--purple-accent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.member-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition-medium);
    z-index: -1;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.member-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.member-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-details {
    padding: 30px;
    text-align: center;
}

.member-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.member-share {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.member-contact p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--dark-gray);
}

.member-contact i {
    color: var(--primary-color);
}

.member-social {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-dream {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    color: var(--dark-color);
    border-radius: 50%;
    transition: var(--transition-fast);
}
.member-dream p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    color: var(--dark-color);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.view-profile {
    margin-top: 15px;
    width: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(-50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--red-accent);
    background-color: rgba(231, 76, 60, 0.1);
}

.modal-body {
    padding: 20px 0;
}

.modal-row {
    display: flex;
    gap: 30px;
}

.modal-image {
    flex: 1;
    text-align: center;
}

.modal-image img {
    max-height: 300px;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
}

.modal-info {
    flex: 2;
}

.modal-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.modal-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.modal-list {
    list-style: none;
    margin-bottom: 30px;
}

.modal-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray);
    display: flex;
    align-items: center;
}

.modal-list strong {
    min-width: 120px;
    display: inline-block;
    color: var(--dark-color);
}

.modal-message {
    background-color: rgba(42, 92, 139, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
}

/* Team Page Section */
.team-page-section {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.team-page-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.department-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--gray);
    color: var(--dark-color);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.filter-btn.active {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(42, 92, 139, 0.3);
}

.filter-btn:hover:not(.active) {
    background-color: #ddd;
}

.team-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-page-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-medium);
}

.team-page-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.team-page-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-page-card:hover .team-page-image img {
    transform: scale(1.1);
}

.team-page-details {
    padding: 30px;
    text-align: center;
}

.team-page-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-designation {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-email, .team-phone {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--dark-gray);
}

.team-email i, .team-phone i {
    color: var(--secondary-color);
}

.team-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    color: var(--dark-color);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--red-accent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.contact-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    flex: 1;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-form-container p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

#contactForm .form-group {
    margin-bottom: 25px;
}

#contactForm label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-color);
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-fast);
    background-color: rgba(42, 92, 139, 0.03);
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 92, 139, 0.1);
    background-color: var(--white);
}

#contactForm textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.success-message {
    background-color: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    border-left: 4px solid #2E7D32;
}

.error-message {
    background-color: rgba(198, 40, 40, 0.1);
    color: #C62828;
    border-left: 4px solid #C62828;
}

.contact-info-container {
    flex: 1;
}

.contact-info-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition-medium);
    z-index: -1;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hard-shadow);
}

.contact-info-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
}

.contact-info-card address p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.contact-info-card:hover address p {
    color: var(--text-color);
}

.contact-info-card i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.contact-map {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-medium);
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-social h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-fast);
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 169, 80, 0.3);
}

/* Project Details Section */
.project-details-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.project-details-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--yellow-accent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.project-details-header {
    margin-bottom: 50px;
}

.project-details-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 5px 15px;
    border-radius: 50px;
    background-color: rgba(42, 92, 139, 0.05);
}

.project-meta i {
    color: var(--primary-color);
}

.project-meta .status {
    font-weight: 600;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
}

.project-meta .status.ongoing {
    background-color: rgba(255, 160, 0, 0.1);
    color: #FFA000;
}

.project-gallery {
    margin-bottom: 50px;
}

.main-image {
    height: 650px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.main-image:hover img {
    transform: scale(1.05);
}

.project-content {
    display: flex;
    gap: 40px;
}

.project-description {
    flex: 2;
}

.project-description h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.project-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.project-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.project-description h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.key-features {
    list-style: none;
    margin-bottom: 40px;
    column-count: 2;
    column-gap: 40px;
}

.key-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    break-inside: avoid;
}

.key-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.project-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--soft-shadow);
    position: sticky;
    top: 20px;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
}

.sidebar-card p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.project-video {
    margin-bottom: 25px;
    background-color: var(--dark-color);
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-video p {
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.project-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Related Projects Section */
.related-projects-section {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.related-projects-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
}

.related-projects-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-project-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-medium);
}

.related-project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.related-project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.related-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.related-project-card:hover .related-project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: var(--soft-shadow);
}

.project-status.ongoing {
    background-color: var(--yellow-accent);
}

.project-status.completed {
    background-color: var(--primary-color);
}

.related-project-details {
    padding: 25px;
}

.related-project-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.project-location {
    color: var(--dark-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Projects Page Slider */
.projects-page-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.projects-page-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--teal-accent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.project-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray);
}

.tab-btn {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--dark-color);
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn:hover:not(.active) {
    color: var(--secondary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Slider Container */
.projects-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.projects-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

/* Project Cards Grid */
.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.project-page-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-medium);
}

.project-page-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hard-shadow);
}

.project-page-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-page-card:hover .project-page-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: var(--soft-shadow);
}

.project-status.ongoing {
    background-color: var(--yellow-accent);
}

.project-status.completed {
    background-color: var(--primary-color);
}

.project-page-details {
    padding: 25px;
}

.project-page-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.project-location {
    color: var(--dark-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-summary {
    margin-bottom: 20px;
    line-height: 1.7;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.availability {
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 50px;
    background-color: rgba(42, 92, 139, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.slider-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* No Projects Message */
.no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background-color: var(--light-color);
    border-radius: 15px;
}

.no-projects p {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .projects-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-tabs {
        flex-wrap: wrap;
        border-bottom: none;
    }
    
    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        margin-bottom: 10px;
    }
    
    .tab-btn.active {
        border-left-color: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .project-page-image {
        height: 200px;
    }
    
    .project-page-details {
        padding: 20px;
    }
    
    .project-page-details h3 {
        font-size: 1.3rem;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.detail-line {
  width: 100%;
  padding: 10px 20px;
  background-color: #f0f0f0;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.icon-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

.icon {
  font-size: 18px;
}

/* Hide on mobile (less than 768px) */
@media screen and (max-width: 767px) {
  .detail-line {
    display: none;
  }
}


/* Projects Slider */
.projects-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.project-page-card {
    min-width: 100%;
}
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.slider-nav button {
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.slider-nav button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}


/* Responsive Adjustments */
@media (max-width: 1200px) {
    .about-company-content,
    .contact-content,
    .project-content,
    .modal-row {
        flex-direction: column;
    }
    
    .about-company-image,
    .contact-info-container,
    .project-sidebar,
    .modal-image {
        margin-top: 40px;
    }
    
    .company-stats {
        position: static;
        transform: none;
        margin-top: 40px;
        width: 100%;
    }
    
    .key-features {
        column-count: 1;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .members-grid,
    .team-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .member-image,
    .team-page-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .project-tabs {
        flex-wrap: wrap;
        border-bottom: none;
    }
    
    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        margin-bottom: 10px;
    }
    
    .tab-btn.active {
        border-left-color: var(--primary-color);
    }
    
    .main-image {
        height: 300px;
    }
    
    .project-description h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .project-meta span {
        font-size: 0.9rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .project-description h2 {
        font-size: 1.6rem;
    }
    
    .project-description h3 {
        font-size: 1.3rem;
    }
    
    .no-projects {
        padding: 40px 20px;
    }
}
/* ==========================================================================
   Mobile Responsive Styles
   ========================================================================== */

@media (max-width: 992px) {
    /* Header Styles for Mobile */
    .site-header .container {
        padding: 0 15px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--hard-shadow);
        transition: var(--transition-medium);
        z-index: 1000;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 0 0 15px 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 12px 15px;
        border-radius: 5px;
        transition: var(--transition-fast);
    }
    
    .main-nav ul li a:hover {
        background-color: rgba(42, 92, 139, 0.1);
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active {
        color: var(--red-accent);
    }
    
    /* Hero Slider Adjustments */
    .hero-slider {
        height: 80vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Section Padding Adjustments */
    .section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    /* Projects Section */
    .project-slide-image {
        height: 300px;
    }
    
    /* Contact Section */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info-container {
        margin-top: 50px;
    }
    
    /* Footer Adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Header Adjustments */
    .logo span {
        font-size: 1.3rem;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    /* Section Header */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Project Details */
    .project-content {
        flex-direction: column;
    }
    
    .project-sidebar {
        margin-top: 40px;
    }
    
    /* Key Features List */
    .key-features {
        column-count: 1;
    }
    
    /* Team Grid */
    .members-grid, .team-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    /* Header Adjustments */
    .logo img {
        height: 30px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        margin-top: 60px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .slide-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Section Adjustments */
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    /* Button Adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Project Slides */
    .project-slide-image {
        height: 250px;
    }
    
    .project-slide-details h3 {
        font-size: 1.3rem;
    }
    
    /* Form Adjustments */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-medium);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Close Button for Mobile Menu */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.8rem;
        color: var(--primary-color);
        z-index: 1002;
    }
}

/* Mobile Menu Animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Touch Improvements for Mobile */
@media (hover: none) {
    .btn:hover {
        transform: none !important;
    }
    
    .card:hover {
        transform: none !important;
    }
    
    .main-nav ul li a:hover::after {
        width: 0 !important;
    }
}

/* iOS Viewport Fix */
@supports (-webkit-touch-callout: none) {
    .hero-slider {
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
}

/* Mobile-Specific Utility Classes */
.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}

/* Improved Mobile Navigation */
@media (max-width: 992px) {
    .site-header {
        padding: 10px 0;
    }
    
    .site-header.sticky {
        padding: 5px 0;
    }
    
    .main-nav ul li a::after {
        display: none;
    }
    
    .main-nav ul li a:hover {
        color: var(--primary-color);
        background-color: rgba(42, 92, 139, 0.1);
    }
}

/* Project Cards on Mobile */
@media (max-width: 768px) {
    .projects-page-grid {
        grid-template-columns: 1fr;
    }
    
    .project-page-card {
        margin-bottom: 20px;
    }
}

/* Form Inputs on Mobile */
@media (max-width: 576px) {
    #contactForm input,
    #contactForm select,
    #contactForm textarea {
        padding: 12px;
    }
    
    .form-response {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Slider Navigation on Mobile */
@media (max-width: 768px) {
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .projects-slider-dot {
        width: 12px;
        height: 12px;
    }
}

/* Modal Adjustments for Mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
    }
    
    .modal-row {
        flex-direction: column;
    }
    
    .modal-image {
        margin-bottom: 20px;
    }
}

/* Project Details on Mobile */
@media (max-width: 576px) {
    .project-details-header h1 {
        font-size: 2rem;
    }
    
    .project-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-image {
        height: 200px;
    }
}

/* Footer on Mobile */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-links ul li a:hover {
        padding-left: 0;
    }
}
