/* General Reset for HTML and Body */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #c9c5ca; /* Deep navy */
    color: #17419b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem; /* Increased padding for a larger navbar */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border: none;
}

/* Logo Styling */
.navbar .logo {
    font-size: 3.6rem; /* Increased font size for the logo */
    font-weight: 700;
    display: flex;
    align-items: center;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
    position: absolute;
    left: 3rem; /* Adjusted for a larger navbar */
    top: 50%;
    transform: translateY(-50%);
}

.navbar .logo img {
    width: 120px; /* Increased logo size */
    margin-right: 1.2rem;
}

/* Navbar Items */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 3rem; /* Increased gap between items */
    margin-left: auto;
}

/* Navbar Links */
.navbar ul li a {
    text-decoration: none;
    color: #17419b;
    font-size: 2rem; /* Increased font size for links */
    font-weight: 700; /* Bolder links for better visibility */
    padding: 0.8rem 1.5rem; /* Increased padding for links */
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

  
/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .navbar .logo {
        position: static; /* Logo will stack naturally in mobile view */
        transform: translateY(0);
    }

    .navbar ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
}/* Mobile Navbar Styling */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 2rem 3rem; /* Adjusted padding for smaller screens */
        flex-direction: row; /* Keep navbar items in one row */
    }

    .navbar .logo {
        font-size: 3rem; /* Slightly smaller logo for mobile */
        left: 1rem; /* Position logo closer to the edge */
    }

    .menu-toggle {
        display: flex; /* Show menu toggle on mobile */
        flex-direction: column;
        gap: 5px;
        position: absolute;
        top: 50%;
        right: 1.5rem; /* Position toggle button to the right corner */
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 1100;
    }

    .menu-toggle .bar {
        width: 30px;
        height: 4px;
        background-color: white;
        border-radius: 2px;
    }

    .navbar ul {
        position: fixed;
        top: 90px;
        right: 0;
        background-color: #1a202c;
        width: 250px; /* Sidebar width for mobile */
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2rem 1.5rem;
        display: none;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    }

    .navbar.active ul {
        display: flex; /* Show the menu when active */
    }

    .navbar ul li a {
        font-size: 1.8rem; /* Adjust link size for mobile */
        padding: 0.6rem 1rem; /* Reduce padding for links */
        width: 100%; /* Make links span the width */
    }
}

  
/* Hero Section Styling */
/* Hero Section Styling */
/* Hero Section Styling */
/* Hero Section Styling */
.hero {
    background-image: url('WhatsApp\ Image\ 2024-12-31\ at\ 16.43.00_bb711247.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    padding: 0 6rem;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0; /* Remove margin below the heading */
    letter-spacing: 2px;
    z-index: 2;
}

.hero p {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    z-index: 2;
}

.hero .underline {
    width: 120px;
    height: 5px;
    background-color: #f39c12; /* Adjust color if needed */
    margin-top: 2rem; /* Space between the heading and underline */
    z-index: 3;
    opacity: 0.8;
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Hero section hover effect for underline */
.hero:hover .underline {
    width: 150px;
    opacity: 1;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero {
        padding: 0 3rem;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero p {
        font-size: 2rem;
    }
}



.container {
    padding: 20px;
}
.service-section {
    margin-bottom: 40px;
}
.service-section h2 {
    font-size: 2em;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}
.service-section ul {
    list-style: none;
    padding: 0;
}
.service-section ul li {
    margin: 10px 0;
    font-size: 1.2em;
}
footer {
    background-color: #014421;
    padding: 20px;
    text-align: center;
}
footer p {
    margin: 0;
    font-size: 1em;
}
.contact-info {
    margin-top: 20px;
    text-align: center;
}
.contact-info p {
    margin: 5px 0;
}
.image-placeholder {
    width: 100%;
    height: auto;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    /* Center-align section headings and make them dark */
.service-section h2 {
  text-align: center;
  color: #333; /* Darker text color */
}

.service-section ul {
  text-align: center;
  color: #333; /* Darker text color */
}

.contact-info h3 {
  text-align: center;
  color: #333; /* Darker text color */
}

.contact-info p {
  text-align: center;
  color: #333; /* Darker text color */
}

/* Center the images */
.image-placeholder {
  text-align: center;
  margin-bottom: 1rem;
}

.image-placeholder img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

}
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    font-size: 1rem;
    line-height: 1.5;
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 2px solid #f1f1f1;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.card-left {
    width: 50%;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.card-right {
    width: 50%;
    padding: 30px;
    background-color: #fafafa;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.service-list {
    list-style: none;
    padding: 0;
    font-size: 1.3rem;
    color: #555;
}

.service-list li {
    margin: 15px 0;
    font-weight: 500;
    line-height: 1.6;
}

.service-list li::before {
    content: "•";
    color: #2f8e89;
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        align-items: center;
    }

    .card-left, .card-right {
        width: 100%;
    }

    .service-image {
        height: 300px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}
