/* Custom Variables */
:root {
    --primary-color: #2C2C2C;
    --secondary-color: #2C2C2C;
}

/* Add at the top of your CSS file */
html {
    scroll-behavior: smooth;
}

/* Adjust scroll offset for fixed header */
section {
    scroll-margin-top: 76px; /* Height of your fixed navbar */
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #e65d00;
    border-color: #e65d00;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color);
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.highlight {
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
}

.hero-cta-text {
    font-weight: bold;
    font-size: 1.2rem; /* Adjust as needed.  Should be between hero-title and hero-description sizes */
    color: white; /* Or any color that contrasts with the background */
  }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
}

/* Top Info Bar */
.top-info-bar {
    background-color: #2C2C2C;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
}

.info-link, .social-link {
    color: #fff;
    text-decoration: none;
    margin-right: 25px;
    /* transition: all 0.3s ease; */
    display: inline-flex;
    align-items: center;
}

.info-link:last-child {
    margin-right: 0;
}

.info-link i, .social-link i {
    margin-right: 8px;
}

.social-link:hover {
    color: #0066ff !important; /* Changed hover color and added !important */
    opacity: 1;
}

/* Main Navigation */
.navbar {
    background-color: #fff; /* Changed to white */
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    height: 60px;
    width: auto;
}

.navbar-nav {
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #333 !important; /* Changed to dark color for contrast */
    font-size: 15px;
    font-weight: 500;
    padding: 0 !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0066ff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0066ff;
    transition: width 0.3s ease;
}

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

.contact-btn {
    background-color: #0066ff;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #0052cc;
    color: #fff !important;
    opacity: 1;
}

.contact-btn::after {
    display: none;
}

/* Make sure the navbar stays on top */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Rest of the responsive styles remain the same */
@media (max-width: 991.98px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar-nav {
        gap: 15px;
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 8px 0 !important;
    }
    
    .contact-btn {
        display: inline-block;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .top-info-bar {
        padding: 5px 0;
    }

    .info-link {
        display: block;
        margin: 5px 0;
    }
    
    .social-info {
        margin-top: 5px;
    }
}

/* Services Section */
.services .card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.services .card-img-top {
    height: 200px;
    object-fit: cover;
}

.services .card-title {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.services .card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

/* About Us Section */
.about-us {
    background-color: #fff;
    position: relative;
}

.about-us .section-tag span {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-us h2 {
    color: var(--primary-color);
    line-height: 1.2;
}

.about-us {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.company-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: bold;
    min-width: 150px;
    color: #666;
}

.value {
    flex: 1;
}

.value a {
    color: #007bff;
    text-decoration: none;
}

.value a:hover {
    text-decoration: underline;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    width: 100%; /* Add this to ensure full width */
    padding: 0 15px; /* Add padding instead of letting items handle spacing */
}

.stat-item {
    text-align: center;
    padding: 20px; /* Reduced padding */
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%; /* Ensure items take full width */
}

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

.stat-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Add responsive breakpoints */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
        padding: 0 10px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
    }
    
    .label {
        margin-bottom: 0.5rem;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin-bottom: 2rem;
    }
}

/* Responsive adjustments for About Us */
@media (max-width: 991.98px) {
    .about-us h2 {
        font-size: 2rem;
    }
    
    .about-us .about-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-us .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}


.map-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    border-radius: 8px;
}

/* Responsive adjustments for Contact Section */
@media (max-width: 991.98px) {
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .map-container {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .map-container iframe {
        height: 300px;
    }
}



/* Gallery Section */
.gallery {
    background-color: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery .btn-light {
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery .btn-light:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
/* Gallery Page Specific Styles */
.gallery-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.gallery-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-categories .btn {
    padding: 8px 20px;
    border-radius: 20px;
}

.gallery-categories .btn.active {
    background-color: var(--primary-color);
    color: white;
}

.gallery-grid {
    background-color: white;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2rem;
    }

    .gallery-categories {
        gap: 0.5rem;
    }

    .gallery-categories .btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

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

@media (max-width: 767.98px) {
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-content h3 {
        font-size: 1.25rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
}


/* Footer Styles */
.footer {
    background-color: #2C2C2C;
    padding: 50px 0 20px;
    color: #fff;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

/* Company Info */
.footer-company-info {
    margin-bottom: 20px;
}

/* Social Links */
.footer .social-links {
    display: flex;
    gap: 15px;
}

.footer .social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-contact li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-contact li a:hover {
    opacity: 1;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h5 {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-company-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        align-items: center;
        text-align: left;
    }
    
    .contact-numbers {
        align-items: flex-start;
    }
    
    .footer h5 {
        font-size: 1rem;
    }
    
    .footer-links a,
    .footer-contact li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .copyright-bar {
        margin-top: 20px;
    }
}