/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* smooth scrolling */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 1rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #fff;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #f0f9ff;
}

.section-header {
    text-align: left;
    max-width: 800px;
    margin: 0 0 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #2563eb;
    margin: 1.5rem 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    height: 80px;
    background: linear-gradient(to right, #0a0b11, #8c99ef);
    color: white;
    display: flex;
    align-items: center;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo__image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2563eb;
    font-size: 1.4rem;
}

.custom_logo {
    width: 50px; /* Adjust size as needed */
    height: auto;
    padding-right: 5px;
}

.menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: white;
    left: 0;
    transition: transform 0.3s ease;
}
.hamburger::before {
    top: -8px;
}
.hamburger::after {
    top: 8px;
}
.menu-toggle.active .hamburger {
    background-color: transparent;
}
.menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav__links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav__links a:hover {
    color: #f0f9ff;
}

.nav__links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #f0f9ff;
    transition: width 0.3s;
}

.nav__links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Marketing Banner */
.marketing-banner {
    position: relative;
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.marketing-text {
    font-size: 1.1rem;
    font-weight: 500;
    animation: pulse 2s infinite;
}

/* Home/Hero Section */
.home {
    padding: 140px 0 5rem;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.home-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.home-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.home-container {
    max-width: 1400px;
    margin: 0 0;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.home-text-content {
    max-width: 1300px;
    text-align: left;
}

.home-headline {
    font-family: 'Roboto', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.home-subtext {
    font-size: 1.4rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 1100px;
    animation: fadeInUp 1.2s ease;
    text-align: justify;
}

/* Gallery Section */
.gallery {
    background-color: #f1f5f9;
    padding: 1rem 0;
}

.gallery-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end;
}

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

.slide-content {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 3rem;
    width: 100%;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.slide-location {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.gallery-btn {
    background: rgba(255,255,255,0.85);
    color: #2563eb;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gallery-btn:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #2563eb;
    transform: scale(1.3);
}

/* About Section */
#about {
    scroll-margin-top: 100px; /* height of your fixed header */
}

.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    margin-top: 15px; /* adjust this value to move image lower */
}

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

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

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.8rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Services Section */
.services {
    background-color: #f1f5f9;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service__icon {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__icon i {
    font-size: 3rem;
    color: #2563eb;
}

.service__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #0f172a;
}

.service__description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Projects Section */
.projects {
    background-color: #fff;
}

.projects-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2.2rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
    margin: 0.8rem;
}

.tab-btn.active, .tab-btn:hover {
    background-color: #2563eb;
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.project-info {
    padding: 2rem;
    background-color: #fff;
}

.project-title {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.project-category {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: block;
    font-weight: 500;
}

.project-description {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #f1f5f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px of30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-content {
    font-style: italic;
    color: #475569;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonial-content::before {
    content: "“";
    font-size: 6rem;
    color: #dbeafe;
    position: absolute;
    top: -40px;
    left: -15px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #dbeafe;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2563eb;
    font-size: 1.8rem;
}

.author-info h4 {
    font-weight: 600;
    color: #0f172a;
    font-size: 1.3rem;
}

.author-info p {
    color: #64748b;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 1rem 0;
    background: linear-gradient(to right, #0a0b11, #8c99ef);
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

.contact p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 5.5fr 2fr 0fr 0fr;
    gap: 1rem;
    margin-bottom: 1px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo__image {
    width: 55px;
    height: 55px;
    margin-right: 12px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2563eb;
    font-size: 1.5rem;
}

.footer-about p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.footer-heading {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #2563eb;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center; /* Aligns the icon and text vertically in the middle */
    gap: 10px; /* Adjust this value for the space between the icon and text */
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
    display: block;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0a0f1f;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.copyright {
    font-size: 0.95rem;
    color: #94a3b8;
}

.copyright a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #1e293b;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
    100% {
        opacity: 0.9;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .home-headline {
        font-size: 3.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-slider {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .home-headline {
        font-size: 3.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .gallery-slider {
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .menu-toggle {
        display: block;
    }

    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px; /* Fixed width for right-side menu */
        height: 100vh;
        background-color: #333;
        flex-direction: column;
        padding: 4rem 1rem 1rem;
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
        transform: translateX(100%); /* Hide off-screen initially */
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav__links.active {
        display: flex;
        transform: translateX(0); /* Slide in from right */
    }

    .nav__links li {
        margin: 0;
        width: 100%;
    }

    .nav__links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #444;
    }

    .nav__links a:last-child {
        border-bottom: none;
    }

    /* Overlay for better UX */
    .nav__links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }
    
    .home {
        padding-top: 140px;
    }
    
    .home-headline {
        font-size: 2.8rem;
    }
    
    .home-subtext {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slider {
        height: 400px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
}

.project-card-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f8fafc;
}

.project-card-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card-slide.active {
    opacity: 1;
    z-index: 1;
}

.project-card-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.project-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: #2563eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-slider-btn:hover {
    background: #2563eb;
    color: white;
}

.project-prev {
    left: 12px;
}

.project-next {
    right: 12px;
}
