/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.30);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.8rem;
    color: #2c3e50;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -4px;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}

.cta-button:hover {
    background: #0056b3;
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
    transform: translateY(-2px) scale(1.04);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.services-swiper {
    position: relative;
    padding: 2rem 3rem;
    overflow: hidden;
    width: 100%;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-card i {
    font-size: 2.2rem;
    color: #007bff;
    margin: 1rem 0;
}

.service-card h3 {
    margin: 0.5rem 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.4;
}

.service-card p {
    padding: 0 1rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #007bff;
    color: white;
}

.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
    visibility: hidden;
}

/* Ensure navigation buttons are above other elements */
.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 1rem;
}

.swiper-pagination-bullet {
    background: #007bff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.about-image:hover {
    transform: scale(1.06) rotate(-1.5deg);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.about-image:first-child {
    grid-column: 1 / -1;
    height: 250px;
}

/* Company Values Section */
.company-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

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

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

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

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.contact-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #007bff;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

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

.contact-form {
    flex: 2 1 600px;
    max-width: 800px;
    min-width: 350px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

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

.submit-button {
    padding: 1rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}

.submit-button:hover {
    background: #0056b3;
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.footer-section ul li a i {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    background-color: #007bff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #0056b3;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Logo Styles */
.logo-img {
    height: 90px;
    width: auto;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

/* Facebook Button in Footer */
.facebook-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1877f2;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.facebook-button:hover {
    background-color: #166fe5;
}

.facebook-button i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0.5rem 20px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s;
        z-index: 999;
    }

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

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    .hamburger {
        display: block;
        z-index: 1000;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #2c3e50;
        margin: 5px 0;
        transition: 0.3s;
    }

    .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);
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        width: 100%;
        padding: 1rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .map-container {
        width: 100%;
        margin: 1rem 0;
    }

    .contact-form {
        width: 100%;
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
    }

    .services-swiper {
        padding: 1rem 2rem;
    }

    .service-card {
        max-width: 300px;
    }

    .service-image {
        height: 180px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 0.5rem;
    }

    .submit-button {
        width: 100%;
        padding: 0.8rem;
    }

    .info-item {
        padding: 0.8rem;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .service-card {
        max-width: 280px;
    }

    .service-image {
        height: 160px;
    }

    .services-swiper {
        padding: 1rem 1.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .service-card:hover {
        transform: none;
    }

    .cta-button:active,
    .submit-button:active,
    .facebook-button:active {
        opacity: 0.8;
    }
}

/* Responsive Updates */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image:first-child {
        height: 200px;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

    .company-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.projects h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.project-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.project-content {
    padding: 28px 24px 20px 24px;
    background: #2d3a5a;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.project-content p {
    font-size: 1.1rem;
    color: #e0e6f6;
    margin-bottom: 18px;
    line-height: 1.5;
}

.project-location {
    color: #ffb347;
    font-weight: 500;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
}

.project-link {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.project-link:hover {
    background: #0056b3;
}

/* Clients Section */
.clients-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #ddd;
}

.clients-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.clients-grid {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.clients-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0;
}

.clients-list li {
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clients-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

    .project-card img {
        height: 250px;
    }

    .clients-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .project-card img {
        height: 200px;
    }

    .project-content {
        padding: 20px 16px;
    }

    .project-content h3 {
        font-size: 1.3rem;
    }

    .project-content p {
        font-size: 1rem;
    }

    .clients-list {
        grid-template-columns: 1fr;
    }
}

