/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Georgia', serif;
}



/* Header */
/* Header */
header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    top: 0;
    transition: all 0.3s ease;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

/* Logo */
.logo {
    flex: 0 0 auto; /* Prevent resizing */
}

.logo img {
    width: 190px;
    height: auto;
    margin-left: 50px;
    transform: translate(20px, 10px);
    transition: width 0.3s ease, transform 0.3s ease;
}

header.scrolled .logo img {
    width: 125px;
    margin-left: 50px;
    transform: translate(10px, 5px);
}

/* CTA Button */
.cta {
    background-color: #002366;
    color: #fff;
    padding: 20px 50px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 0px;
    margin-right: 20px;
}

.cta:hover {
    background-color: #0056b3;
}

/* Prevent Text Shifting */
body, header {
    margin: 0;
    padding: 0;
}

/* Menu Styles */
.menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-left: 40px;
}

.menu > li {
    position: relative;
    padding: 10px 20px;
}

/* Menu Links */
.menu a {
    text-decoration: none;
    color: #000; /* Black text */
    font-size: 1em;
    padding: 15px 15px;
    display: block;
    position: relative;
    transition: color 0.3s ease, border-bottom 0.3s ease; /* Smooth transition for color and border */
}

/* Hover effect for menu items */
.menu a:hover {
    color: #87CEFA; /* Change text color to blue on hover */
    border-bottom: 2px solid #87CEFA; /* Add a blue underline on hover */
}

/* Add a downward arrow next to the Services link */
.menu .dropdown > a::after {
    content: ' ▼';  /* Unicode character for the downward arrow */
    font-size: 12px;
    margin-left: 5px; /* Space between text and the arrow */
    transition: transform 0.3s ease; /* Smooth transition when hovered */
}

/* Change arrow direction on hover */
.menu > li:hover > a::after {
    transform: rotate(180deg); /* Flip the arrow when hovering over the menu */
}

/* Dropdown Menu */
.menu .dropdown-menu {
    display: none; /* Hidden initially */
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 200px;  /* Set a fixed width */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; /* Added smooth transform */
}

/* Show dropdown on hover */
.menu > li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);  /* Smooth downward motion */
}

