* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f5f;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #2c5f5f, #1a4a4a);
    --gradient-secondary: linear-gradient(135deg, #f4a261, #e09f4d);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    /* padding: 0.5rem 0; */
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/home-about.jpg') center/cover no-repeat;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */

.hero {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.hero-video {
    width: 100%;
    height: calc(100vh - 5rem);
    object-fit: fill;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content-centered {
    position: absolute;
    top: auto;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    text-align: center;
}


.hero-typing-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    display: inline;
    border-right: 3px solid #f4a261;
    padding-right: 5px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh !important;
        margin-top: 5rem;
    }

    .hero-video {
        height: 55vh !important;
        top: 0 !important;
        object-fit: cover !important;
    }

    .hero-content-centered {
        bottom: 10%;
    }

    .hero-typing-text {
        font-size: 1.1rem;
    }
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn a {
    text-decoration: none !important;
    color: inherit !important;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: #1a4a4a;
    border: 2px solid var(--primary-color);
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

/* White outline button for dark backgrounds */
.hero .btn-outline,
.cta-section .btn-outline,
.page-header .btn-outline,
.footer .btn-outline {
    color: white;
    border-color: white;
}

.hero .btn-outline:hover,
.cta-section .btn-outline:hover,
.page-header .btn-outline:hover,
.footer .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-service {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    text-decoration: none !important;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Services Section */
.services-preview {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Service Detailed Pages */
.services-detailed {
    padding: 6rem 0;
    background: white;
}

.service-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-highlight.reverse {
    direction: rtl;
}

.service-highlight.reverse>* {
    direction: ltr;
}

.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-highlight:hover .service-image img {
    transform: scale(1.05);
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Additional Services */
.additional-services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: white;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.9), rgba(26, 74, 74, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.portfolio-tags span {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-details {
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-info span {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: 6rem 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.cert-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.social-contact {
    margin-top: 2.5rem;
}

.social-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.social-contact h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.contact-social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

/* Default State: Brand Colors */
.contact-social-card.facebook .icon-box {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.contact-social-card.instagram .icon-box {
    background: rgba(228, 64, 95, 0.1);
    color: #E4405F;
}

.contact-social-card.instagram .icon-box i {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-social-card.linkedin .icon-box {
    background: rgba(10, 102, 194, 0.1);
    color: #0a66c2;
}

.contact-social-card.youtube .icon-box {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content .platform {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.2;
}

.card-content .action {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2px;
}

.hover-arrow {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-social-card:hover .hover-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Brand specific colors on hover */
.contact-social-card.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
}

.contact-social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-social-card.linkedin:hover {
    background: linear-gradient(135deg, #0a66c2 0%, #0077b5 100%);
}

.contact-social-card.youtube:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.contact-social-card:hover .platform,
.contact-social-card:hover .action,
.contact-social-card:hover .icon-box i,
.contact-social-card:hover .hover-arrow {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.contact-social-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(5deg) scale(1.1);
    color: white;
}

@media (max-width: 480px) {
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Project Stats */
.project-stats {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.client-details h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
        margin-top: 8rem;
    }

    .service-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-highlight.reverse {
        direction: ltr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between !important;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-hover);
        padding: 100px 2rem 2rem;
        gap: 0;
        height: 100vh;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(44, 95, 95, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu>li>a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 0;
        transition: all 0.3s ease;
    }

    .nav-menu>li>a:hover,
    .nav-menu>li>a.active {
        background: var(--bg-light);
        color: var(--primary-color);
    }

    /* Mobile Dropdown Styles */
    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        margin: 0;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        display: none;
        border-radius: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        padding: 1rem 0;
        gap: 0;
    }

    .dropdown-column {
        padding: 0;
        border: none !important;
    }

    .dropdown-column h4 {
        background: var(--primary-color);
        color: white;
        margin: 0;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .dropdown-column a {
        padding: 1rem 2rem;
        background: white;
        margin: 0;
        border-bottom: 1px solid rgba(44, 95, 95, 0.1);
        border-radius: 0;
        font-size: 0.95rem;
    }

    .dropdown-column a:hover {
        background: var(--bg-light);
        transform: none;
    }

    .dropdown-footer {
        background: var(--primary-color);
        border: none;
        padding: 1.5rem;
        border-radius: 0;
    }

    .view-all-services {
        color: white;
        font-weight: 600;
    }

    .view-all-services:hover {
        color: var(--secondary-color);
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .service-card {
        padding: 2rem 1rem;
    }

    .testimonial-card {
        padding: 2rem 1rem;
    }
}

/* New 
Sections Styles */

/* About Preview Section */
.about-preview {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-preview-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-preview-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-preview:hover .about-preview-image img {
    transform: scale(1.05);
}

/* Services Grid Main */
.services-overview {
    padding: 6rem 0;
    background: white;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-main {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.service-card-main:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-icon-main {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card-main:hover .service-icon-main {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-main i {
    font-size: 2rem;
    color: white;
}

.service-card-main h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card-main p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-main .service-price {
    background: var(--bg-light);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Featured Projects */
.featured-projects {
    padding: 6rem 0;
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Home */
.testimonials-home {
    padding: 6rem 0;
    background: white;
}

.testimonials-home .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-home .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonials-home .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.testimonials-home .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonials-home .testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    text-align: left;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border: 4px solid white;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Detail Pages */
.service-detail {
    padding: 6rem 0;
    background: white;
}

.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-intro-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.service-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-intro:hover .service-intro-image img {
    transform: scale(1.05);
}

.service-features-detailed {
    margin-bottom: 6rem;
}

.service-features-detailed h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.service-features-detailed .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-features-detailed .feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-features-detailed .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-features-detailed .feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-features-detailed .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-features-detailed .feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-benefits {
    margin-bottom: 6rem;
}

.service-benefits h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-process {
    margin-bottom: 6rem;
}

.service-process h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.service-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-pricing {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
}

.service-pricing h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-pricing p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Services */
.related-services {
    padding: 4rem 0;
    background: var(--bg-light);
}

.related-services h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.related-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-services .service-card {
    padding: 2rem 1.5rem;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-grid-main {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-preview-text h2 {
        font-size: 2rem;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-home .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-features-detailed .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cta {
        flex-direction: column;
        align-items: center;
    }

    .related-services .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-card-main {
        padding: 2rem 1.5rem;
    }

    .project-card {
        margin: 0 10px;
    }

    .testimonials-home .testimonial-card {
        padding: 1.5rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .service-pricing {
        padding: 2rem 1.5rem;
    }
}

/* Dr
opdown Navigation Styles */
.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown>a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 600px;
    margin-top: 1rem;
    border: 1px solid rgba(44, 95, 95, 0.1);
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown:hover>a i {
        transform: rotate(180deg);
    }
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 2rem;
}

.dropdown-column {
    padding: 0 1rem;
}

.dropdown-column:not(:last-child) {
    border-right: 1px solid rgba(44, 95, 95, 0.1);
}

.dropdown-column h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-column a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-column a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-column a i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-footer {
    border-top: 1px solid rgba(44, 95, 95, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
    background: var(--bg-light);
    border-radius: 0 0 15px 15px;
}

.view-all-services {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-all-services:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Mobile Navigation & Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between !important;
        padding: 1rem;
    }

    .nav-logo .logo {
        height: 50px;
    }

    /* Keep hamburger visible */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Updated Menu Style */
    .nav-menu {
        position: fixed;
        top: 70px;
        /* Below the nav bar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: 0.3s ease-in-out;
        z-index: 999;
        /* Box shadow for depth */
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        /* Allow scrolling if menu is tall */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        display: block;
        padding: 1rem;
        width: 100%;
    }

    /* Improved Dropdown for Mobile */
    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown>a {
        justify-content: center;
    }

    /* Ensure dropdown content is visible effectively on mobile */
    .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        min-width: unset;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        /* Slight background diff */
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 0;
        border-radius: 0;
        display: block !important;
        /* Override potential display:none */
    }

    .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 2000px;
        /* Large safe number */
        padding-bottom: 1rem;
    }

    .dropdown:hover .dropdown-content {
        /* Disable hover effect on mobile, rely on click/tap */
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    .dropdown.active:hover .dropdown-content {
        /* Keep it visible if active */
        opacity: 1;
        visibility: visible;
    }

    .dropdown-grid {
        display: flex;
        flex-direction: column;
        padding: 0 1rem;
        gap: 1rem;
    }

    .dropdown-column {
        padding: 0;
        border: none !important;
        text-align: left;
    }

    .dropdown-column h4 {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        padding-left: 1rem;
        font-size: 1rem;
        color: var(--primary-color);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 0.5rem;
    }

    .dropdown-column a {
        justify-content: flex-start;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .dropdown-footer {
        padding: 1rem;
        background: transparent;
        border: none;
    }

    /* Rotate arrow when active */
    .dropdown.active>a i {
        transform: rotate(180deg);
    }
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    max-width: none;
}

.footer-about p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(44, 95, 95, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(44, 95, 95, 0.2);
}

.footer-stat {
    text-align: center;
}

.footer-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.footer-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact .contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.footer-contact .contact-item strong {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.85rem;
}

.footer-contact .contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
    font-size: 0.8rem;
}

.footer-contact .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: var(--secondary-color);
}

.emergency {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(44, 95, 95, 0.2);
    border: 2px solid rgba(44, 95, 95, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer .social-links a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

.footer .social-links a:hover i {
    transform: scale(1.1);
}

/* Specific hover colors for each social platform */
.footer .social-links a[href*="facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.footer .social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #E4405F;
    color: white;
}

.footer .social-links a[href*="linkedin"]:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.footer .social-links a[href*="youtube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.footer .social-links a[href*="twitter"]:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

/* Fallback icon adjustments for footer */
.footer .social-links a .fab::before,
.footer .social-links a .fa-facebook::before,
.footer .social-links a .fa-instagram::before,
.footer .social-links a .fa-linkedin::before,
.footer .social-links a .fa-youtube::before,
.footer .social-links a .fa-twitter::before {
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: transparent !important;
    color: inherit !important;
    display: inline !important;
    font-size: 1.2rem !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 0;
}

/* Footer Bottom Top Section */
.footer-bottom-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.footer-bottom-left {
    justify-self: start;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.8rem;
}

.footer-bottom-center {
    justify-self: center;
}

.footer-bottom-right {
    justify-self: end;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.certifications-mini {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.certifications-mini span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    background: rgba(44, 95, 95, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(44, 95, 95, 0.2);
    transition: all 0.3s ease;
}

.certifications-mini span:hover {
    background: rgba(44, 95, 95, 0.2);
    transform: translateY(-1px);
}

.certifications-mini i {
    color: var(--secondary-color);
}

/* Footer Separator */
.footer-bottom-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 2rem;
}

/* Footer Bottom Bottom Section */
.footer-bottom-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.developer-credit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.developer-credit span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.developer-credit a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    background: rgba(244, 162, 97, 0.1);
    border: 1px solid rgba(244, 162, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.developer-credit a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.developer-credit a:hover::before {
    left: 100%;
}

.developer-credit a:hover {
    color: var(--text-dark);
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
    border-color: var(--secondary-color);
}

.developer-credit a i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.developer-credit a:hover i {
    transform: rotate(360deg);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-stats {
        max-width: 400px;
        margin: 2rem auto;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-contact .contact-item {
        justify-content: left;
        text-align: left;
    }

    .footer-bottom-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        justify-self: center;
    }

    .footer-links {
        justify-content: center;
    }

    .certifications-mini {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .certifications-mini {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-stats {
        padding: 1rem;
    }

    .footer-stat strong {
        font-size: 1.2rem;
    }

    .certifications-mini {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* P
olicy Pages Styles */
.policy-content {
    padding: 6rem 0;
    background: white;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.policy-meta {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.policy-meta p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(44, 95, 95, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.policy-section ul li {
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.policy-section ol li {
    margin-bottom: 1rem;
    font-weight: 500;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid rgba(44, 95, 95, 0.1);
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-details strong {
    color: var(--primary-color);
}

/* Policy Pages Responsive */
@media (max-width: 768px) {
    .policy-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-section ul,
    .policy-section ol {
        padding-left: 1.5rem;
    }

    .contact-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 4rem 0;
    }

    .policy-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .policy-meta {
        padding: 1rem;
    }

    .policy-section {
        margin-bottom: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* 
Icon Fallbacks - In case Font Awesome fails to load */
.icon-fallback {
    display: inline-block;
    width: 1em;
    height: 1em;
    text-align: center;
    font-weight: bold;
}

/* Fallback icons using Unicode symbols */
.fas.fa-home::before,
.fa-home::before {
    content: "🏠" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-swimming-pool::before,
.fa-swimming-pool::before {
    content: "🏊" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-building::before,
.fa-building::before {
    content: "🏢" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-water::before,
.fa-water::before {
    content: "💧" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-phone::before,
.fa-phone::before {
    content: "📞" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-envelope::before,
.fa-envelope::before {
    content: "✉️" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-map-marker-alt::before,
.fa-map-marker-alt::before {
    content: "📍" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-clock::before,
.fa-clock::before {
    content: "🕐" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-check::before,
.fa-check::before {
    content: "✓" !important;
    font-family: Arial, sans-serif !important;
    color: #28a745 !important;
}

.fas.fa-check-circle::before,
.fa-check-circle::before {
    content: "✓" !important;
    font-family: Arial, sans-serif !important;
    color: #28a745 !important;
}

.fas.fa-star::before,
.fa-star::before {
    content: "★" !important;
    font-family: Arial, sans-serif !important;
    color: #ffc107 !important;
}

.fas.fa-chevron-down::before,
.fa-chevron-down::before {
    content: "▼" !important;
    font-family: Arial, sans-serif !important;
    font-size: 0.8em !important;
}

.fas.fa-arrow-right::before,
.fa-arrow-right::before {
    content: "→" !important;
    font-family: Arial, sans-serif !important;
}

.fas.fa-tools::before,
.fa-tools::before {
    content: "🔧" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-filter::before,
.fa-filter::before {
    content: "⚗️" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-th::before,
.fa-th::before {
    content: "⊞" !important;
    font-family: Arial, sans-serif !important;
}

.fas.fa-hammer::before,
.fa-hammer::before {
    content: "🔨" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-leaf::before,
.fa-leaf::before {
    content: "🍃" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-seedling::before,
.fa-seedling::before {
    content: "🌱" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-certificate::before,
.fa-certificate::before {
    content: "🏆" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-shield-alt::before,
.fa-shield-alt::before {
    content: "🛡️" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.fas.fa-code::before,
.fa-code::before {
    content: "</>" !important;
    font-family: monospace !important;
}

/* Social Media Icons - Clean Text Fallbacks removed to allow Font Awesome to render correctly */

/* Only apply fallbacks when Font Awesome is not loaded */
@supports not (font-family: "Font Awesome 6 Free") {

    .fas,
    .fab,
    .far {
        font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", Arial, sans-serif !important;
    }
}

/* Ensure icons are visible even without Font Awesome */
.fas,
.fab,
.far {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    display: inline-block;
}

/* Fix for hamburger menu when icons fail */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Ensure dropdown arrow is visible */
.dropdown>a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.dropdown>a i::before {
    content: "▼" !important;
    font-family: Arial, sans-serif !important;
}

/* Enhanced Social Media Fallback Styling */
.social-links a {
    position: relative;
    text-decoration: none;
}

/* Add platform names on hover when using fallbacks */
.social-links a[aria-label]::after {
    content: attr(aria-label);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.social-links a[aria-label]:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

/* Ensure fallback icons are properly centered */
.social-links .fab,
.social-links .fa-facebook,
.social-links .fa-instagram,
.social-links .fa-linkedin,
.social-links .fa-youtube,
.social-links .fa-twitter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Alternative: Use CSS-only social icons when Font Awesome fails */
@supports not (font-family: "Font Awesome 6 Brands") {
    .footer .social-links a {
        font-family: Arial, sans-serif;
        font-weight: bold;
        font-size: 1rem;
        text-align: center;
        line-height: 41px;
        /* 45px height - 4px border */
    }

    .footer .social-links a[href*="facebook"] {
        color: #1877f2;
    }

    .footer .social-links a[href*="instagram"] {
        color: #E4405F;
    }

    .footer .social-links a[href*="linkedin"] {
        color: #0077b5;
    }

    .footer .social-links a[href*="youtube"] {
        color: #FF0000;
    }

    .footer .social-links a[href*="twitter"] {
        color: #1DA1F2;
    }
}

/* Improve social links spacing and alignment */
.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .footer .social-links {
        justify-content: center;
    }
}

/* Brea
dcrumb Navigation Styles */
.breadcrumb-nav {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(44, 95, 95, 0.1);
    padding: 1rem 0;
    margin-top: 100px;
    /* Account for fixed navbar */
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.breadcrumb-item:not(:last-child) {
    margin-right: 0.8rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    position: relative;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    background: rgba(44, 95, 95, 0.1);
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

.breadcrumb-item.active span {
    padding: 0.3rem 0.6rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.7rem;
    margin: 0 0.5rem;
    opacity: 0.6;
}

/* Breadcrumb with icons */
.breadcrumb-item:first-child a::before {
    content: "🏠";
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Fallback for home icon */
.breadcrumb-item:first-child a .fas.fa-home::before {
    content: "🏠" !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
    margin-right: 0.5rem;
}

/* Enhanced breadcrumb styling */
.breadcrumb-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.breadcrumb-nav {
    position: relative;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.8rem 0;
        margin-top: 70px;
    }

    .breadcrumb {
        font-size: 0.8rem;
        margin-top: 1.7rem;
    }

    .breadcrumb-item:not(:last-child) {
        margin-right: 0.5rem;
    }

    .breadcrumb-separator {
        margin: 0 0.3rem;
        font-size: 0.6rem;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active span {
        padding: 0.2rem 0.4rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .breadcrumb-item {
        margin-right: 0 !important;
    }

    .breadcrumb-separator {
        display: none;
    }

    .breadcrumb-item:not(:last-child)::after {
        content: "↓";
        margin-left: 0.5rem;
        color: var(--text-light);
        font-size: 0.8rem;
    }
}

/* Page header adjustments when breadcrumb is present */
.page-header {
    padding-top: 100px;
    /* Reduced since breadcrumb adds space */
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 80px;
    }
}

/* Brea
dcrumb Category Styling */
.breadcrumb-item.category .category-label {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service category colors */
.breadcrumb-item.category .category-label {
    position: relative;
    overflow: hidden;
}

.breadcrumb-item.category .category-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.breadcrumb-item.category:hover .category-label::before {
    left: 100%;
}

/* Enhanced breadcrumb animations */
.breadcrumb-item {
    animation: breadcrumbFadeIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(-10px);
}

.breadcrumb-item:nth-child(1) {
    animation-delay: 0.1s;
}

.breadcrumb-item:nth-child(2) {
    animation-delay: 0.2s;
}

.breadcrumb-item:nth-child(3) {
    animation-delay: 0.3s;
}

.breadcrumb-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes breadcrumbFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb separator animation */
.breadcrumb-separator {
    transition: all 0.3s ease;
}

.breadcrumb-item:hover+.breadcrumb-item .breadcrumb-separator,
.breadcrumb-item:hover .breadcrumb-separator {
    color: var(--secondary-color);
    transform: translateX(2px);
}

/* Mobile breadcrumb improvements */
@media (max-width: 480px) {
    .breadcrumb-item.category .category-label {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        content: "↓";
        margin-left: 0.5rem;
        color: var(--secondary-color);
        font-size: 0.8rem;
        animation: bounce 2s infinite;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-3px);
    }

    60% {
        transform: translateY(-2px);
    }
}

/* Page
 Header Background Variations */
.page-header.about-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/home-about.jpg') center/cover no-repeat;
}

.page-header.services-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/swimming-pool-construction.jpg') center/cover no-repeat;
}

.page-header.portfolio-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/Featured-project2.jpg') center/cover no-repeat;
}

.page-header.contact-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/resort.jpg') center/cover no-repeat;
}

.page-header.pool-service-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/swimming-pool.jpg') center/cover no-repeat;
}

.page-header.waterpark-service-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/waterpark-construction-services.jpg') center/cover no-repeat;
}

.page-header.resort-service-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/resort.jpg') center/cover no-repeat;
}

.page-header.farmhouse-service-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/farm-house.jpg') center/cover no-repeat;
}

.page-header.construction-service-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/Ferro-Concrete-Construction.jpg') center/cover no-repeat;
}

.page-header.policy-header {
    background: linear-gradient(135deg, rgba(44, 95, 95, 0.85), rgba(26, 74, 74, 0.75)),
        url('../images/land-development.jpg') center/cover no-repeat;
}

/* Page Header Parallax Effect */
.page-header {
    background-attachment: fixed;
}

/* Disable parallax on mobile for better performance */
@media (max-width: 768px) {
    .page-header {
        background-attachment: scroll;
    }
}

/* Page Header Animation Enhancement */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(244, 162, 97, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.page-header .container {
    z-index: 3;
}

/* Trusted Clients Section */
.clients-section {
    padding: 6rem 0;
    background: white;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.client-logo-card {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #1a202c;
    /* Dark background as requested */
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo-card:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #2d3748;
    border-color: rgba(255, 255, 255, 0.1);
}

.client-logo-card.text-only {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-logo-card.text-only:hover {
    border-color: var(--secondary-color);
    background: #2d3748;
}

.client-logo-card span {
    font-weight: 600;
    color: white;
    /* Changed from text-dark to white for dark bg */
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.3;
}