:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #228B22; /* Forest Green */
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white: #fff;
    --black: #000;
}
/* Slim Top Contact Bar Styles */
.top-contact-bar {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    width: 100%;
    z-index: 1030; /* Above navbar */
}

.contact-info-item {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
}

.contact-info-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: #FFD700; /* Gold color */
}

.contact-buttons {
    display: flex;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.contact-btn i {
    margin-right: 6px;
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
}

.phone-btn {
    background-color: #FFD700; /* Gold color */
    color: #222; /* Dark text */
}

/* Header adjustments for slim bar */
.header {
    margin-top: 38px; /* Height of slim bar + some spacing */
}

.navbar.fixed-top {
    top: 38px; /* Height of slim bar */
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .top-contact-bar {
        padding: 5px 0;
    }
    
    .contact-btn {
        padding: 5px 10px;
    }
    
    .contact-btn span {
        display: none;
    }
    
    .contact-btn i {
        margin-right: 0;
        font-size: 16px;
    }
    
    .header {
        margin-top: 34px;
    }
    
    .navbar.fixed-top {
        top: 34px;
    }
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar .dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}
/* Video Hero Section */
.video-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 991.98px) {
    .video-hero-section {
        height: 80vh;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .video-hero-section {
        height: 70vh;
        min-height: 500px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}
/* Slim Contact Header */
.top-contact-bar {
    background-color: var(--dark-color);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-buttons {
    display: flex;
    gap: 10px;
}

.contact-button {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button i {
    margin-right: 8px;
    font-size: 14px;
}

.whatsapp {
    background-color: #25D366;
    color: white !important;
}

.whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
}

.phone {
    background-color: var(--primary-color);
    color: var(--dark-color) !important;
}

.phone:hover {
    background-color: #e6b800;
    transform: translateY(-1px);
}

/* Mobile specific styles */
@media (max-width: 767.98px) {
    .top-contact-bar {
        padding: 6px 0;
    }
    
    .contact-button {
        padding: 6px 10px;
    }
    
    .contact-button span {
        display: none;
    }
    
    .contact-button i {
        margin-right: 0;
        font-size: 16px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}


/* Header Styles */
.navbar {
    padding: 0px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e7a1e;
    border-color: #1e7a1e;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background: url('../images/banner.jpg') no-repeat center center;
    background-size: cover;
    height: 80vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--secondary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    position: relative;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
}

/* Services Section */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(34, 139, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Projects Section */
.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card img {
    transition: all 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(34, 139, 34, 0.9);
    color: var(--white);
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    bottom: 0;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-item {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 15px;
}

.testimonial-content i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-style: normal;
    color: #666;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-links h3, 
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 5px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-section .col-lg-6 {
        margin-bottom: 30px;
    }
}
/* Page Hero Section */
.page-hero-section {
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* About Page Styles */
.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
    line-height: 1;
}

.experience-badge p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.signature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature p {
    margin-bottom: 0;
}

/* Mission Vision Cards */
.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(34, 139, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.values-list i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Team Section */
.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(34, 139, 34, 0.9);
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
}

.team-info p {
    color: #666;
    margin-bottom: 0;
}

/* Why Choose Us */
.why-choose-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Client Logos */
.client-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Services Page Styles */
.service-detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Process Steps */
.process-steps {
    position: relative;
    padding-left: 50px;
}

.process-step {
    position: relative;
    padding-bottom: 40px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.process-step:last-child::before {
    height: 30px;
}

.step-number {
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
}

.step-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Projects Page Styles */
.projects-filter {
    margin-bottom: 30px;
}

.btn-filter {
    margin: 5px;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.project-card {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 139, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link,
.project-zoom {
    color: #fff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.project-link:hover,
.project-zoom:hover {
    background: var(--primary-color);
    color: #fff;
}

.project-info {
    padding: 20px;
    background: #fff;
}

.project-info h3 {
    margin-bottom: 5px;
}

.project-info p {
    color: #666;
    margin-bottom: 10px;
}

.badge {
    padding: 5px 10px;
    font-weight: 500;
}

/* Testimonials */
.testimonial-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.testimonial-content i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rating {
    color: var(--primary-color);
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #666;
    margin-bottom: 0;
}

/* Stats Section */
.stat-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(34, 139, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .experience-badge {
        width: 120px;
        padding: 15px;
    }
    
    .experience-badge h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-hero-section {
        height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .mv-card {
        margin-bottom: 30px;
    }
    
    .process-steps {
        padding-left: 30px;
    }
    
    .step-number {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .process-step::before {
        left: -30px;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
}
/* Project Details Page */
.project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.project-description p {
    margin-bottom: 15px;
}

.project-features ul {
    list-style: none;
    padding: 0;
}

.project-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.project-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.project-testimonial i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.project-info-list {
    list-style: none;
    padding: 0;
}

.project-info-list li {
    margin-bottom: 15px;
    display: flex;
}

.info-label {
    font-weight: 600;
    width: 100px;
    flex-shrink: 0;
}

.info-value {
    color: #666;
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-share .facebook {
    background-color: #3b5998;
}

.social-share .twitter {
    background-color: #1da1f2;
}

.social-share .linkedin {
    background-color: #0077b5;
}

.social-share .pinterest {
    background-color: #bd081c;
}

.social-share a:hover {
    transform: translateY(-3px);
}

.related-project h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.related-project h5 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-project h5 a:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .project-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .project-info-list li {
        flex-direction: column;
    }
    
    .info-label {
        width: 100%;
        margin-bottom: 5px;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-link i {
    font-size: 36px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-link {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-link i {
        font-size: 30px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
}

.scroll-text {
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-link i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-slider {
        height: 80vh;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}
/* Header Contact Bar */
.header-contact-bar {
    background-color: var(--dark-color);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-link i {
    margin-right: 8px;
    font-size: 12px;
}

.whatsapp-link {
    background-color: #25D366;
    color: #fff !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
}

.whatsapp-link i {
    font-size: 16px;
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .header-contact-bar {
        padding: 10px 0;
        text-align: center;
    }
    
    .contact-link {
        display: block;
        margin: 5px 0;
    }
    
    .whatsapp-link {
        margin-top: 10px;
        display: inline-flex;
    }
    
    .contact-info, .social-links {
        text-align: center !important;
    }
}
/* Slim Top Contact Bar Styles */
.top-contact-bar {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    width: 100%;
    z-index: 1030; /* Above navbar */
}

.contact-info-item {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
}

.contact-info-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: #FFD700; /* Gold color */
}

.contact-buttons {
    display: flex;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.contact-btn i {
    margin-right: 6px;
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
}

.phone-btn {
    background-color: #FFD700; /* Gold color */
    color: #222; /* Dark text */
}

/* Header adjustments for slim bar */
.header {
    margin-top: 38px; /* Height of slim bar + some spacing */
}

.navbar.fixed-top {
    top: 38px; /* Height of slim bar */
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .top-contact-bar {
        padding: 5px 0;
    }
    
    .contact-btn {
        padding: 5px 10px;
    }
    
    .contact-btn span {
        display: none;
    }
    
    .contact-btn i {
        margin-right: 0;
        font-size: 16px;
    }
    
    .header {
        margin-top: 34px;
    }
    
    .navbar.fixed-top {
        top: 34px;
    }
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar .dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}
