/* Water Background Setup */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f0f0f0;
    font-family: Arial, Helvetica, sans-serif;
}

.water-background {
    background: url("../images/demo/bg.jpg") no-repeat center center fixed;
    background-size: cover;
    padding: 20px 0;
}

.main-wrapper {
    background-color: white;
    max-width: 1000px;
    padding: 0;
}

/* Header & Typography */
.service-text {
    color: #0056b3;
}

.phone-box {
    font-size: 1.25rem;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

/* Custom Navigation */
.nav-custom {
    background-color: #0d47a1; /* Deep Blue */
    border-top: 3px solid #002171;
}


.nav-link:hover {
    background-color: #1565c0;
}

.home-icon {
    background: #002171;
    padding: 8px 15px;
}

/* Hero Section */
.hero-section {
    height: 350px;
    background: url('../images/demo/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.9;
    color: white;
}

.hero-overlay {
    background:  linear-gradient(
  to right,
  rgba(0, 0, 0, 0.75),
  rgba(0, 0, 0, 0.35),
  rgba(0, 0, 0, 0)
);
    height: 100%;
}

@media (max-width: 600px) {
    .hero-section {
          height: 350px;
   background: 
linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
url('../images/demo/bg.jpg') no-repeat center center;
background-size: cover;
    background-size: cover;
    opacity: 0.9;
    color: black;
    }
    .hero-overlay {
        background: none;
    }
}
.section-title {
    font-family: 'Brush Script MT', cursive; /* To mimic the handwritten font in the image */
    color: #333;
}

/* Service Cards */
.service-card {
    background-color: #f8f9fa;
    min-height: 180px;
}

.icon-circle {
    background-color: #6c757d;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.btn-red {
    background-color: #d32f2f;
    color: white;
    border: none;
    font-weight: bold;
    padding: 5px 15px;
}

.btn-red:hover {
    background-color: #b71c1c;
    color: white;
}

/* Sidebar Info */
.info-sidebar {
    background-color: #eeeeee;
}

.bg-orange {
    background-color: #ef6c00;
}

/* Footer Styling */
.footer-links p {
    margin-bottom: 5px;
}

.main-footer {
    border-bottom: 1px solid #dee2e6;
}

.copyright-bar {
    letter-spacing: 1px;
}

/* Matching the "Rounded Box" feel from image */
.main-wrapper {
    margin-bottom: 50px;
}

/* Responsive Logo */
@media (max-width: 767px) {
    .logo-area img {
        height: 100px;
        width: 100px;
    }



}
