.hero-section {
    position: relative;
    overflow: hidden;
}

/* Background Slides */
.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Center Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

/* Blue Box Content */
.hero-overlay {
    background: #1f5f95;
    color: #fff;
    padding: 50px 60px;
    max-width: 700px;
    width: 90%;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-overlay h5 {
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.6;
}
.hero-overlay ul{
list-style-position: inside;
padding-left: 0;
margin: 15px 0;
text-align: left;
display: inline-block;
}

.hero-overlay ul li{
margin-bottom: 8px;
}

/* Vertical Indicators Logic */
.custom-indicators {
    position: absolute;
    left: 40px; 
    right: auto; 
    top: 50%;
    bottom: auto;
    margin: 0;
    transform: translateY(-50%);
    flex-direction: column; 
    gap: 15px;
    width: auto;
}

.custom-indicators button {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    border: 3px solid #786969 !important;
    background: transparent !important;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 0;
    box-sizing: border-box;
}

/* Active Dot Styling */
.custom-indicators .active {
    background: #007bff !important; 
    border-color: #727a81 !important;
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .hero-slide { height: 450px; }
    .hero-overlay { padding: 30px 20px; }
    .custom-indicators { left: 15px; }
}


/* about-section */
.about-section{
    margin-top: 150px;
    background:#ffffff;
}

.about-section h2{
    font-size:36px;
}

.letter-spacing{
    letter-spacing:3px;
    font-weight:600;
}

.about-image img{
    border-radius:10px;
}

/* Wrapper Section */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
     margin-top: 150px;
}

/* The Container hosting the Background Image */
.service-container {
    background-image: url('../images/background.jpg'); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; /* Or 'auto' to keep original dimensions */
    position: relative;
    z-index: 1;
}

/* Title Styling */
.service-title {
    letter-spacing: 4px;
    color: #1f5f95;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Service Item Card */
.service-item {
    padding: 40px 20px;
    border-radius: 12px;
    background: transparent; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.service-icon {
    font-size: 45px;
    color: #1f5f95;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-item p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* HOVER EFFECT */
.service-item:hover {
    background: #1f5f95; 
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(31, 95, 149, 0.25);
}

.service-item:hover .service-icon,
.service-item:hover p {
    color: #ffffff !important;
}

/* Responsive adjustment: 
   On mobile, we usually want background-size: cover 
   so it fills the vertical space of the stacked columns */
@media (max-width: 991px) {
    .service-container {
        background-size: cover;
    }
}
/* products */
.products-section{
padding:60px 0;
}

.product-card{
position:relative;
overflow:hidden;
border-radius:10px;
}

.product-img{
width:100%;
height:250px;
object-fit:cover;
transition:transform .5s;
}

.product-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:22px;
font-weight:600;
background:rgba(0,0,0,0.2);
transition:background .4s;
}

.product-card:hover .product-img{
transform:scale(1.15);
}

.product-card:hover .product-overlay{
background:rgba(0,0,0,0.45);
}


/* social-section */
.social-section{
padding:100px 20px;
background:#f7f8fc;
}

.social-title{
letter-spacing:4px;
color:#2b6cb0;
font-weight:600;
}

.social-card{
background:#eef0f7;
padding:40px 30px;
text-align:center;
border-radius:12px;
transition:all .3s ease;
height:100%;
}

.social-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.social-icon{
width:60px;
margin-bottom:20px;
}

.social-card p{
color:#555;
font-size:16px;
line-height:1.6;
margin:0;
}
/* Enquiry Section */
.enquiry-section{
padding:80px 0;
background:#ffffff;
}

/* Title */
.enquiry-title{
text-align:center;
font-size:32px;
font-weight:600;
margin-bottom:50px;
position:relative;
}

.enquiry-title::after{
content:'';
width:80px;
height:4px;
background:#2b6cb0;
display:block;
margin:12px auto 0;
border-radius:5px;
}

/* Form Card */
.enquiry-form-box{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
max-width:900px;
margin:auto;
}

/* Inputs */
.enquiry-section .form-control{
border:1px solid #ccc;
border-radius:6px;
padding:14px;
font-size:15px;
transition:all 0.3s ease;
}

/* Input Focus */
.enquiry-section .form-control:focus{
border-color:#2b6cb0;
box-shadow:0 0 0 0.15rem rgba(43,108,176,0.15);
}

/* Textarea */
.enquiry-section textarea{
resize:none;
}

/* Button */
.enquiry-section .btn{
background:#2b6cb0;
border:none;
border-radius:6px;
font-weight:600;
letter-spacing:0.5px;
color:white;
transition:all 0.3s ease;
}

/* Hover */
.enquiry-section .btn:hover{
background:#1e4e8c;
transform:translateY(-2px);
color:white;
}
/* Footer */
footer{
background:#002746;
color:white;
}

/* Footer Links */
footer a{
color:white;
text-decoration:none;
transition:0.3s;
}

footer a:hover{
color:#ffd54f;
}

/* Social Icons */
.social-icons a{
font-size:20px;
margin-right:15px;
display:inline-block;
transition:0.3s;
}

.social-icons a:hover{
color:#ffd54f;
transform:translateY(-3px);
}

/* Footer Divider */
footer hr{
opacity:0.3;
}

/* Responsive spacing */
footer p{
font-size:14px;
line-height:1.6;
}