/* Styling for dropdown items */
.menu .dropdown-menu li a {
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    color: #333; /* Dark text color */
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for dropdown items */
.menu .dropdown-menu li a:hover {
    background-color: #002366;
    color: #fff;
}

/* Remove background box for main links */
.menu a:hover {
    background-color: transparent; /* Remove background box on hover */
}

/* Additional Mobile Responsiveness */
/* Hamburger Menu (Mobile) */
/* Hamburger Menu (Mobile) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin-left: 10px; /* Adjust spacing from the left */
    width: 40px;
    height: 40px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.hamburger-menu:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.hamburger-menu span {
    background: #000;
    height: 3px;
    margin: 5px 0;
    width: 25px;
    border-radius: 2px; /* Rounded edges for a cleaner look */
    transition: background 0.3s ease;
}

.hamburger-menu:hover span {
    background: #87CEFA; /* Change color on hover */
}

/* Contact Icon */
.contact-icon {
    display: none;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    margin-right: 10px; /* Adjust spacing from the right */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.contact-icon img {
    max-width: 40px;
    height: auto;
}

/* Logo */
.logo {
    flex: 1;
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    max-width: 150px; /* Adjust the maximum size of the logo */
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #002356;
}

/* Mobile Navigation List */
.mobile-nav ul {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 1rem;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between text and dropdown icon */
    padding: 10px;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.mobile-nav ul li a:hover {
    background: #002356;
    color: #fff;
    border-radius: 5px;
}

/* Dropdown Menu */
/* Mobile Navigation Dropdown */
.mobile-nav ul li .dropdown-menu {
    display: none; /* Hide by default */
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: #f9f9f9;
    border-left: 2px solid #87CEFA;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 0; /* Collapsed */
    opacity: 0; /* Fully transparent */
}

.mobile-nav ul li .dropdown-menu.open {
    display: block; /* Show dropdown */
    max-height: 500px; /* Expand */
    opacity: 1; /* Fully visible */
}

.mobile-nav ul li .dropdown-toggle {
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: #000;
    transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav ul li .dropdown-toggle:hover {
    background: #002356;
    color: #fff;
}

.mobile-nav ul li .dropdown-toggle .dropdown-icon {
    font-size: 1rem;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mobile-nav ul li .dropdown-toggle.open .dropdown-icon {
    transform: rotate(90deg); /* Rotate icon */
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar,
    .cta {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .contact-icon {
        display: flex;
    }

    .logo {
        flex: 1;
        max-width: 150px; /* Adjust logo size */
        margin-right: 70px; /* Center the logo */
    }

    .container {
        display: flex;
        justify-content: space-between; /* Ensure even spacing */
        align-items: center;
        padding: 0 15px; /* Add padding to prevent items from going off-screen */
    }
}
/* Hero Section */
.hero {
  position: relative; /* Allows for child elements to be positioned absolutely */
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.hero-image {
  margin-top: 100px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: ''; /* Creates the overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay, adjust opacity as needed */
  z-index: 1; /* Ensures overlay is above the image, but below the text */
}

.hero-text {
  position: absolute; /* Allows text to overlay the image */
  top: 60%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjusts to center perfectly */
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Makes text stand out on the image */
  z-index: 2; /* Ensures text is above the overlay */
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3em;
  margin: 0;
}

/* About Section */
/* About Section */
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px;
    gap: 40px;
    max-width: 1200px;
    margin-top: 95px;
    margin-left:130px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f9f9f9, #f1f1f1); /* Adds a subtle gradient for modern appeal */
    border-radius: 16px;
    overflow: hidden;
}

.about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    background: #002356;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Enhanced shadow for a more modern look */
}

.about-text {
    flex: 1;
    padding-right: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase; /* Adds emphasis */
}

.about-text p {
    margin-bottom: 20px;
    color: #fff; /* Slightly muted text for a polished look */
}

.cta-btn {
    display: inline-block;
    background-color: #87CEFA;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.cta-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
}

/* Image Section */
/* Image Section */


/* Perfectly Balanced Collage Layout for 11 Images */
/* Grid for Tight Fit on Right Half */
/* Grid for Tight Fit on Right Half */
/* Image Section */
.about-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for the grid */
    grid-template-rows: repeat(3, 1fr); /* 3 rows for the grid */
    gap: 10px; /* Gap between images */
    width: 100%;
}

/* Image Styling */
.about-img {
    width: 100%; /* Make images responsive */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Image Arrangement for 2x3 Grid */
.image-grid img:nth-child(1) {
    grid-column: 1 / span 1; /* Tall image in the top-left */
    grid-row: 1 / span 2; /* Span two rows */
}

.image-grid img:nth-child(2) {
    grid-column: 2 / span 22; /* Wide image on the top-right */
    grid-row: 1 / span 1; /* Regular size */
}

.image-grid img:nth-child(3) {
    grid-column: 2 / span 22; /* Tall image */
    grid-row: 2 / span 2; /* Spanning two rows */
}

.image-grid img:nth-child(4) {
    grid-column: 1 / span 1; /* Wide image on the bottom-left */
    grid-row: 2 / span 1; /* Regular size */
}

.image-grid img:nth-child(5) {
    grid-column: 1 / span 1; /* Wide image in the bottom-left */
    grid-row: 3 / span 1; /* Regular size */
}

.image-grid img:nth-child(6) {
    grid-column: 2 / span 22; /* Wide image on the bottom-right */
    grid-row: 3 / span 1; /* Regular size */
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        margin-top: 50px;
        flex-direction: column; /* Stack elements vertically */
        padding: 0px; /* Adjust padding for mobile */
        margin-left: 10px; /* Centering on smaller screens */
        margin-right: 10px; /* Centering on smaller screens */
        background-color: white; /* Set background color to white */
        box-sizing: border-box; /* Include padding in the element's total width and height */
    }

    .about-content {
        flex-direction: column; /* Stack text and images vertically */
        padding: 15px; /* Adjust padding for mobile */
        background-color: #002356; /* Keep content background color */
        border-radius: 12px; /* Add border radius for a smooth look */
        /* Enhanced shadow for modern look */
    }

    .about-text {
        padding: 0 10px 20px 10px; /* Add horizontal padding and bottom padding for separation */
        font-size: 1rem; /* Adjust font size for mobile */
        color: #fff; /* Keep text color white */
        text-align: center; /* Center align the text */
    }

    .about-text h2 {
        margin-bottom: 20px;
        font-size: 2rem;
        font-weight: bold;
        color: #fff;
        text-transform: uppercase; /* Adds emphasis */
        text-align: center; /* Center align the title */
    }

    .about-images {
        padding: 10px; /* Add padding around images */
    }

    .image-grid {
        grid-template-columns: 1fr; /* Single column for smaller screens */
        grid-template-rows: repeat(6, auto); /* Adjust rows for each image */
        gap: 10px;
    }

    .image-grid img {
        width: 100%;
        height: auto;
    }

    .image-grid img:nth-child(1),
    .image-grid img:nth-child(3) {
        grid-row: span 2; /* Tall images on mobile */
    }
}





/* Quality Icons */
.quality-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 60px;
}

.quality-icons a {
    display: inline-block;
    width: 150px;
    height: 150px;
}

.quality-icons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.quality-icons img:hover {
    transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 768px) {
    .quality-icons {
        flex-wrap: wrap; /* Allow icons to wrap to the next line */
        justify-content: center; /* Center the icons */
        gap: 15px; /* Add gap between icons */
        margin-bottom: 30px; /* Reduce bottom margin for mobile */
    }

    .quality-icons a {
        width: 80px; /* Make icons smaller */
        height: 80px; /* Make icons smaller */
    }

    .quality-icons img {
        border-radius: 6px; /* Slightly smaller border radius for smaller icons */
    }
}

/* Horizontal Line Separator */
.separator {
    width: 100%;
    height: 2px;
    background-color: #ddd; /* Light gray line */
    margin: 20px 0; /* Space above and below the line */
}

/* Optional: Add a shadow for modern styling */
.separator {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


/* Contact Section */
/* Footer Top Section */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start; /* Align items at the top */
    text-align: left;
}

.footer-logo {
    flex: 1;
    max-width: 100%; /* Allocate more space to the logo */
    text-align: center;

}

.footer-logo img {
    width: 250px; /* Increase the logo size */
}

.footer-center {
    flex: 2;
    max-width: 40%; /* Adjust width for Contact Us and Follow Us stack */
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center;
    gap: 20px; /* Space between sections */
}

.footer-contact, .footer-socials {
    text-align: center;
    width: 100%; /* Full width for proper stacking */
}

.footer-contact h3, .footer-socials h3, .footer-quick-links h3 {
    font-family:'Montserrat', sans-serif;
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #balck;
}

.footer-contact p, .footer-contact a, .footer-socials a {
    font-size: 1em;
    color: #333;
    text-decoration: none;
}

.footer-contact a:hover, .footer-socials a:hover {
    text-decoration: underline;
}

.footer-socials img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.footer-socials img:hover {
    transform: scale(1.1);
}

.footer-quick-links {
    flex: 1;
    max-width: 30%;
    text-align: left;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
}

.footer-quick-links li {
    margin: 5px 0;
}

.footer-quick-links a {
    color: #00008B;
    text-decoration: none;
}

.footer-quick-links a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    padding: 20px;
    background-color: #002366;
    color: white;
    text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack elements vertically */
        align-items: flex-start; /* Align items to the left */
        text-align: left; /* Align text to the left */
        padding: 20px; /* Adjust padding for mobile */
    }

    .footer-logo {
        margin-bottom: px; /* Add margin for separation */
        text-align: center; /* Center align the logo */
        width: 100%; /* Ensure full width for centering */
    }

    .footer-logo img {
        width: 250px; /* Adjust logo size for mobile */
    }

    .footer-center {
        max-width: 100%; /* Full width for stacking */
        margin-bottom: px; /* Add margin for separation */
        align-items: flex-start; /* Align items to the left */
        text-align: left; /* Align text to the left */
    }

    .footer-contact, .footer-socials {
        text-align: left; /* Align text to the left */
        width: 100%; /* Full width for proper stacking */
    }

    .footer-quick-links {
        max-width: 100%; /* Full width for stacking */
        margin-bottom: 20px; /* Add margin for separation */
        text-align: left; /* Align text to the left */
    }

    .footer-quick-links ul {
        padding: 0;
    }

    .footer-socials img {
        width: 30px; /* Adjust icon size for mobile */
        height: 30px;
    }
}