/* 🎨 Updated Blue Theme Colors */
:root {
    --primary-color: #003D61;   /* Dark Blue */
    --secondary-color: #46afcf; /* Medium Blue */
    --text-color: #7E8F9A;      /* Soft Blue-Gray */
    --background-light: #FFFFFF; /* Changed to White */
    --highlight-color: #46afcf;  /* Bright Blue */
    --button-hover: #003D61;     /* Deep Blue for Hover */
}
/* Ensure .collapse is visible when toggled */
.collapse.show {
    display: block !important;
    visibility: visible !important;
    height: auto !important; /* Prevent collapsing due to custom rules */
    overflow: visible !important;
}

/* Fix potential z-index conflicts */
.navbar-collapse {
    z-index: 1050; /* Ensure dropdown appears above content */
}

/* Adjust navbar padding if necessary */
.navbar {
    padding: 10px 15px; /* Ensure proper alignment for toggler and menu */
    margin-bottom: 0;
}


/*-- Industry Experience & Achievements */
/* <section class="container my-5 text-center">
    <h2 class="section-title mb-4">Our Experience & Achievements</h2>
    <div class="row">
        <div class="col-md-4">
            <div class="stat-box">
                <h3 class="counter">25+</h3>
                <p>Years in Business</p>
            </div>
        </div>
        <div class="col-md-4">
            <div class="stat-box">
                <h3 class="counter">100+</h3>
                <p>Satisfied Clients Worldwide</p>
            </div>
        </div>
        <div class="col-md-4">
            <div class="stat-box">
                <h3 class="counter">55+</h3>
                <p>Countries Served</p>
            </div>
        </div>
    </div>
</section> */

.footer {
    background-color: #003d61 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    padding: 20px 0 !important;
}
/* * {
    outline: 1px solid red; /* temporary : ONLY FOR FIXING STRUCTURE !!!----------------------!!!!
} */


.section-title {
    font-size: 2rem;
    font-weight : bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-box {
    padding: 25px;
    border-radius: 8px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    margin: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.stat-box:hover {
    transform: scale(1.05);
}
.counter {
    font-size: 3rem;
    font-weight: bold;
}


/* General Styling */
.mission-section {
    background: #f8f9fa;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Boxes */
.mission-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-text:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.12);
}

/* Icons Styling */
.mission-text i {
    font-size: 50px;
    margin-bottom: 15px;
}

/* Section Titles */
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

/* Divider Styling */
.divider {
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, #007bff, #ffc107);
    margin: auto;
}

/* Typography */
.mission-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Strong Text */
.mission-text p strong {
    color: #007bff;
    font-weight: 600;
}

/* 🌍 Apply Global Colors */
body {
    color: #050505; /* Pure Black */
    background-color: var(--background-light);
    margin: 0;
    padding: 0;
}

/* 🏆 Navbar Styling */
.navbar {
    background-color: var(--primary-color);
    /* padding: 15px 0; */
    margin-bottom: 0;
}
.navbar .nav-link {
    color: white !important;
}
.navbar .nav-link:hover {
    color: var(--highlight-color) !important;
}
/* 🏆 Home Page Hero Section */
.hero-section {
    position: relative;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #003D61;
}



.btn-primary:hover {
    background-color: var(--button-hover);
    border-color: var(--button-hover);
}

/* 🏠 Section Backgrounds */
.bg-light {
    background-color: var(--background-light) !important;
}

/* 📌 Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
}

/* 🎯 Featured Machinery Section */
.featured-products {
    background: #f9f9f9;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🏆 Product Card Styling */
.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* 📷 Product Images */
.product-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* 🏆 Product Specifications List */
.product-specs {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 14px;
}

/* 📱 Responsive Fix */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }
}



/* 🔍 Hero Section Search Bar */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.2); /* Glass effect */
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🔠 Search Input */
.search-input {
    flex: 1;
    border: none;
    padding: 12px;
    border-radius: 50px 0 0 50px;
    outline: none;
    font-size: 1rem;
    width: 100%;
    background: transparent;
    color: white;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* 🔘 Search Button */
.search-button {
    background: var(--highlight-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s ease-in-out;
}

/* 🖱️ Hover Effect */
.search-button:hover {
    background: var(--button-hover);
}

/* Dropdown suggestions (scoped inside your .search-container) */

.search-container .search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 250px;
    overflow-y: auto;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
  }
  .search-container .search-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    cursor: pointer;
    transition: background 0.2s;
}
.search-container .search-suggestions .suggestion-item:hover {
    background: #f5f5f5;
}
  
