/* Typography */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #0d6efd;
    border-radius: 2px;
}

/* Logo Section */
.logo-section {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-section img {
    max-height: 110px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    background-size: cover; /* Ensures the image covers the entire section */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}

/* Projects Section */
.projects-section {
    background-color: #f8f9fa;
    padding: 80px 0 !important;
    position: relative;
    text-align: center;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0d6efd, transparent);
}

.projects-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px !important;
    position: relative;
    display: inline-block;
}

.projects-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0d6efd;
    border-radius: 2px;
}

/* Project Navigation Tabs */
.nav-tabs {
    border: none;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nav-tabs .nav-link {
    border: 2px solid transparent;
    color: #666;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.nav-tabs .nav-link::before,
.nav-tabs .nav-link::after {
    content: '•';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6efd;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link::before {
    left: 10px;
}

.nav-tabs .nav-link::after {
    right: 10px;
}

.nav-tabs .nav-link:hover {
    color: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-2px);
}

.nav-tabs .nav-link:hover::before,
.nav-tabs .nav-link:hover::after,
.nav-tabs .nav-link.active::before,
.nav-tabs .nav-link.active::after {
    opacity: 1;
}

.nav-tabs .nav-link:hover::before {
    left: 5px;
}

.nav-tabs .nav-link:hover::after {
    right: 5px;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.nav-tabs .nav-link.active::before,
.nav-tabs .nav-link.active::after {
    color: white;
}

/* Project Carousel */
.carousel {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item {
    background-color: black;
}

.carousel-item img {
    opacity: 0.9;
    transition: opacity 0.3s ease;
    height: 400px;
    object-fit: cover;
}

.carousel-item img:hover {
    opacity: 1;
    cursor: pointer;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0d6efd;
    opacity: 0.5;
    margin: 0 5px;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Project Titles */
.project-title {
    font-size: 2.2rem;
    color: #333;
    margin: 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #0d6efd;
    border-radius: 2px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.why-choose-us h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #333;
    text-align: center;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    font-size: 1.8rem;
    color: #0d6efd;
    margin-bottom: 20px;
}

.feature-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.testimonials-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0d6efd;
    border-radius: 2px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 3rem;
    color: #0d6efd;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-location {
    color: #0d6efd;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #333;
    text-align: center;
}

.contact-info {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info h3 {
    color: #0d6efd;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
}

.contact-details i {
    margin-right: 10px;
    color: #0d6efd;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd;
}

.company-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-credit {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #0a58ca;
}

/* Modal Styles */
.modal-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .projects-title {
        font-size: 2.5rem;
    }
}

/* Navbar Styles */
.navbar {
    background-color: white;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand, .navbar-nav .nav-link {
    color: black !important;
    transition: color 0.3s ease;
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #0d6efd !important;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #0d6efd;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    transform: translateX(0);
} 

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

.page-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.intro-text, .body-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2em;
    color: #444;
    margin-top: 40px;
    margin-bottom: 20px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

.project-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.project-overlay h3 {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}
.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Content Section Styles */
.content-section {
    background-color: #fff;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.icon-wrapper {
    font-size: 2rem;
    color: #0d6efd;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0d6efd;
    border-radius: 2px;
}