
body {
    margin: 0; /* Remove default margin */
    overflow-x: hidden; /* Ensure no horizontal overflow */

}

h2{
    color:white;
}

@import url('https://fonts.googleapis.com/css2?family=Tw+Cen+MT&display=swap');

/* Navbar Styling */
.custom-navbar {
    background: white; /* Seablue */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    font-family: 'TW Cen MT', sans-serif;
}

.navbar-logo {
    background: white; /* White background for visibility */
    padding: 5px 10px;
    border-radius: 5px;
}

.navbar-logo img {
    height: 45px;
}

.navbar-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}

.navbar-links a {
    text-decoration: none;
    color: #777777;
    font-weight: 500;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    padding: 10px 15px;
}

.dropdown-toggle {
    text-decoration: none;
    color: #004080;
    font-weight: 500;
    font-size: 21px;
    transition: 0.3s ease-in-out;
    padding: 10px 15px;

}

.navbar-links a:hover, 
.dropdown-toggle:hover, 
.navbar-links a.active {
    color: #c7a008; /* Gold */
}

/* Fix White Space on Right */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Dropdown Styling */
.dropdown-menu {
    border: none;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    position: absolute;
}

.dropdown:hover .dropdown-menu {
    display: block; /* Enable hover effect */
}

.dropdown-menu a {
    color: #004080;
    padding: 10px;
    display: block;
    white-space: nowrap;
    background: #f5f5f5; /* Ensure background is visible */
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #006994;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95); /* Transparent White */
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1100; /* Ensures navbar is above hero section */
    font-family: 'TW Cen MT', sans-serif;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .close-btn {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu a {
    text-decoration: none;
    color: #004080;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    transition: 0.3s ease-in-out;
    background: #f5f5f5; /* Ensure background is visible */
}

.mobile-menu a:hover {
    color: #006994;
}

/* Mobile Dropdowns */
.mobile-dropdown {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown a {
    font-size: 16px;
    padding: 8px 0;
    display: flex;
    background: #eaeaea; /* Background for better visibility */
    
}

.mobile-menu .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    transition: 0.3s;
}

.rotate {
    transform: rotate(180deg);
}

/* Mobile Icon */
/* Mobile Menu Icon */
.mobile-menu-icon {
    font-size: 30px;
    cursor: pointer;
    display: none;
    color: black !important; /* Force black color */
    z-index: 1101; /* Make sure it's above other elements */
    position: relative; /* Ensure it is positioned correctly */
}



@media (max-width: 991px) {
    .navbar-links {
        display: none;
    }
.mobile-menu-icon {
        display: block;
    }
    .custom-navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .mobile-menu-icon {
        order: 2; /* Ensures hamburger menu is on the right */
    }

    .navbar-logo {
        order: 1; /* Ensures logo is on the left */
    }
}



/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('MILL/mill-75.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Overlay to enhance text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

/* Content Styling */
.hero-content {
    position: relative;
    max-width: 700px;
    padding: 20px;
}

/* Title */
.hero-title {
    margin-top: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fadeIn 1.2s ease-in-out;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* CTA Button */
.hero-btn {
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    animation: fadeIn 1.8s ease-in-out;
}

.hero-btn:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* about */
.about-service {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Section Headers */
.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #003366;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* Text & Lists */
.about-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #004080;
    margin-top: 20px;
}

.service-list, .benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.service-list li, .benefits-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

/* Image Styling */
.about-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    .service-list li, .benefits-list li {
        font-size: 1rem;
    }
}




/*  clients */
.mill-liners-clients {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Section Headers */
.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #003366;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* Client Logo Grid */
.client-logo {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Fixed Logo Size for Uniformity */
.client-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain; /* Ensures logos fit well without distortion */
    margin-bottom: 10px;
}

.client-logo p {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
}

/* Hover Effect */
.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .client-logo img {
        width: 120px;
        height: 120px;
    }

    .client-logo p {
        font-size: 0.9rem;
    }
}



/* Section Styling */
.gallery-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #003366;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* Gallery Grid */
.gallery-item {
    margin: 10px 0;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Image Size & Hover Effect */
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Modal Styling */
.modal-content {
    background-color: transparent;
    border: none;
    text-align: center;
}

.modal-body {
    position: relative;
    text-align: center;
}

#modalImage {
    max-width: 90%;
    max-height: 85vh;
    display: block;
    margin: auto;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 1001;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.7);
    color: black;
}

/* Ensure Modal is Fully Responsive */
@media (max-width: 768px) {
    #modalImage {
        max-width: 95%;
        max-height: 85vh;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 1.8rem;
    }
}




/* Section Styling */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #003366;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* Feature Cards */
.why-choose-card {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #ff9800;
}

/* Icons */
.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #ff9800;
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
}

/* Feature Titles */
.why-choose-card h3 {
    font-size: 1.4rem;
    color: #003366;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Feature Description */
.why-choose-card p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .why-choose-card h3 {
        font-size: 1.2rem;
    }

    .why-choose-card p {
        font-size: 0.95rem;
    }
}










/* footer */
.footer-section {
    background-color: #003366; /* Dark Blue Background */
    color: #ffffff; /* White Text */
    padding: 40px 0;
}

.footer-section .container {
    max-width: 1100px;
}

.footer-section h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff; /* White Text */
}

.footer-section p,
.footer-section ul {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc; /* Light Gray Text */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    
}

.footer-section ul li a:hover {
    color: #ffffff; /* White Text on Hover */
}

.footer-contact p i,
.footer-social .social-icons a {
    margin-right: 10px;
}

.footer-social .social-icons {
    display: flex;
}

.footer-social .social-icons a {
    color: #ffffff; /* White Text */
    font-size: 1.2rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #cccccc; /* Light Gray Text on Hover */
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #cccccc;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #cccccc; /* Light Gray Text */
}

