body {
    font-family: 'Segoe UI', sans-serif;
    padding-top: 70px;
    background: #f8f9fa;
}

/* NAVBAR */
.navbar {
    background: #0b1c2d;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(to right, #0b1c2d, #0f2f4f);
    color: white;
    padding: 40px 15px;
}

.hero-small {
    min-height: 40vh;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.1rem;
    margin-top: 15px;
}

/* SECTIONS */
.section-title {
    font-weight: 700;
}

/* SERVICE BOX */
.service-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
}

/* FOOTER */
.footer {
    background: #0b1c2d;
    color: white;
    padding: 15px;
}

/* BUTTONS */
.btn-primary {
    background: #0d6efd;
    border: none;
}

.btn-outline-light:hover {
    background: white;
    color: #0b1c2d;
}

/* DESKTOP */
@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-text {
        font-size: 1.25rem;
    }
}
/* CONTACT LINKS */
.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    background: #f8f9fa;
    color: #0b1c2d;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #0d6efd;
    color: #ffffff;
}

.contact-icon {
    font-size: 1.5rem;
}
/* ABOUT PAGE STYLES */
.about-section h2 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.about-section h3 {
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #0d6efd;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.about-highlight {
    background: #ffffff;
    padding: 25px;
    border-left: 5px solid #0d6efd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 30px 0;
}

/* PORTFOLIO */
.portfolio-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.portfolio-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-box p {
    font-size: 0.95rem;
}
.about-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.about-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #0d6efd;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
}
/* GLOBAL SECTION TITLES */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd; /* Blue like other headings */
    margin-bottom: 10px;
}
/* PORTFOLIO CARDS */
.portfolio-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-6px);
}

.portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-card .content {
    padding: 20px;
}

.portfolio-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-card a {
    text-decoration: none;
    font-weight: 600;
    color: #0d6efd;
}
/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}
.whatsapp-float i {
    font-size: 30px;
}
/* HERO BUTTON FIX (MOBILE FIRST) */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* DESKTOP: BUTTONS SIDE BY SIDE */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }
}
/* SERVICES PAGE */
.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.service-icon {
    font-size: 36px;
    color: #0d6efd;
    margin-bottom: 15px;
}
.logo-img {
    height: 48px;      /* ideal navbar size */
    width: auto;
}
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}
/* Navbar background (adjust if needed) */
.navbar {
    background-color: #0b1c2d; /* dark professional look */
}

/* Logo image size */
.logo-img {
    height: 48px;
    width: auto;
}

/* Mobile logo size */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

/* Navbar brand text */
.navbar-brand span {
    font-size: 1.25rem;
    letter-spacing: 1px;
}
.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    background: #f8f9fa;
    color: #000;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #0d6efd;
    color: #fff;
}

.contact-icon {
    font-size: 22px;
}

/* Brand colors */
.whatsapp { color: #25D366; }
.email { color: #0d6efd; }
.instagram { color: #E1306C; }

.contact-link:hover .contact-icon {
    color: #fff;
}
.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    background: #f8f9fa;
    color: #000;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #0d6efd;
    color: #fff;
}

.contact-icon {
    font-size: 20px;
}

/* Brand colors */
.phone { color: #198754; }
.whatsapp { color: #25D366; }
.email { color: #0d6efd; }
.instagram { color: #E1306C; }

.contact-link:hover .contact-icon {
    color: #fff;
}

.map-box iframe {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.footer {
    background-color: #0b1c2d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 0.95rem;
}

.footer-trust {
    font-size: 1.05rem;
    font-weight: 600;
    color: #20c997; /* trust green */
}

.footer-trust i {
    font-size: 1.2rem;
}

.footer-info {
    color: #cfd8dc;
    max-width: 600px;
    margin: 0 auto;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}
.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 42px;
    color: #0d6efd;
    margin-bottom: 18px;
}

.service-card h4 {
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: #6c757d;
    font-size: 0.95rem;
}
.pricing-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid #0d6efd;
}

.pricing-price {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-features li {
    margin-bottom: 10px;
    color: #555;
}
