:root {
    --primary-color: #0B2447;    /* Navy Blue */
    --secondary-color: #C0C0C0;  /* Silver */
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --section-padding: 100px 0;
    --heading-color: #0B2447;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.main-nav {
    flex-grow: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #007bff;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.whatsapp-btn,
.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.phone-btn {
    background: #007bff;
    color: white;
}

.whatsapp-btn:hover {
    background: #1ea952;
}

.phone-btn:hover {
    background: #0056b3;
}

.header-actions .download-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #19376D;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.header-actions .download-btn:hover {
    background-color: #0B2447;
    transform: translateY(-2px);
}

.header-actions .download-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        will-change: transform;
        overscroll-behavior: contain;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .header-actions {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100vw;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 2000;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .header-actions .download-btn {
        display: inline-flex;
        margin: 0 5px;
        font-size: 0.95rem;
        padding: 8px 10px;
    }

    .whatsapp-btn,
    .phone-btn {
        width: auto;
        min-width: 44vw;
        justify-content: center;
        font-size: 1.1rem;
        padding: 0.75rem 0.5rem;
    }

    /* Optimize touch targets for mobile */
    .nav-links a,
    .whatsapp-btn,
    .phone-btn,
    .mobile-menu-toggle {
        min-height: 48px;
        padding: 12px;
        margin: 0;
        display: flex;
        align-items: center;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
        width: auto;
    }

    .header-flex {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    /* Optimize mobile hero section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .hero-image {
        height: 250px;
    }

    /* Optimize service cards for mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card img {
        height: 200px;
    }

    /* Optimize footer for mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-info .footer-logo {
        margin: 0 auto 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    .whatsapp-btn, .phone-btn {
        min-width: 90vw;
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
    }
    .header-actions .download-btn {
        min-width: 90vw;
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
        margin: 0.25rem 0;
    }
}

/* Add content visibility optimization for better performance */
.service-card,
.footer-info,
.footer-contact,
.footer-links {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Add smooth scrolling only on non-touch devices */
@media (hover: hover) {
    html {
        scroll-behavior: smooth;
    }
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
}

/* Add GPU acceleration for animations */
.nav-links,
.service-card,
.cta-button,
.whatsapp-btn,
.phone-btn {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Hide old contact styles */
.nav-contact {
    display: none;
}

.whatsapp-button {
    display: none;
}

/* Hero Section */
.hero {
    height: 800px;
    padding: 120px 0;
    background: var(--primary-color);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .cta-button {
    min-width: 180px;
}

.hero-buttons .outline {
    background: transparent;
    border-color: var(--white);
}

.hero-buttons .outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 500px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(11, 36, 71, 0.3), transparent);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Media Queries for Hero Section */
@media (max-width: 1200px) {
    .hero {
        height: 700px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 600px;
        padding: 100px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin: 0 auto;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* About Preview Section */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Preview */
.services-preview {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(rgba(11, 36, 71, 0.9), rgba(11, 36, 71, 0.9)),
                url('../images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info .footer-logo {
    height: 100px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after,
.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
}

.developer-credit {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.developer-credit:hover {
    opacity: 1;
}

.developer-credit .orbiscr {
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 3px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(11, 36, 71, 0.9), rgba(11, 36, 71, 0.9)),
                url('../images/page-header-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
}

.breadcrumb li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb li.active {
    opacity: 1;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    opacity: 0.5;
}

/* About Page Styles */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vision-mission {
    background: var(--light-bg);
    padding: var(--section-padding);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vm-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vm-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vm-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
}

.ceo-message {
    padding: var(--section-padding);
}

.message-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.message-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
}

.ceo-name {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.ceo-title {
    color: #666;
}

.our-team {
    background: var(--light-bg);
    padding: var(--section-padding);
}

.team-structure {
    max-width: 800px;
    margin: 0 auto;
}

.team-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Services Page Styles */
.services-section {
    padding: var(--section-padding);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.service-content h3 {
    margin: 20px 0 15px;
    color: var(--heading-color);
}

.service-content ul {
    list-style: none;
    margin-top: 15px;
}

.service-content ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.expertise-section {
    background: var(--light-bg);
    padding: var(--section-padding);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.expertise-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-item h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* CTA Info */
.cta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.cta-item i {
    font-size: 1.5rem;
}

/* Projects Page Styles */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background: var(--white);
    color: var(--text-color);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 36, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.project-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.project-content p {
    color: #666;
    margin-bottom: 10px;
}

.project-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    color: var(--primary-color);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.info-items {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f0f2f5;
    transform: translateY(-3px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    background: rgba(11, 36, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: var(--primary-color);
    color: #ffffff;
}

.info-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-container h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-color);
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 15px rgba(11, 36, 71, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1a3c6e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 36, 71, 0.2);
}

.social-links-contact {
    margin-top: 40px;
}

.social-links-contact h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons-contact {
    display: flex;
    gap: 15px;
}

.social-icon-contact {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon-contact:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 0 0 var(--section-padding);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .info-item {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
    }

    .submit-btn {
        padding: 12px 30px;
    }
}

/* Enhanced Project Styles */
.project-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 10px 0;
    height: 60px;
    overflow: hidden;
}

.project-card .project-content {
    padding: 25px;
    background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
}

/* Enhanced Contact Form Styles */
.form-intro {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-group input,
.form-group textarea {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(11, 36, 71, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-color) 0%, #1a3c6e 100%);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 18px 40px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 36, 71, 0.2);
}

/* Enhanced Info Items */
.info-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.info-item i {
    background: linear-gradient(to right, var(--primary-color) 0%, #1a3c6e 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-contact .phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #f5f5f5;
    padding: 12px 25px;
    border-radius: 5px;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-contact .phone-link i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.nav-contact .phone-link:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.nav-contact .whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-contact .whatsapp i {
    font-size: 1.4rem;
}

.nav-contact .whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .nav-contact {
        gap: 15px;
    }
    
    .nav-contact .phone-link,
    .nav-contact .whatsapp {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .nav-contact {
        display: none;
    }
}

/* Remove the old floating WhatsApp button */
.whatsapp-button {
    display: none;
}

/* Completed Projects Section */
.completed-projects {
  background: #f8f9fa;
  padding: 80px 0;
}
.completed-projects h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  letter-spacing: 1px;
}
.project-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11,36,71,0.08);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s;
  position: relative;
}
.project-card:hover {
  box-shadow: 0 8px 32px rgba(11,36,71,0.16);
}
.project-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.project-card p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.project-images {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.project-images img {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(11,36,71,0.08);
  width: 180px;
  height: 120px;
  object-fit: cover;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #eaeaea;
}
.project-images img:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 6px 24px rgba(11,36,71,0.18);
}
@media (max-width: 992px) {
  .project-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .project-card {
    padding: 24px 12px 16px 12px;
  }
  .project-images img {
    width: 48vw;
    max-width: 220px;
    height: 100px;
  }
}
@media (max-width: 576px) {
  .completed-projects {
    padding: 40px 0;
  }
  .completed-projects h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .project-card h3 {
    font-size: 1.1rem;
  }
  .project-card p {
    font-size: 0.95rem;
  }
  .project-images img {
    width: 90vw;
    max-width: 100%;
    height: 90px;
  }
}