body {
    font-family: Arial, sans-serif;
}

.top-container{
    background-color: #036298;
    color: white;
    font-family: Lalezar;
    font-size: 18px;
    height: 40px;
    padding-left: 10px;
    padding-top: 5px;
    cursor: pointer;

}
.top-container .row .text-center {
    background-color: #036298;
    color: white;
    font-family: Lalezar;
    font-size: 18px;
    height: 40px;
    padding-left: 10px;
    padding-top: 5px;
    cursor: pointer;


}
.phone-link, .whatsapp-link {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps the text color the same as its surrounding */
    display: block; /* Makes each link a block element for better spacing */
    margin-bottom: 5px; /* Adds space between the links */
}

.email-link {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps the text color the same as its surrounding */
}

@media (max-width: 576px) {
    .top-container {
       display: none; /* Center text on small screens */
    }
}


/*Navbar menu css*/
.navbar{
    background-color: white;
    height: 65px;
    font-family: sans-serif;
    font-size: large;
    font-weight: bold;
    box-shadow: 0px 0px 8px gray;


}
#navbarNav{
    width: 100%;
    color: black;
    padding: 5px;
    /* border:1px solid red; */
}
.navbar-nav .nav-link:hover {
    color: #007bff; /* Set to desired color on hover */
    background-color: #f8f9fa; /* Optional: background color change */
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Change color when tapped on touch devices (mobile) */
.navbar-nav .nav-link:focus {
    color: #007bff; /* Set to desired color on focus */
    background-color: #f8f9fa; /* Optional: background color change */
    outline: none; /* Removes default outline for focus */
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Active link style */
.navbar-nav .nav-link.active {
    color: #0056b3; /* Set to the color of active page */
    
}
/* counter section */
.stats-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}
.stat-item {
    text-align: center;
    color: #555;
}
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}
.stat-description {
    color: #888;
}
.divider {
    height: 50px;
    width: 1px;
    background-color: #ddd;
}
.stat-item.visible {
    opacity: 1;
    transform: translateX(0); /* Moves to original position */
}
/* end counter section */

/* start service section*/
.section-title {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background-color: #036298; 
    color: #f8f9fa; /* Dark gray text for contrast */
    
    /* border-radius: 8px; Rounded corners */
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

/* Optional styling for an underline effect */
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #007bff; /* Blue accent color */
    margin: 10px auto 0;
    border-radius: 2px;
}

.image-container {
    width: 100%; /* Or set a fixed width */
    height: 200px; /* Define the height of the box */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* "cover" fills the box while cropping excess, "contain" fits image inside box without cropping */
    border-radius: 8px; /* Optional: Rounds the corners */
}


/* end service section*/
/* start mission section */
.mission-section {
    display: flex;
    align-items: center;
    padding: 50px 0;
}
.image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.content-container {
    padding-left: 30px;
}
.content-container h2 {
    font-size: 2rem;
    color: #0033cc;
    font-weight: bold;
    margin-bottom: 20px;
}
.content-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.content-box .number {
    background-color: #00cc99;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 15px;
}
.content-box h4 {
    color: #003366;
    font-weight: bold;
    margin-bottom: 5px;
}
.content-box p {
    color: #666;
}
.content-box {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.content-box.active {
    opacity: 1;
    transform: translateX(0);
}
/* end mission section */

#heroCarousel{
    /* border: 1px solid red; */
    /* background-color: gray; */
     background-size: cover;
     background-image: url('/asset/images/1.webp');

}
/* Hero Section */
.hero {
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
     padding: 20px;
    /*border:1px solid red; */
}

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

.hero p {
    font-size: 1.2rem;
}




/* start this is enquery form  */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}
.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
    color: #0062cc;
}
.form-footer {
    text-align: center;
    margin-top: 20px;
}
.btn-primary {
    background-color: #0062cc;
    border-color: #0062cc;
}
.form-control:focus {
    border-color: #0062cc;
    box-shadow: 0 0 5px rgba(0, 98, 204, 0.5);

}

/* Vision Section Styling */
.vision-section {
    background-color: #f5f5f5;
}

.vision-title {
    font-size: 2rem;
    font-weight: bold;
    color: #036298;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vision-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.highlight {
    color: #007bff;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .vision-title {
        font-size: 1.8rem;
    }

    .vision-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 30px 15px;
    }

    .vision-title {
        font-size: 1.6rem;
    }

    .vision-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .vision-section {
        padding: 20px 10px;
    }

    .vision-title {
        font-size: 1.4rem;
    }

    .vision-text {
        font-size: 0.9rem;
    }
}
/*end Vision Section Styling */


 /* Custom media queries for responsiveness */
 @media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }
    .form-header {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .form-container {
        margin: 20px;
    }
}
/* end this is enquery form  */


/* this login  */
/* General button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    width:300px;
}

/* Primary background color */
.btn-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;  /* Fixed width */
    height: 50px;  /* Fixed height */
    background-color: #3A403E;  /* Bootstrap primary color */
    color: white;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .btn-custom:hover {
    background-color: #3A403E  /* Darker blue on hover */
    transform: scale(1.05);  /* Slight scale-up effect */
  }

  .btn-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 254, 255, 0.5);  /* Focus state */
  }