body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Navbar container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    color: #000;
    position: relative;
    z-index: 10;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.menu-icon {
    font-size: 28px;
    cursor: pointer;
}

/* Sidebar menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -250px;
    /* hide initially */
    width: 250px;
    height: 100%;
    background-color: #023047;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 20;
}

.side-menu.active {
    right: 0;
    /* slide in */
}

.side-menu .close-btn {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 30px;
}

.side-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin: 15px 0;
    transition: color 0.2s;
}

.side-menu a:hover {
    color: #ffb703;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6);
    /* Dark overlay effect */
}

/* Content on video */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-content .btn {
    padding: 12px 30px;
    background-color: #ffb703;
    color: #012331;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #fb8500;
    transform: scale(1.05);
}

.hover-item {
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.hover-item:hover {
    transform: scale(1.05);
    background-color: #ffb703;
    color: #012331;
    font-weight: bold;
}

#hover-bg {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    transition: background-image 0.5s;
    background-color: #ccc;
    /* fallback color */
    overflow: hidden;
    border-radius: 20px;
}

.active-projects {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    color: white;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
}

.card-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    min-height: 250px;
    color: black;
    transition: color 0.3s;
}

.card-container .overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.571);
    backdrop-filter: blur(2px);
    /* transparent by default */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.card-container.hovered {
    color: white;
}

.card-container.hovered .overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 1;
    /* show text on hover */
}

.card-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.before-after-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.before-after-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.after-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    /* initial reveal */
    overflow: hidden;
}

.after-img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider handle */
.slider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #ffb703;
    cursor: ew-resize;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.slider::before {
    content: "Drag";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb703;
    color: #012331;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .slider::before {
        font-size: 12px;
        padding: 4px 10px;
    }
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Circle for social icons */

.social-circle {
    position: absolute;
    bottom: 120px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #ffb703;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s, height 0.3s;
    overflow: hidden;
    color: #012331;
}

.team-card:hover .social-circle {
    width: 120px;
    height: 40px;
    border-radius: 20px;
    padding: 0 10px;
}

.social-circle i {
    margin: 0 5px;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .social-circle i {
    opacity: 1;
}

/* Footer Styles */
footer {
    background-color: #012331;
    color: #ffffff;
    padding: 60px 0 20px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffb703;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffb703;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffb703;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .social-icons a {
        margin-right: 5px;
        font-size: 16px;
    }
}

/* Responsive */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

h2.section-title {
    font-weight: bold;
    margin-bottom: 30px;
    color: #012331;
}

/* Hero Section */
.about-hero {

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.about-hero p {
    font-size: 1.2rem;
}

/* Section Styling */
section {
    padding: 80px 0;
}

/* Slider Section */
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.slide img {
    width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 183, 3, 0.8);
    color: #012331;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: #ffb703;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Team / Cards Section Example */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.team-card:hover {
    transform: scale(1.05);
}

/* Hero Section */
.contact-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.contact-hero p {
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    font-weight: bold;
    margin-bottom: 30px;
    color: #012331;
    text-align: center;
}

.contact-section form .form-control {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.contact-section form .btn {
    background-color: #ffb703;
    color: #012331;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact-section form .btn:hover {
    background-color: #e09b03;
}

/* Map Section */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
}

/* Info Section */
.contact-info {
    background-color: #d7d7d7;
    color: black;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 100px;
}

.contact-info h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: #ffb703;
    margin-right: 10px;
}


/* Hero Section */
.services-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.services-hero p {
    font-size: 1.2rem;
}

/* Cards Section */
.service-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.service-card-body h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.95rem;
    color: #555;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Projects Slider */
.projects-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 50px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.slide img {
    width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffb703;
    color: #012331;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: #e09b03;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Why Choose Us Section */
.features-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 40px;
    color: #ffb703;
    margin-bottom: 15px;
}

.cta-banner {
    background: #012331;
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;
    margin: 50px 0;
}

.cta-banner .btn {
    background: #ffb703;
    color: #012331;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-banner .btn:hover {
    background: #e09b03;
}