.hero-content img{
    width: 50vw;
     /* background: #f2f2f2; */
 }
 .hero img {
     position: relative;
     text-align: center;
     color: #1f2b49;
    
     /* background: #f2f2f2;
     padding: 50px; */
 }
 .hero h1 {
     position: relative;
     text-align: center;
     color: #1f2b49;
     /* background: #f2f2f2;
     padding: 50px; */
 }
 .hero-content p {
     padding-top: -30px;
     padding-bottom: 10vw;
     /* position: relative; */
 }
 
 
 .service-text {
     font-size: 18px;
     line-height: 1.6;
     color: #333;
     text-align: justify;
     max-width: 800px;
     margin: 20px auto;
 }
 @media screen and (max-width: 768px) {
     .hero-content img{
         width: 100vw;
     }
     .service-text {
         font-size: 16px; /* Slightly smaller font for mobile */
         line-height: 1.5; /* Adjust line spacing */
         max-width: 90%; /* Make it full width */
         padding: 0 10px; /* Add side padding for better readability */
         margin: 10px auto;
     }
 }
 /* General Styles */
 body {
     margin: 0;
     font-family: Arial, sans-serif;
     text-align: center;
 }
 
 
 
 /* Header */
 .header {
     background: white;
     padding: 10px;
     margin-top: 90px; /* Push it down below navbar */
     text-align: center;
     
 }
 
 .header img {
     max-width: 290px;
     
 }
 
 /* Default: Hide menu toggle for desktop */
 .menu-toggle {
     display: none; /* Hide in desktop */
 }
 /* nav */
 /* Navbar Styling */
 .navbar {
     width: 100%;
     background: white;
     /* padding: 10px 0; */
     box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
     position: fixed;
     top: 0;
     left: 0;
     z-index: 1000;
 }
 
 /* Navbar Links */
 .nav-links {
     display: flex;
     justify-content: flex-end;  /* Align items to the right */
     list-style: none;
     padding: 0;
     margin-right: 5%;
 }
 
 .nav-links li {
     margin: 0 20px;
 }
 
 .nav-links a {
     text-decoration: none;
     font-size: 16px;
     font-weight: bold;
     color: #1f2b49;
 }
 
 .nav-links a:hover,
 .nav-links a.active {
     color: black;
     /* border-bottom: 2px solid black; */
 }
 
 
 
 /* Style for dropdown */
 .dropdown {
     position: relative;
 }
 
 .dropdown-menu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
     list-style: none;
     padding: 10px 0;
     min-width: 150px;
     z-index: 1000;
     text-align: left;
 }
 
 .dropdown-menu li {
     padding: 8px 15px;
 }
 
 .dropdown-menu a {
     text-decoration: none;
     color: #1f2b49;
     display: block;
 }
 
 .dropdown-menu a:hover {
     background: #f0f0f0;
 }
 
 /* Show dropdown on hover */
 .dropdown:hover .dropdown-menu {
     display: block;
 }
 
 
 
 /* Mobile styles */
 @media screen and (max-width: 768px) {
     .menu-toggle {
         display: block;
         font-size: 24px;
         cursor: pointer;
         padding: 10px;
         color: black;
         position: absolute;
         top: 10px;
         right: 20px; /* Move ☰ to the right */
     }
 
     .nav-links {
         display: none; /* Hide nav links by default */
         flex-direction: column;
         position: absolute;
         top: 50px;
         right: 0;
         width: 200px; /* Adjust width */
         background: white;
         text-align: right;
         padding: 10px 0;
         /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); */
     }
 
     .nav-links li {
         margin: 10px 20px;
         text-align: left;
     }
 
     .nav-links.active {
         display: flex; /* Show menu when toggled */
     }
 }
 
 
 
 
 
 /* teeeeeeeeeeeeeessssstttt */
 
 .footer {
     background-color: #2c2e48;
     /* Dark background */
     color: white;
     padding: 20px 0;
 }
 
 .footer-container {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     flex-wrap: wrap;
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }
 
 /* Logo Styling */
 .footer-logo {
     flex: 1;
     min-width: 150px;
     text-align: left;
 }
 
 .footer-logo img {
     max-width: 15vw;
     /* Adjust size */
 
 }
 
 /* Contact Info Columns */
 .footer-column {
     flex: 1;
     padding: 10px;
     min-width: 200px;
 
 }
 
 .footer-column h3 {
     font-size: 18px;
     font-weight: bold;
 }
 
 .footer-column p {
     font-size: 18px;
     margin: 5px 0;
     text-align: left;
 }
 
 .footer-column a {
     color: white;
     text-decoration: none;
 }
 
 .footer-column a:hover {
     text-decoration: underline;
 }
 
 @media (max-width: 768px) {
     .footer-logo img {
         max-width: 50vw; /* Adjust size for smaller screens */
     }
 
     .footer-column h3, .footer-column p {
         font-size: 16px; /* Slightly smaller text on mobile */
     }
 }
 
 
 
 
 
 
 
 
 
 
/* Gallery Container */
/* Gallery Container */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */
    gap: 20px; /* Increase spacing */
    max-width: 1200px; /* Increase width for bigger images */
    margin: 30px auto; /* Center the gallery */
    padding: 15px;
}

/* Image Styling */
.gallery img {
    width: 100%; /* Ensure full width inside grid */
    height: 300px; /* Set uniform height */
    object-fit: cover; /* Crop images to fill the space */
    border-radius: 5px; /* Optional: Rounded corners */
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.gallery img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row on tablets */
    }
    .gallery img {
        height: 250px; /* Adjust height for medium screens */
    }
}

@media screen and (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr); /* 1 image per row on mobile */
    }
    .gallery img {
        height: 200px; /* Adjust height for mobile */
    }
}
