/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* ---- Custom Variables ---- */
:root {
    --primary-color: #007bff; /* A clean, professional blue */
    --secondary-color: #6c757d;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-color: #fff;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.7;
    padding-top: 70px
}

/* ---- Navbar ---- */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* ---- Hero Section (Home Page) ---- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/WhatsApp Image 2025-09-19 at 23.56.12_892e7309.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-color);
    padding: 150px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.25rem;
}

/* ---- Section Styling ---- */
.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 30px);
}

.service-card, .team-card, .portfolio-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .team-card:hover, .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ---- Footer ---- */
footer {
    background-color: #343a40;
    color: var(--light-color);
}
/* ---- Portfolio Page Styles ---- */
#portfolio-filters .btn {
    margin: 0 5px;
    transition: all 0.3s ease;
}

.portfolio-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.portfolio-item img {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* ---- Counter Section ---- */
.counter-section {
    background: var(--primary-color);
    color: #000000;
    padding: 30px 0;
}

.counter-section .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.counter-section .counter-number {
    font-size: 2.5rem;
    font-weight: 700;
}

/* ---- Testimonials Section ---- */
.testimonial-card {
    border: none;
    background: #f1f1f1;
}

.testimonial-card .card-body {
    padding: 30px;
}

.testimonial-card .stars {
    color: #ffc107; /* Bootstrap's warning/yellow color */
}

/* ---- Pricing Section ---- */
.pricing-card {
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pricing-card .card-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
}

.pricing-card .price-freq {
    font-size: 1rem;
    color: var(--secondary-color);
}
/* ---- Floating WhatsApp Icon ---- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;

}
