/* Sidebar styling */
.sidebar {
    width: 260px;
    height: 100vh;
    background: #0d6efd;
    position: fixed;
    top: 0;
    left: -260px;
    padding-top: 60px;
    transition: none; /* no animation */
    z-index: 1000;
}

.sidebar.open {
    left: 0;
}

.sidebar a {
    padding: 12px 20px;
    color: white;
    display: block;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Sidebar close button */
.close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 28px;
    color: white;
    background: none;
    border: none;
}

/* Desktop nav links */
.nav-link-custom {
    font-size: 17px;
    text-decoration: none;
}

.nav-link-custom:hover {
    border-bottom: 2px solid white;
    padding-bottom: 2px;
}

/* Call button desktop */
.call-btn {
    border-radius: 5px;
}

/* Mobile header adjustment */
@media (max-width: 768px) {
    .header h3 {
        font-size: 22px;
    }
}
/* HERO SECTION */
/* HERO SECTION */
.hero {
    height: 85vh;
    background: url('../images/banner.png')
        no-repeat center center/cover;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Dark overlay */
}

/* Bring actual content above overlay */
.hero .container {
    position: relative;
    z-index: 2;
}

/* HERO TEXT STYLING */
.hero-title {
    font-size: 3rem;
    color: #fff;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
    color: #fff;
}

.hero-btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
}


.about-section {
    background-color: #f8f9fa;
}

.about-section h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.about-icon {
    font-size: 2.3rem;
    color: #0d6efd;
    background: #e7f1ff;
    padding: 12px;
    border-radius: 50%;
}
/* Increase About Section Image Size */
.about-img {
    width: 100%;
    max-width: 480px;     /* increase this value for larger image */
    border-radius: 10px;
}

/* Larger image on desktops */
@media (min-width: 992px) {
    .about-img {
        max-width: 550px; /* bigger on large screens */
        transform: scale(1.05); /* optional slight enlargement */
    }
}


/* Mobile-first adjustments */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 1.8rem;
    }
}

/* Services Section Background */
.services-section {
    background: linear-gradient(135deg, #00a7ff, #007bff);
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

/* Service Images */
.service-img {
    height: 180px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 15px;
}

/* Card Text */
.card-title {
    font-size: 1.2rem;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
}

.btn-primary {
    background: #00a7ff;
    border: none;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary:hover {
    background: #0089d6;
}
.contact-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 35px 25px;
            transition: 0.3s;
            box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
        }
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .contact-icon {
            font-size: 45px;
            color: #0d6efd;
            background: #e8f0ff;
            padding: 18px;
            border-radius: 15px;
        }
        .contact-title {
            font-weight: 600;
            font-size: 1.3rem;
            margin-top: 15px;
        }
        .contact-text {
            color: #555;
            margin-top: 5px;
        }