.search-container .search-suggestions .suggestion-item img {
    width: 40px; height: 40px;
    object-fit: cover;
    margin-right: 10px;
    flex-shrink: 0;
}
  
.search-container .search-suggestions .suggestion-item span {
    font-size: 14px;
    color: #333;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .search-container {
        width: 90%;
    }
}

/* 🔧 Optimize Textile Operations Section */
.optimize-textile {
    background: #f9f9f9; /* Light Gray Background */
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.about-text {
    background: #f9f9f9; /* Light Gray Background */
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* Adds spacing between text and image */
}

.about-text-content {
    padding: 0 10px;
    text-align: center;
}

.about-image {
    margin-top: 10px;
    max-width: 100%; /* Adjust width of the image */
    height: auto;
    border-radius: 10px;
}

/* .mission-text {
    /* background: #46afcf; Light Gray Background
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    text-align: center;
} */

/* 🎯 Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 50px; /* Ensures uniform size */
    text-align: center;
}

/* 📌 Feature Text */
.feature-text h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 1rem;
    color: #333;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .optimize-textile .row {
        text-align: center;
    }
    
    .feature-icon {
        display: block;
        margin: 0 auto 10px;
    }
}

/* 🎯 Why Choose C369SL Section */
.why-choose-us {
    background: #f9f9f9;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 📌 Why Box */
.why-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* 🔧 Hover Effect */
.why-box:hover {
    transform: translateY(-5px);
}

/* 🌍 Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* 🏆 Why Box Title */
.why-box h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* 📜 Why Box Text */
.why-box p {
    font-size: 1rem;
    color: #050505;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .why-box {
        margin-bottom: 20px;
    }
}

/* 🎯 Managing Director Section */
.md-message {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 🏅 MD's Photo */
.md-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* ✏️ MD's Quote */
.md-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
}

/* 🔥 MD's Name */
.md-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* 🏆 MD's Title */
.md-title {
    font-size: 1rem;
    color: #777;
}

/* 📞 Contact Section */
.contact-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* 📌 Contact Details Box */
.contact-details {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 📱 Contact Details Icons */
.contact-details i {
    color: white;
    margin-right: 10px;
}

/* 📧 Contact Links */
.contact-details a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* 📱 Responsive Fix */
@media (max-width: 768px) {
    .contact-form, .contact-details {
        margin-bottom: 20px;
    }
}
/* 🗺️ Google Maps Section */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* 📌 Contact Page Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 50vh; /* Adjust height if needed */
    background: url('../images/contact-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}


/* 📝 Hero Text Styling */
.contact-hero .hero-overlay {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.contact-hero p {
    font-size: 1.3rem;
}

/*w368sl provides pre*/
.company-image {
    width: 100%;
    max-width: 500px; /* Adjust as needed */
    height: auto;
    border-radius: 5px; /* Optional: Adds rounded corners */
}

#heroCarousel {
    max-width: 100%;
    height: 500px; /* Adjust height as needed */
    overflow: hidden;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 500px; /* Same as container */
    object-fit: cover; /* Ensures images fill the space properly */
}

/* 🎨 Inventory Page Hero Section */
.inventory-hero {
    background: url('../images/inventory-bg.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* 🖱️ Hover Effect for Product Cards */
.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* 📌 Hover Animation */
.product-card:hover {
    transform: translateY(-5px); /* Moves the card up slightly */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Adds a stronger shadow */
}

/* 🔍 Hover Effect for Images */
.product-card img {
    transition: transform 0.3s ease-in-out;
}

.product-card:hover img {
    transform: scale(1.05); /* Slight zoom effect on image */
}


.product-card:hover {
    transform: translateY(-5px);
}

/* 🖼️ Product Images */
.product-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* 🏆 Product Titles */
.product-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* 📱 Responsive Fix */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }
}

/* 🔍 Search & Filters */
#searchInput, .form-select {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
}

/* 🛒 Product List Spacing */
.product-item {
    margin-bottom: 20px;
}

/* 🔄 Reset Button (Ensures Consistent Height) */
#resetFilters {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    background-color: #003D61; 
    color: white;
    border: none;
    transition: background 0.3s;
}

