/* ===================== General Styling ===================== */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
  padding-top: 80px; /* usually navbar height ~56px to 80px */
  text-align: justify;    /* neat alignment */
    margin-bottom: 15px;
}



/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
p, li { font-size: 1.1rem; }

/* ===================== Navbar ===================== */
.navbar {
    background-color: #007BFF; /* Blue */
}
.navbar a {
    color: white !important;
    font-weight: bold;
}
/* Paragraphs */
p {
    text-align: justify;    /* neat alignment */
    margin-bottom: 15px;    /* reduce extra spacing */
}

/* ===================== Carousel ===================== */
.carousel-inner img {
    opacity: 0.8;
    transition: opacity 0.5s;
    width: 100%;
    object-fit: cover;
}
.carousel-inner img:hover {
    opacity: 1;
}

/* ===================== Services Row ===================== */
.services-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
}
.services-row::-webkit-scrollbar {
    height: 8px;
}
.services-row::-webkit-scrollbar-thumb {
    background: #1e90ff;
    border-radius: 5px;
}
.service {
    flex: 0 0 auto;
    text-align: center;
    width: 200px;
}
.service img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
}

/* ===================== Sections (Center Text & Images) ===================== */
.offers-section, .commitment-section, .vision-section {
    text-align: center;
}
.offers-section h3, .commitment-section h3, .vision-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.offers-section p, .commitment-section p, .vision-section p, .offers-section ul {
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px auto;
    max-width: 800px;
}
.about-image, .offers-content img, .commitment-content img, .vision-content img {
    display: block;
    margin: 20px auto;
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
}

/* ===================== Contact Page ===================== */
.contact-page {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.3rem;
    line-height: 1.8;
}
.contact-page h1 { font-size: 2.5rem; color: #0056b3; margin-bottom: 20px; }
.contact-page .intro { font-size: 1.2rem; margin-bottom: 30px; color: #444; }
.contact-details { margin-bottom: 40px; }
.contact-details p { margin: 15px 0; font-size: 1.3rem; }
.contact-details i { color: #007bff; margin-right: 10px; font-size: 1.5rem; }

.contact-form {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 30px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-form h2 { margin-bottom: 20px; font-size: 1.8rem; color: #0056b3; }
.contact-form form { display: flex; flex-direction: column; }
.contact-form input, .contact-form textarea {
    margin: 10px 0;
    padding: 12px;
    font-size: 1.1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.contact-form button {
    margin-top: 15px;
    padding: 14px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    background: #007bff;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover { background: #0056b3; }

.map {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===================== Back to Top Button ===================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff2600;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
}

/* ===================== Sticky Footer ===================== */


footer img {
    vertical-align: middle;
    margin: 0 15px;
    width: 60px;
    height: auto;
}
/* Footer Styling */
.site-footer {
    background-color: #5347f5; /* Black background */
    color: #fff;
    width: 100%;
    padding: 100px 40px; /* Extra-extra-large padding */
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1400px; /* Wider container */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-text {
    font-size: 36px;   /* Bigger text */
    font-weight: bold;
    margin: 0;
}

.footer-icon img {
    width: 100px;       /* Bigger WhatsApp icon */
    height: auto;
    margin: 0 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;   /* Larger nav links */
    margin: 0 25px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #25D366; /* WhatsApp green on hover */
}
/* Carousel Image Opacity */
.carousel-img {
    opacity: 0.6; /* Semi-transparent */
    height: 600px; /* Adjust height */
    object-fit: cover; 
}

/* Carousel Caption Styling - Centered Text */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.carousel-caption h2 {
    font-size: 48px;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 24px;
}

