:root {
    --primary-color: #ff9900;
    --primary-dark: #e68a00;
    --secondary-color: #2c3e50;
    --secondary-light: #3a506b;
    --text-color: #333;
    --light-text: #7f8c8d;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --header-bg: #ffffff;
    --top-bar-bg: #2c3e50;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

.section-padding {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title p,
.section-heading p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 25px auto 0;
}

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

.section-heading h1,
.section-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.section-heading h1::after,
.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Header Styles */
.header {
    background-color: var(--header-bg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--top-bar-bg);
    color: #ecf0f1;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .contact-info {
    display: flex;
    gap: 20px;
}

.top-bar .contact-info p {
    margin: 0;
}

.top-bar .contact-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-bar .social-links a {
    color: #ecf0f1;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.top-bar .social-links a:hover {
    color: var(--primary-color);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img,
.main-logo {
    max-height: 100px;
    width: 250px;
    transition: var(--transition);
}

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

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav li {
    margin-left: 30px;
}

.nav a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav a.active,
.nav a:hover {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 30px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section (Index) */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

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

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

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.hero-control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-control-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-indicators {
    display: flex;
    gap: 10px;
}

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

.hero-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Page Hero (Subpages) */
.page-hero,
.about-hero,
.services-hero,
.contact-hero,
.projects-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../../common-banner.png') no-repeat center center/cover;
    padding: 180px 0 120px;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section Styles */
.about-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* About Page Specific Styles */
.about-main-content {
    padding: 70px 0;
}

.mission-vision {
    margin-top: 40px;
}

.mv-item {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.mv-item h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mv-item h3 i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
}

.team-section {
    padding: 50px 0;
    background-color: var(--background-light);
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 300px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.member-info p {
    color: var(--light-text);
    margin: 0;
}

.about-btn {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Styles */
.services-section {
    background-color: var(--background-light);
    position: relative;
    padding: 50px 0;
}

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

.service-card {
    background-color: #fff;
    transition: all 0.4s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    z-index: 1;
    padding: 20px;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../services/1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.view-more-btn {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

.view-more-btn .nav-btn {
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff9900, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
    position: relative;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: #fff;
    transform: translateY(-10px) scale(1.1);
}

.service-icon i {
    color: #fff;
    font-size: 2.3rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #ff9900;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    z-index: 2;
    position: relative;
}

.service-content p {
    color: #7f8c8d;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card:hover .service-content h3 {
    color: #fff;
}

.service-card:hover .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    color: #ff9900;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    color: #fff;
}

.service-link:hover {
    gap: 10px;
}

/* Service Box (Services Page) */
.services-page {
    padding: 90px 0;
}

.service-box {
    background-color: #fff;
    transition: all 0.4s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    z-index: 1;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../services/1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-box:hover::before,
.service-box:hover::after {
    opacity: 1;
}

.icon-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.icon-container i {
    color: #fff;
    font-size: 2.3rem;
    transition: color 0.3s ease;
}

.service-box:hover .icon-container {
    background: #fff;
    transform: translateY(-10px) scale(1.1);
}

.service-box:hover .icon-container i {
    color: var(--primary-color);
}

.service-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    z-index: 2;
    position: relative;
}

.service-box p {
    color: var(--light-text);
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-box:hover h3 {
    color: #fff;
}

.service-box:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.process-section {
    padding: 50px 0;
    background: var(--background-light);
}

.process-step {
    position: relative;
    margin-bottom: 40px;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 800;
}

/* Projects Styles */
.projects-section {
    background-color: var(--white);
    position: relative;
    padding: 50px 0;
}

.project-card-new {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    display: block;
    background: var(--white);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

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

.project-card-new img {
    width: 100%;
    height: 300px;
    /* Standardized height */
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    transform: translateZ(0);
}

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

/* Project Filters */
.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 10px;
}

.project-filter {
    background: var(--background-light);
    border: 1px solid #e0e0e0;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.project-filter.active,
.project-filter:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Testimonials Styles Redesigned */
.testimonials-section {
    background: var(--background-light);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 50px 0;
}

.testimonial-card {
    flex: 0 0 calc(100% / 3);
    padding: 0 40px;
    box-sizing: border-box;
    transition: all 0.5s ease;
}

.testimonial-inner {
    background: var(--white);
    border-radius: 40px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card.active {
    transform: scale(1.1);
    z-index: 10;
}

.testimonial-card.active .testimonial-inner {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 600;
}

.testimonial-divider {
    width: 60px;
    height: 2px;
    background-color: #ddd;
    margin-bottom: 20px;
}

.rating {
    color: #004085;
    font-size: 1.2rem;
    display: flex;
    gap: 5px;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.author-info .rating {
    color: #f39c12;
    font-size: 0.9rem;
}

/* Testimonials Page Table */
.testimonials-table-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.testimonials-table {
    width: 100%;
}

.star-rating .fa-star {
    color: #f1c40f;
}

/* Contact Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    padding: 140px 0 90px;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.contact-hero p.lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.contact-content {
    padding: 70px 0;
}

/* Clientele Section - Infinite Slider */
.clients-section {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
}

.clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scrollClients 60s linear infinite;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

.client-logo-wrapper {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: 120px;
}

.client-logo-wrapper img {
    max-width: 200px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo-wrapper:hover img {
    transform: scale(1.1);
}

/* Clientele Grid (About Page) */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.client-grid-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.client-name {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

.client-grid-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.client-grid-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}


.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: 0.3s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-control {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e68a00;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 400px;
}

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

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?ixlib=rb-4.0.3&auto=format&fit=crop&w=1892&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 70px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.cta-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

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

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer Styles Standardized */
.site-footer {
    background-color: var(--top-bar-bg);
    padding: 60px 0 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.footer-nav a {
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 400;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    background-color: var(--top-bar-bg);
    padding: 25px 0;
    margin-top: 20px;
    position: relative; /* Required for the absolute line */
}

.footer-copyright::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;  /* Adjust this for left margin */
    right: 50px; /* Adjust this for right margin */
    border-top: 1px dotted white;
}
.footer-copyright p {
    margin: 0;
    font-size: 0.95rem;
    color: #999;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.designer-name {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

/* Utility Styles */
.whatsapp-chat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
}

.side-profile-btn {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px 6px 0 0;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1000;
    box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.side-profile-btn i {
    transform: rotate(90deg);
    font-size: 0.8rem;
}

.side-profile-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
    padding-right: 20px;
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 50px;
    animation: fadeIn 0.3s ease;
}

.modal-content-wrapper {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 991.98px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav li {
        text-align: center;
        margin: 0;
    }

    .nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-toggle {
        display: block;
    }

    .top-bar .contact-info {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

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

    .about-text {
        text-align: center;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .footer-copyright .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-hero,
    .about-hero,
    .services-hero,
    .contact-hero,
    .projects-hero {
        padding: 100px 0 60px;
        min-height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../../common-banner-mobile.png') no-repeat center center/cover;
    }

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

    .page-hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .project-value-text {
        color: #ff9900 !important;
    }
}

/* Team Section Styles */
.team-section {
    background-color: var(--white);
    padding: 50px 0;
    overflow: hidden;
}

.team-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.team-track {
    display: flex;
    transition: transform 0.5s ease;
}

.team-member-card {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
    transition: var(--transition);
}

.team-member-inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.team-member-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.member-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-inner:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px 20px;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.member-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 991px) {
    .team-member-card {
        flex: 0 0 calc(100% / 2);
    }
}

@media (max-width: 767px) {
    .team-member-card {
        flex: 0 0 100%;
    }
}