#resetFilters:hover {
    background-color: #46afcf; /* capcov blue */
}

/* 🟢 WhatsApp Button in Footer (Light Blue & Transparent) */
.whatsapp-footer-button {
    display: inline-block;
    background-color: rgba(163, 207, 232, 0.8); /* Sky Blue with Transparency */
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* 🖌️ WhatsApp Icon Spacing */
.whatsapp-footer-button i {
    margin-right: 8px; /* Adds space between icon and text */
}


/* 🏆 About Page Hero Section */
.about-hero {
    position: relative;
    background: url('../images/about-hero.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(250, 250, 250);
}


.thumbnail {
    width: 80px; /* Adjust size */
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
}

.modal-body img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
}
/* /home page featured machinery section/ */
.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #474747;
    margin-bottom: 20px;
}

.product-title {
    color: #004B87 !important; /* Change to any color */
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* 📌 Full-Width Footer */
#site-footer {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px 0;
}

/* 📍 Contact Information - Left Aligned */
.footer-contact {
    text-align: left;
    flex: 1;
}

/* 🟢 WhatsApp Button - Right Aligned */
.footer-whatsapp {
    text-align: right;
    flex: 1;
}

/* 📱 Responsive Footer (Stack on Small Screens) */
@media (max-width: 768px) {
    .container.d-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact, .footer-whatsapp {
        text-align: center;
        margin-bottom: 15px;
    }
}

/* 🟢 WhatsApp Button Styling */
.whatsapp-footer-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.whatsapp-footer-button:hover {
    background-color: #1ebe57;
}


/* Ensure the entire page fills the screen */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Make the wrapper fill the screen */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Push the footer to the bottom */
.content {
    flex: 1;
}

/* Ensure the footer takes full width without white spaces */
/* .footer {
    width: 100%;
    padding: 20px 0;
    background-color: #003d61; /* Your theme color 

}
/* Footer Layout 
.footer {
    font-size: 15px;
    padding: 20px 0;
} */

/* Footer Logo */
.footer-logo {
    width: 150px; /* Adjust size as needed */
    margin-bottom: 10px;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #46afcf;
    text-decoration: none;
    font-weight: 500;
}

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

/* Social Media Icons */
.footer-social {
    margin-top: 10px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #46afcf;
}

/* WhatsApp Icon */
.footer-whatsapp-icon {
    font-size: 22px;
    color: #25D366;
    transition: 0.3s;
}

.footer-whatsapp-icon:hover {
    color: #1ebe57;
}

/* Newsletter Box */
.newsletter-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    max-width: 320px;
    display: inline-block;
}

/* Newsletter Heading */
.newsletter-box h5 {
    margin-bottom: 5px;
    color: #46afcf;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    justify-content: center;
}

