/*-----------------------------------------------------------------------------------
    Flowset Website - Main Stylesheet
    
    Table of Contents:
    1. General Styles & Typography
    2. Buttons & Links
    3. Header & Navigation
    4. Hero Section
    5. Highlights Section
    6. Products Section
    7. Why Choose Us Section
    8. CTA Section
    9. About Section
    10. Gallery Section
    11. Contact Section
    12. Enquiry Form
    13. Footer
    14. Utilities & Helpers
    15. Responsive Styles
-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------
    1. General Styles & Typography
-----------------------------------------------------------------------------------*/

:root {
    --primary-color: #B070D6;
    --primary-dark-color: #8c59ab;       
    --primary-light-color: #c79ae2;  
     
    --secondary-color:#9a8aeb; 
    --secondary-dark-color:#7b6ebc;  
    --secondary-light-color:#b8adf1;  

    --accent-color: #4e8397;      
    --background-color: #F9F8FF;   
    --text-dark: #1A3A3A;        
    --text-light: #6D8A8A;          
    --white: #FFFFFF;                
    --black: #000000;                
    --box-shadow: 0 4px 12px rgba(0, 108, 117, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}


body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-label {
    display: inline-block;
    position: relative;
    padding: 5px 15px;
    background-color: rgba(176, 112, 215, 0.1);
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(176, 112, 215, 0.3);
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    position: relative;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    margin: 15px auto 25px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.section-title-wrapper {
    position: relative;
    margin-bottom: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-light {
    background-color: var(--background-color) !important;
}

/* Improved icon box styling */
.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-box i {
    font-size: 1.1rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/*-----------------------------------------------------------------------------------
    2. Buttons & Links
-----------------------------------------------------------------------------------*/
.btn {
    border-radius: var(--border-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-lg {
    padding: 0.8rem 2rem;
}

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

.btn-primary:hover, 
.btn-primary:focus {
    background-color: var(--primary-dark-color);
    border-color: var(--primary-dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgb(140, 89, 171,0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgb(140, 89, 171,0.5);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, 
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgb(140, 89, 171,0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgb(140, 89, 171,0.5);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover, 
.btn-secondary:focus {
    background-color: var(--secondary-dark-color);
    border-color: var(--secondary-dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(154, 138, 235, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(154, 138, 235, 0.5);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/*-----------------------------------------------------------------------------------
    3. Header & Navigation
-----------------------------------------------------------------------------------*/
header {
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.absolute-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: transparent !important;
}
.inner-page {
    padding-top: 45px;
}
.inner-page .navbar {
    background-color: var(--background-color)!important;
    box-shadow: var(--box-shadow);
}

/* Page Header for non-home pages */
.page-header {
    padding: 120px 0 60px;
    background-color: var(--background-color)!important;
    margin-bottom: 0;
    position: relative;
}

.navbar-shrink {
    padding: 0.5rem 0;
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
}

.navbar-brand img {
    max-height: 50px;
    transition: var(--transition);
}

.navbar-shrink .navbar-brand img {
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--black);
    padding: 0.5rem 1rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after,
.navbar-dark .navbar-nav .active > .nav-link::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 70%;
    opacity: 1;
}

.navbar-dark .navbar-toggler {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 5px;
}

.navbar-transparant .navbar-toggler {
     margin-top: -40px
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: var(--primary-color);
    color: var(--primary-color);
}

/*-----------------------------------------------------------------------------------
    4. Hero Section
-----------------------------------------------------------------------------------*/
.hero-section {
    height: 100vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Carousel */
#heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Keep indicators visible but hide navigation arrows */
.carousel-indicators {
    z-index: 10;
    bottom: 50px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Small line indicators instead of dots */
.carousel-indicators button {
    width: 25px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background-color: rgba(255, 255, 255, 0.6) !important;
    border: none !important;
    margin: 0 6px !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-indicators button:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.carousel-indicators button.active {
    background-color:var(--accent-color) !important;
    width: 35px !important;
    opacity: 1 !important;
    transform: translateY(-1px);
}

/* Hide the navigation arrows */
.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

#heroCarousel .carousel-item {
    transition: transform 1.5s ease-in-out;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}



.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}


.hero-section h1 {
    color: var(--black);
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-section .lead {
    color: var(--black);
    font-size: 1.2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.hero-buttons .btn-accent {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.hero-buttons .btn-accent:hover {
    background-color: #e0b600;
    border-color: #e0b600;
}

/*-----------------------------------------------------------------------------------
    5. Highlights Section
-----------------------------------------------------------------------------------*/
.highlights-section {
    background-color: var(--white);
    position: relative;
    z-index: 5;
}

.highlight-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.highlight-icon {
    width: 40px;
    height: 40px;
}

.highlight-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

/*-----------------------------------------------------------------------------------
    6. Products Section
-----------------------------------------------------------------------------------*/
/* Products Section uses the common section styling */

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/*-----------------------------------------------------------------------------------
    7. Why Choose Us Section
-----------------------------------------------------------------------------------*/
.why-choose-us-section {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(254, 204, 0, 0.05);
    z-index: 0;
}

.why-choose-us-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 108, 117, 0.05);
    z-index: 0;
}

.why-choose-section {
    position: relative;
    z-index: 0;
    width: 100%;
    padding: 60px 0;
}

/* Why Choose Us section uses the common section styling */

/* Using common section-label and section-underline styling */

/* Styling for the Why Choose Us numbered items */
.number-box {
    width: 70px;
    height: 70px;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.number-text {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    margin: 0;
    text-shadow: none;
    text-align: center;
}

/* Advantage Cards - New Design */
.advantage-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.advantage-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    min-width: 70px;
    height: 70px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.quality-color,
.range-color,
.support-color,
.durability-color {
    background-color: var(--secondary-color);
    color: #fff;
}

.advantage-info {
    flex: 1;
}

.advantage-info h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.advantage-info p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.5;
}

.advantages-row {
    margin-top: 30px;
}

.why-choose-item {
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    padding: 15px;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.why-choose-points {
    margin-top: 1rem;
}

@media (max-width: 767px) {
    .why-choose-item {
        margin-bottom: 2rem;
    }
}

.image-collage {
    position: relative;
    height: 400px;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.small-image-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 40%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 5px solid var(--white);
}

.small-image-2 {
    position: absolute;
    top: 15%;
    right: 0;
    width: 30%;
    height: 30%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 5px solid var(--white);
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    margin-bottom: 0;
    color: var(--text-light);
}

/*-----------------------------------------------------------------------------------
    8. Testimonials Section
-----------------------------------------------------------------------------------*/
.testimonials-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.testimonials-section .section-label {
    background-color: #f0f7f8;
    color: var(--primary-color);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 108, 117, 0.05);
    z-index: 0;
}

/* Using common section-label and section-underline styling */

.testimonial-card {
    background-color: white;
    border-radius: 0;
    padding: 25px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 15px;
    border: 1px solid #f1f1f1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.rating {
    color: var(--secondary-color);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content .quote {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
}

.author-info h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-indicators {
    position: static;
    margin: 0;
}

.testimonial-indicators button {
    width: 25px !important;
    height: 3px !important;
    background-color: rgba(0, 108, 117, 0.3) !important;
    border: none !important;
    margin: 0 5px !important;
}

.testimonial-indicators button.active {
    background-color: var(--accent-color) !important;
    width: 35px !important;
}

.control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.control-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.carousel-control-prev, .carousel-control-next {
    position: static;
    width: auto;
    opacity: 1;
}

/*-----------------------------------------------------------------------------------
    9. CTA Section
-----------------------------------------------------------------------------------*/
.cta-section {
    background-color: var(--secondary-light-color);
    padding: 4rem 0;
    color: #ffffff;
}

.cta-section h2,
.cta-section p {
    color: #ffffff !important;
}

/*-----------------------------------------------------------------------------------
    9. About Section
-----------------------------------------------------------------------------------*/
.about-section {
    padding: 5rem 0;
}

.company-overview .about-content {
    padding: 0 0 0 20px;
}

.company-overview .stat-box {
    margin-top: 10px;
}

.company-overview .stat-box h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.company-overview .stat-box p {
    font-size: 1rem;
    color: var(--text-light);
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-border-wrapper {
    position: relative;
    z-index: 1;
    border: 1px solid #e9e9e9;
    border-radius: var(--border-radius);
    padding: 8px;
    background-color: #ffffff;
}

.counter-box {
    text-align: center;
    margin-bottom: 1.5rem;
}

.counter-box .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.counter-box .counter-title {
    color: var(--text-light);
    font-weight: 600;
}

.timeline {
    margin-top: 3rem;
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-color);
    z-index: 1;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 1px;
    height: calc(100% + 2rem);
    background-color: #e0e0e0;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-year {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Mission & Vision Styling */
.mission-points,
.vision-points {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.mission-points li,
.vision-points li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.mission-points li i,
.vision-points li i {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    color: var(--accent-color);
    font-size: 1rem;
}

/*-----------------------------------------------------------------------------------
    10. Team Section
-----------------------------------------------------------------------------------*/
.team-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.team-info h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-info .position {
    color: #006C75;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/*-----------------------------------------------------------------------------------
    11. Counter Section
-----------------------------------------------------------------------------------*/
.counter-section {
    padding: 4rem 0;
    background: #fff;
    color: var(--primary-color);
}

.stat-card {
    text-align: center;
    background: #fff;
    padding: 1.5rem 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    border: 1px solid #f0f0f0;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-icon {
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.75rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.plus {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    top: 3px;
    margin-left: 2px;
}

.stat-title {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.2;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-----------------------------------------------------------------------------------
    12. Values & Certifications Section
-----------------------------------------------------------------------------------*/
.value-card {
    background-color: white;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 3rem; /* Increased size from typical 2rem */
    color: var(--secondary-color); 
    background-color: #b8adf170;
    padding: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 5px 15px #b8adf170;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/*-----------------------------------------------------------------------------------
    13. Certifications Section
-----------------------------------------------------------------------------------*/
.certifications-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.certification-card {
    background-color: white;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.certification-icon {
    margin-bottom: 1.5rem;
}

.certification-icon i {
    font-size: 3rem; /* Increased size from typical 2rem */
    color: var(--secondary-color); /* Using the yellow brand color */
    background-color: #b8adf170;
    padding: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 5px 15px #b8adf170;
}

.certification-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.certification-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/*-----------------------------------------------------------------------------------
    13. Gallery Section
-----------------------------------------------------------------------------------*/
.gallery-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.gallery-filter {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-filter {
    background-color: white;
    border: 1px solid #e0e0e0;
    color: #444;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: #f0f0f0;
    color: #006C75;
}

.btn-filter.active {
    background-color: #006C75;
    color: white;
    border-color: #006C75;
}

.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.gallery-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
    opacity: 0.8;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 45, 82, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.gallery-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/*-----------------------------------------------------------------------------------
    11. Contact Section
-----------------------------------------------------------------------------------*/
.contact-section {
    padding: 5rem 0;
}

.contact-info {
    color: var(--white);
    height: 100%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-form {
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-control {
    border-radius: var(--border-radius);
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/*-----------------------------------------------------------------------------------
    12. Enquiry Form
-----------------------------------------------------------------------------------*/
.enquiry-section {
    padding: 5rem 0;
    background-color: rgba(254, 204, 0, 0.15); /* Lighter version of secondary color */
}

.enquiry-form {
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-type-select {
    margin-bottom: 1.5rem;
}

.product-type-option {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.product-type-option:hover,
.product-type-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(254, 204, 0, 0.2);
}

.product-type-option img {
    height: 60px;
    margin-bottom: 1rem;
}

.product-type-option h5 {
    margin-bottom: 0;
    font-size: 1rem;
}

.specifications-section {
    display: none;
}

.specifications-section.active {
    display: block;
}

/*-----------------------------------------------------------------------------------
    13. Footer
-----------------------------------------------------------------------------------*/
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
}
.bottom-footer{
    background-color: var(--primary-dark-color);
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-dark-color);
}

.footer-menu {
    list-style: none;
    padding-left: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #f5f5dc; /* Creamy white color */
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-media {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.social-icons i{
     color: var(--white);
}
.social-icons i:hover {
     color: var(--secondary-color);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.copyright {
    margin-bottom: 0;
}

.footer-links a {
    transition: var(--transition);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: var(--secondary-color); /* Yellow color on hover */
    text-decoration: underline;
}

address p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

address p i {
    margin-right: 10px;
    color: var(--accent-color);
    margin-top: 5px;
}

/*-----------------------------------------------------------------------------------
    14. Utilities & Helpers
-----------------------------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }

/*-----------------------------------------------------------------------------------
    15. Responsive Styles
-----------------------------------------------------------------------------------*/
@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link::after {
        display: none;
        opacity: 0;
    }
    .navbar-collapse {
        background-color: var(--background-color);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .image-collage {
        height: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .highlight-card,
    .product-card,
    .contact-info {
        margin-bottom: 1.5rem;
    }
    
    .image-collage {
        height: 300px;
    }
    
    .main-image {
        width: 80%;
        height: 80%;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        max-height: 40px;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
}