/* Core Custom CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* font-family: "Google Sans", sans-serif; */

:root {
    --logo-height: 60px;
    --pill-dark: #000041; /* Approximated from image */
    --active-pill: #ffffff;
    --active-pill-text: #09133a;
    --btn-purple-start: #7839ec; /* A purple tone for gradient */
    --btn-purple-end: #6122d6;
    --main-font: 'Inter', Arial, Helvetica, sans-serif;
	letter-spacing: .5px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
}
::-webkit-scrollbar {
    width: 6px
}
::-webkit-scrollbar-thumb {
    background: #313d4f;
    -webkit-border-radius: 0;
    border-radius: 0
}
* {
    padding: 0;
    margin: 0;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

ul,
li {
    padding: 0;
    margin: 0;
}

a {

    text-decoration: none !important;
    color: #000;
}

ul,
li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
   font-family: "Google Sans", sans-serif;
}

p {
     font-family: "Inter", sans-serif;
}

::-moz-selection {
    text-shadow: none;
    background: #ff627f;
    color: #fff;
}

::selection {
    text-shadow: none;
    background: #ff627f;
    color: #fff;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}
/* Default Header Styling */
.hero-section {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.4s ease-in-out; 
    background: transparent; 
}

.hero-section.sticky {
    position: fixed;
    background-color: #050a30e0 !important;
    padding: 0px 0; 
    animation: fadeInDown 0.5s ease-in-out;
	backdrop-filter: blur(10px);
}

@keyframes fadeInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/* 1. Header & Navbar Setup */
.container {
    max-width: 1600px;
    padding-left: 4rem;
    padding-right: 4rem;
}

.logo-img {
    height: var(--logo-height);
    width: auto;
}

.transparent-nav {
    background: transparent !important;
}

/* 2. Menu Pill Area */
.main-menu-pill-wrapper {
    background-color: var(--pill-dark);
    border-radius: 50px; /* Fully pill-shaped */
    padding: 0.25rem 0.50rem;
    display: flex;
    align-items: center;
}

/* Navbar links styling */
.main-menu-pill-wrapper .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.main-menu-pill-wrapper .navbar-nav .nav-link:hover {
    color: white !important;
}

/* Active Link Styling (Home) */
.main-menu-pill-wrapper .navbar-nav .nav-link.active {
    background-color: var(--active-pill);
    color: var(--active-pill-text) !important;
    font-weight: bold;
}

/* Solutions Dropdown Styling */
.custom-dropdown {
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--pill-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-dropdown .dropdown-item {
    font-size: 0.9rem;
    color: white !important;
    padding: 0.30rem 1.5rem;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.custom-dropdown .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Active Solution link color */
.custom-dropdown .dropdown-item.active, 
.custom-dropdown .dropdown-item:active {
    background-color: var(--active-pill);
    color: var(--active-pill-text) !important;
}

/* Remove default Bootstrap caret in dropdown */
.nav-item.dropdown .nav-link.dropdown-toggle::after {
    display: none;
}
/* Re-enable and style custom caret if needed, but not on original image */


/* Search Icon Button inside the pill */
.search-icon-btn {
    cursor: pointer;
}
.search-icon-btn .fa {
    margin-right: 5px;
}

/* 3. Online Enquiry Button Styling */
.online-enquiry-btn {
    background: linear-gradient(135deg, var(--btn-purple-start) 0%, var(--btn-purple-end) 100%);
    color: white !important;
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    white-space: nowrap;
}

.online-enquiry-btn:hover {
    filter: brightness(1.1);
}

/* 4. Hero Text styling (matching the image) */
.hero-content-container {
    padding-top: 5rem;
}

.hero-subtext {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-title {
    font-family: var(--hero-title-font);
    font-size: 5rem; /* Large font for title */
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    color: white;
}

.hero-line {
    width: 250px;
    height: 1px;
    background-color: white;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.filter-system-img {
    max-height: 500px;
    width: auto;
}
.mysearchbox{ background:none; width:100%; padding:10px; font-size:18px; color:#fff;}

/* 5. Responsive Styles */
@media (max-width: 991.98px) {
    .custom-header-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Collapse the pill shape and stacked items */
    .collapse .main-menu-pill-wrapper {
        background-color: rgba(9, 19, 58, 0.95);
        border-radius: 20px;
        padding: 1.5rem;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        text-align: left;
    }

    .collapse .navbar-nav {
        width: 100%;
    }

    .collapse .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .collapse .navbar-nav .nav-link {
        width: 100%;
        border-radius: 10px;
        color: white !important;
        background-color: transparent !important;
        font-size: 1.1rem;
    }
    
    .collapse .navbar-nav .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1) !important;
        font-weight: bold;
        color: white !important;
    }

    /* Adjust dropdown appearance in mobile stack */
    .collapse .custom-dropdown {
        border-radius: 10px;
        background-color: transparent;
        border: none;
        padding-left: 1rem;
    }

    .collapse .custom-dropdown .dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    /* Stack Enquiry button separately below the main menu stack */
    .enquiry-btn-wrapper {
        text-align: center;
        width: 100%;
        margin-top: 1.5rem;
    }
    
    .online-enquiry-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Search Icon Alignment */
    .collapse .search-icon-item {
        margin-top: 1rem;
    }
    .collapse .search-icon-btn {
        text-align: center;
        background-color: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Hero title size on smaller screens */
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-line {
        width: 150px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-line {
        width: 100px;
    }
}


/* 6. Custom Sandwich Menu Toggler */
.custom-toggler {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: transparent;
    padding: 0.5rem;
    border-radius: 10px;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-toggler:focus, 
.custom-toggler:active {
    outline: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.1);
}


/* 7. Full Screen Search Overlay Styling */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 19, 58, 0.98); /* Deep dark blue */
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-search-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    z-index: 2100;
}
.close-search-btn:focus, .close-search-btn:active {
    outline: none;
    box-shadow: none;
}

.search-form {
    max-width: 800px;
}

.custom-search-input {
    background:none;
    border: none;
    border-bottom: 3px solid white;
    color: white;
    font-size: 2.5rem;
    border-radius: 0;
    padding-bottom: 1rem;
}

.custom-search-input:focus {
    background-color:none;
    color: white;
}

/* Hide Bootstrap default search cancel button */
.custom-search-input::-webkit-search-cancel-button {
    display: none;
}

.search-submit-btn {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    margin-left: -60px; /* Overlap input slightly */
    z-index: 5;
    transition: all 0.2s ease;
}

.search-submit-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}/* CSS Document */

/* Achievement Section Styling */
.achievement-section {
    background-color: #e5f7ff; /* Light Blue Background from image */
    font-family: 'Inter', sans-serif;
}

.stat-card {
    padding: 2rem;
    border-radius: 15px;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.purple-card {
    background-color: #5145cd; /* Purple color from image */
    color: white;
}

.white-card {
    background-color: white;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-icon {
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gray-icon {
    background: #f0f0f0;
    color: #888;
}

.stat-card p {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Image Section Adjustments */
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.bottom-img-box {
    position: relative;
    max-height: 300px;
}

.image-overlay-content {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    max-width: 60%;
    color: #0a1128; /* Dark text for the overlay */
}

.image-overlay-content h3 {
    font-size: 2rem;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .main-heading { font-size: 2.5rem; }
    .image-overlay-content { max-width: 90%; }
}
.aboutindex{ padding:50px 0px;}
.aboutindex h1{ font-size:50px; font-weight:100; padding-bottom:20px;}
.aboutindex h1 strong{ color:#50ae53;font-weight:800;}
.aboutindex h2{ font-size:20px; padding-bottom:20px;}
.aboutindex h3{ font-size:50px; font-weight:100; padding-bottom:20px;}
.aboutindex h3 strong{ color:#50ae53;font-weight:800;}

/* Product Section Styling */
.products-section {
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.product-card {
    background-color: #e3f8ff; /* Light Blue BG */
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 580px;
    border: none;
}

/* Card Titles - Using Google Sans feel */
.card-title {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #5145cd; 
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-image {
    margin-bottom: 30px;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Know More Button */
.btn-know-more {
    background-color: #5145cd;
    color: white !important;
    border-radius: 50px;
    padding: 10px 35px;
    font-weight: 500;
    display: inline-block;
    align-self: center;
    transition: 0.3s;
    border: none;
}

/* --- ACTIVE & HOVER STATE --- */

/* Purple Background State */
.product-card:hover {
    background-color: #5145cd;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(81, 69, 205, 0.3);
}

.product-card.active .card-title, 
.product-card:hover .card-title,
.product-card.active .card-text,
.product-card:hover .card-text {
    color: #fff !important;
}

.product-card.active .btn-know-more,
.product-card:hover .btn-know-more {
    background-color: #fff;
    color: #5145cd !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .product-card {
        min-height: auto;
        margin-bottom: 20px;
    }
}

/* Application Areas Styling with Icons */
.application-areas {
    background: linear-gradient(135deg, #0d005f 0%, #3026b9 100%);
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.text-green {
    color: #4cd137;
}

.section-subtitle {
    max-width: 800px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Icon Circle Styling */
.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); /* Transparent White */
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 3rem;
    color: #fff;
    transition: all 0.3s ease;
}
.whychoose1{ font-size:40px;}
.whychoose2{ color:#50af53; font-size:40px;}
.getintouch{ font-size:30px;}
.opacity-75 a{ color:#fff;}
/* Hover Effect */
.app-item:hover .icon-circle {
    background-color: #4cd137; /* Background change on hover */
    border-color: #4cd137;
    transform: translateY(-10px);
}

.app-item:hover .icon-circle i {
    color: #0d005f; /* Icon color change on hover */
}

.app-item h4 {
    margin-top: 20px;
    font-size: 1.25rem;
}

.app-item p {
    line-height: 1.5;
    opacity: 0.8;
}
    .purple-badge {
        background-color: #5d48db; /* Purple color from image */
        color: white;
        padding: 10px 20px;
        display: inline-block;
        border-radius: 5px;
        font-weight: 500;
    }

    .features p {
        margin-bottom: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .features strong {
        color: #333;
    }

    .form-control:focus {
        box-shadow: none;
        background-color: #fff !important;
        border: 1px solid #198754;
    }
/* Overview Text Styling */
    .overview-section p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Footer Social Icons */
    .social-link {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        transition: 0.3s;
    }

    .fb { background-color: #3b5998; }
    .ig { background-color: #e4405f; }
    .yt { background-color: #cd201f; }
    .wa { background-color: #25d366; }
    .ln { background-color: #0077b5; }

    .social-link:hover {
        transform: scale(1.1);
        opacity: 0.9;
    }

    /* Footer Specifics */
    .footer-section h5 {
        font-size: 1rem;
        white-space: nowrap;
    }

    /* Wave Pattern Background (Optional) */
    .footer-section {
        background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 0%, transparent 20%);
        position: relative;
    }
	.whychoose{ background:#e5f7ff; padding:50px 0px;}

.contact-header {
    /* Overlay effect using linear-gradient and background image */
	background:url(../images/water-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Inter', sans-serif;
	  position:relative;
  width:100%;
  padding-top:7%;
}

/* Title Styling */
.contact-title {
    font-weight: 700;margin-top: 50px;
}

/* Subtitle Styling */
.contact-subtitle {
    font-size: 1.25rem; /* lead class jaisa effect */
}
.text-green { color: #4cd137; }
    
    /* Info Cards Styling */
    .info-card {
        transition: transform 0.3s ease;
        border: 1px solid #eee;
    }
    
    .info-card:hover {
        transform: translateY(-5px);
        border-color: #4cd137;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
        background-color: #050a30;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }
    
    .info-card:hover .icon-box {
        background-color: #4cd137;
    }
    
    /* Form Focus Effect */
    .form-control:focus, .form-select:focus {
        box-shadow: none;
        background-color: #fff !important;
        border: 1px solid #4cd137 !important;
    }

    .btn-success {
        background-color: #4cd137;
        border: none;
    }

    .btn-success:hover {
        background-color: #3cb02e;
    }
/* Mobile Responsive adjustment */
@media (max-width: 768px) {
    .contact-header {
        padding: 50px 0;
    }
    .contact-title {
        font-size: 2.5rem;
    }
}
.aboutush1 h1{ font-size:30px; padding-bottom:20px;}
.gallery-section { padding: 60px 0; background: #fdfdfd; }
        .gallery-group { margin-bottom: 50px; }
        .gallery-title { 
            position: relative; padding-left: 20px; margin-bottom: 30px; 
            font-weight: 700; color: #03352c; font-size:24px;
        }
        .gallery-title::before { 
            content: ''; position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: #ff9200; 
        }
        
        /* Modern Gallery Item Design */
        .gal-item { 
            position: relative; margin-bottom: 30px; overflow: hidden; 
            border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            background: #fff;
        }
        .gal-item img { 
            width: 100%; height: 240px; object-fit: contain; 
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        
        /* Zoom Icon on Hover */
        .gal-item::after {
            content: '\F64D'; font-family: "bootstrap-icons"; position: absolute;
            top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
            background: rgba(227, 6, 19, 0.8); color: #fff; width: 50px; height: 50px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; transition: 0.3s; opacity: 0; z-index: 2;
        }
        .gal-item:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
        .gal-item:hover img { transform: scale(1.1); filter: brightness(80%); }

.indexfaq{ padding:50px 0px;}
.indexfaqleft strong{ color:#00bcf1; font-size:18px;}
.indexfaqleft h5{ font-size:50px; padding:0px 0px 20px 0px;}
.indexfaqbox{background:#03352c; border-radius:10px; padding:15px 15px 20px; color:#fff;}
.indexfaqbox i{margin-top: -6px; font-size:56px;float: left; margin-right:15px;}
/* Right Content Styling */
        .product-main-card { background: #fff; border-radius: 10px; overflow: hidden; }
        .product-img-box { border-radius: 10px; overflow: hidden; margin-bottom: 25px; border: 1px solid #f1f1f1; }
        .product-img-box img { width: 100%; height: 550px; transition: 0.5s;object-fit: contain; }
        .product-content h2 { font-size: 28px; font-weight: 800; color: #333; margin-bottom: 15px; }
        .product-desc { color: #666; line-height: 1.8; font-size: 16px; text-align: justify; }
		/* Left Sidebar Styling */
        .sidebar-card { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 20px; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .sidebar-title { font-size: 20px; font-weight: 700; color: #03352c; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #03352c; }
        
        .product-links { list-style: none; padding: 0; margin: 0; }
        .product-links li { border-bottom: 1px dashed #ddd; }
        .product-links li a { display: block; padding: 10px 0; color: #555; text-decoration: none; transition: 0.3s; font-size: 14px; }
        .product-links li a:hover { color: #ff9200; padding-left: 5px; }
        
        .contact-info-box p { font-size: 14px; margin-bottom: 15px; line-height: 1.6; }
        .contact-info-box i { color: #ff9200; font-size: 18px; margin-right: 10px; }

/* Layout Styling */
.water-softener-showcase {
    padding: 60px 0;
    background-color: #e5f7ff;
}

/* Image Circles Styling */
.image-wrapper {
    position: relative;
    padding: 20px;
}

.main-image-circle, .sub-image-circle {
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.main-image-circle {
    width: 350px;
    height: 350px;
    border-radius: 50% 50% 0 50%; /* Image 1cb4d7e.jpg jaisa curve */
}

.sub-image-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin-top: -80px;
    margin-left: auto;
}

.main-image-circle img, .sub-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c62828;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Content Styling */
.benefits-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-left: 6px solid #004aad;
    margin-bottom: 25px;
}

.section-heading {
    background: #004aad;
    color: #fff;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 0 25px 25px 0;
    margin-left: -36px;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.benefits-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
}

/* Product Range Card */
.product-range-card {
    background: #004aad;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
}

.range-title {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.range-list {
    list-style: none;
    padding: 0;
}

.range-list li {
    margin-bottom: 10px;
}

.range-list i {
    color: #00c2cb;
    margin-right: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-image-circle, .sub-image-circle {
        width: 250px;
        height: 250px;
        margin: 0 auto 20px auto;
    }
}

.enquiry-section {
    background-color: #f8f9fa; /* Light grey background for contrast */
}

.custom-input {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #050a30;
    box-shadow: 0 0 0 0.25rem rgba(5, 10, 48, 0.1);
    outline: none;
}

.enquiry-card {
    transition: transform 0.3s ease;
}

.enquiry-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .enquiry-card {
        padding: 25px !important;
    }
}