.newsletter-form input {
    padding: 8px;
    border: 1px solid #46afcf;
    border-radius: 5px;
    width: 200px;
    background-color: transparent;
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Subscribe Button */
.newsletter-form button {
    background-color: #46afcf;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background-color: #ffffff;
    color: #003d61;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .newsletter-box {
        max-width: 100%;
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}
/* Contact Icons */
.contact-icon {
    color: #46afcf; /* Theme color for icons */
    margin-right: 8px;
    font-size: 16px;
}

/* Fix the link color issue */
.footer-link {
    color: white !important; /* Force white text */
    text-decoration: none;  /* Remove default underline */
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover effect to match theme */
.footer-link:hover {
    color: #46afcf !important; /* Theme color on hover */
    text-decoration: underline;
}

.contact-hero .section-title,
.contact-details .section-title {
    color: black !important;
}

.contact-details .section-title {
    color: white !important; /* Change 'red' to any color you prefer */
}

/* Change Managing Director heading color */
.md-message .section-title {
    color: #003D61 !important; /* Change 'blue' to your preferred color */
}

/*contact information icon color*/
/* Default icon color (matches your theme) */
.contact-details .contact-icon {
    color: #46afcf; /* Secondary theme color */
}
.supply-list li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.supply-list i {
    color: #003d61; /* Primary Theme Color */
    font-size: 22px;
    margin-right: 10px;
    transition: color 0.3s ease-in-out;
}

.supply-list li:hover i {
    color: #46afcf; /* Secondary Theme Color */
}
/* 🔧 Improved Styling for C369SL Introduction Section */
.company-intro {
    background: #f9f9f9; /* Light Gray Background */
    padding: 60px 30px; /* Add spacing inside */
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.contact-cta h3 {
    font-weight: bold;
    font-size: 2.2rem;
    background: linear-gradient(to right, #003d61, #46afcf);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) { /* For mobile screens */
    .navbar-brand img {
        padding-top: 5px; /* Reduce top padding for mobile */
        height: auto; /* Ensure the logo adjusts properly */
    }
}

/* Restore Navbar */
.navbar {
    background-color: var(--primary-color) !important; /* Ensures correct navbar color */
    height: 99px; /* Prevents full-page color issue */
}

/* Restore Logo */
.navbar-brand img {
    height: 65px; /* Default logo size */
    width: auto;
    max-width: 180px;
}

/* Restore Page Background */
body {
    background-color: white !important; /* Reset background */
    margin: 0;
    padding: 0;
}
/* 🔹 Properly Resize Logo */
.navbar-brand img {
    height: 80px; /* Adjust based on the new logo size */
    width: auto;
    max-width: 250px;

/* 🌊 Curved Navbar Background */
.custom-navbar {
    background-color: var(--primary-color); /* Use your main theme color */
    padding: 20px 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 50px; /* Increase height to make the curve visible */
}

/* 🖼 Fixing Logo Placement */
.logo-container {
    position: absolute;
    left: 20px; /* Adjust for positioning */
    top: 50%;
    transform: translateY(-50%);
    background: white; /* White background for the logo */
    padding: 10px;
    border-radius: 50%; /* Circular background */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Adds soft shadow */
}

/* 🖼 Logo Styling */
.logo {
    height: 60px; /* Adjust based on design */
    width: auto;
    max-width: 100px; /* Prevents stretching */
}

/* 🛠 Ensure Navbar Stays in Place */
.navbar-nav {
    margin: 0 auto; /* Center the menu items */
}

/* 📱 Mobile Adjustments */
@media (max-width: 992px) {
    .custom-navbar {
        border-radius: 0; /* Remove curve on mobile */
        /* height: auto;  */
    }

    .logo-container {
        left: 10px;
        top: 10px;
        transform: none;
    }

    .navbar-nav {
        justify-content: center;
    }
.navbar {
    padding: 10px 15px; /* Reduce padding */
    /* min-height: 60px; Reduce height */
    }
}

/* for about page only */

/* 1️⃣ Font & Typography Improvements */
body {
    font-family: 'Poppins', sans-serif; /* Clean & professional font */
    font-size: 16px; /* Slightly larger for better readability */
    line-height: 1.7; /* Increased line spacing */
    color: #333; /* Darker text for better contrast */
}

/* Headings */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003d61; /* Professional dark blue */
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #005580; /* Slightly lighter blue */
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #0077b6; /* Lighter blue tone */
}

/* Paragraphs */
p {
    font-size: 1.1rem;
    color: #444; /* Softer black */
    margin-bottom: 15px; /* More spacing */
}

/* 2️⃣ Section Layout & Spacing */
.container {
    max-width: 1500px; /* Ensures content doesn’t stretch too wide */
}

.about-section, 
section {
    padding: 80px 0; /* Consistent top-bottom spacing */
}

/* Spacing Between Sections
/* .about-section p, */
/* .mission-section p, */
/* .vision-section p { */
    margin-bottom: 20px;
} */

/* Align Icons & Text Better */
.text-center i {
    margin-bottom: 10px;
}

/* 3️ Better Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    p {
        font-size: 1rem;
    }
    .about-section {
        text-align: center; /* Center-align text for better mobile view */
    }

}
