
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color:#07154f;
    /*--black:#fff;
    --bg:#fff;
    --border:.1rem solid rgba(255,255,255,.3);*/
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: none;
    transition: .2s linear;
}

html{
    scroll-behavior: smooth;
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}


html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    font-size: 12px;

}

a{
    text-decoration: none;
    color: #000000;
}

.header {
    background: rgba(108, 110, 115, 0.151);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header .logo {
    margin-right: auto;
}

.header .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar {
    display: flex;
    gap: 2rem;
}

.navbar a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.6rem;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    padding: 0.5rem 1rem; /* Add padding for better hover experience */
    border-radius: 5px; /* Add rounded corners for hover background */
}

.navbar a.active, 
.navbar a:hover {
    color: var(--primary-color);
    background-color: rgba(203, 212, 246, 0.619); /* Slight background color change on hover */
    transform: scale(1.05); /* Slightly enlarge the link on hover */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow effect */
}


.icons {
    display: none;
    
}

.icons i {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s;
}

.icons i:hover {
    color: var(--primary-color);
}

.search-form {
    display: none; /* You can toggle this based on functionality */
}

.search-form input {
    width: 200px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.navbar.active {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95); /* Light background for pop-out */
    position: absolute;
    top: 70px; /* Adjust based on header height */
    right: 0;
    width: 100%;
    padding: 1rem 2rem;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    z-index: 1000; /* Ensure it appears above other content */
}

.navbar.active a {
    color: var(--text-color);
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar.active a:hover {
    background-color: rgba(12, 2, 69, 0.1); /* Light hover effect */
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .header {
        padding: 0 1rem;
    }

    .navbar {
        display: none;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 1rem 2rem;
        border-top: 1px solid var(--border-color);
    }

    .navbar a {
        color: var(--text-color);
        margin: 0.5rem 0;
    }

    #menu-btn {
        display: inline-block;
    }
}

@media (max-width: 450px) {
    .header {
        height: 60px;
    }

    .logo img {
        height: 40px;
    }

    .navbar {
        gap: 1rem;
    }

    .icons i {
        font-size: 1.5rem;
    }
}

@media (max-width: 991px) {
    .icons {
        display: flex; /* Show menu bars on smaller screens */
        gap: 1rem;
    }
}

/* Slideshow Container */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Testimony Section */
.testimony-section {
    position: relative;
    padding: 50px 0;
    /* background: url('images/bg_1_2.jpg') no-repeat center center/cover; */
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(9, 32, 148);
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Heading */
.heading-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Testimonial Slider */
.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Item */
.testimonial-item {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.testimonial-item:hover {
    transform: scale(1.05);
}

/* Content Box */
.testimonial-content {
    background: rgba(0, 0, 0, 0.556);
    padding: 20px;
    border-radius: 10px;
    color: white;
    max-width: 80%;
}

.testimonial-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-content ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.testimonial-content ul li {
    margin-bottom: 5px;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-prev, .owl-next {
    position: absolute;
    background: rgba(0, 60, 128, 0.3);
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.owl-prev:hover, .owl-next:hover {
    background: rgba(255, 255, 255, 0.6);
}

.owl-prev {
    left: -30px;
}

.owl-next {
    right: -30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-content {
        max-width: 90%;
    }
    
    .owl-prev {
        left: -10px;
    }
    
    .owl-next {
        right: -10px;
    }
}


/* Welcome Section Styles */
.welcome-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.welcome-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.welcome-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.welcome-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.welcome-content .btn:hover {
    background-color: #0056b3;
}

.welcome-features {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    max-width: 250px;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
}



.heading{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}
.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}


#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.about-box {
    display: flex;
    align-items: center;
    width: 70%;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    flex-direction: column; /* Stack content vertically on mobile */
}
.about-box.left {
    flex-direction: "";
}
.about-box.right {
    flex-direction: "";
}
.about-box img {
    max-width: 100%;
    width: 40%;
    height: auto;
    border-radius: 10px;
    
    margin-bottom: 20px;
}
.about-box .text {
    width: 100%;
    padding: 20px;
}
.about-box .text ul li{
    font: inherit;
}
.about-box h1, .about-box h3 {
    color: #333;
}
.about-box .text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}
#about-app .video{
    width: 60%;
    height: 50%;
    margin: 30px auto 0 auto;
}
#about-app .video video{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
@media(max-width: 477px){
    .section-p1{
        padding: 20px;
    }
    #header{
        padding: 10px 30px;
    }
    h1{
        font-size: 38px;
    }
    h2{
        font-size: 32px;
    }
    #about-head{
        flex-direction: column;
    }
    #about-head img{
        width: 100%;
        margin-bottom: 20px;
    }
    #about-head div{
        padding-left: 0px;
    }
    #about-app .video{
        width: 100%;
    }
    .about-box {
        flex-direction: row; /* Side-by-side layout on larger screens */
    }

    .about-box.left {
        flex-direction: row;
    }

    .about-box.right {
        flex-direction: row-reverse; /* Reverse layout for right-aligned boxes */
    }

    .about-box img {
        width: 50%; /* Half width for images on larger screens */
        margin-bottom: 0; /* Remove margin on larger screens */
    }

    .about-box .text {
        width: 50%; /* Half width for text on larger screens */
        padding: 0 20px; /* Add padding for spacing */
        text-align: left; /* Align text to the left on larger screens */
    }
} 
/*  */

#boddy{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
}
.slide-container{
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
}
.slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
}
.card{
    border-radius: 25px;
    background-color: #FFF;
}
.image-content,
.card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}
.image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}
.overlay{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    content: '';
    /* opacity: .85; */
    height: 100%;
    width: 100%;
    border-radius: 25px 25px 0 25px;
    background-image: url("Access images/bll.avif");
    background-size: cover; /*Ensures the image covers the entire div*/
    /* background-position: center; Centers the image */
    
    /* Adds a blur effect */
    /* backdrop-filter: blur(1px); /* Blurs background content behind the overlay */
    /* -webkit-backdrop-filter: blur(10px); Ensures compatibility with Safari  */ 

    
}
.overlay::before,
.overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #ffffff;
}
.overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}
.card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
}
.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070f4;
}
.name{
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
.description{
    font-size: 14px;
    color: #707070;
    text-align: center;
}
.button{
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #4070F4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover{
    background: #265DF2;
}
.swiper-navBtn{
    color: #6E93f7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover{
    color: #4070F4;
}

.swiper-navBtn::before,
.swiper-navBtn::after{
    font-size: 40px;
}
.swiper-button-next{
    right: 0;
}

.swiper-button-prev{
    left: 0;
}
.swiper-pagination-bullet{
    background-color: #6E93f7;
    opacity: 1;
}

.swiper-pagination-bullet-active{
    background-color: #4070F4;
}
@media screen and (max-width: 768px){
    .slide-content{
        margin: 0 10px;
    }
    .swiper-navBtn{
        display: none;
    }
}
/* ==================================================================================================== */
footer{
    width: 100%;
    position: absolute;
    background: linear-gradient(to right, #0329ff, #0e023c);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    text-transform: lowercase;
    line-height: 20px;
}
.row{
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;

}
.logoo{
    width: 80px;
    margin-bottom: 30px;
    position: relative;
}
.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    text-transform: lowercase;
}
ul li{
    list-style: none;
    margin-bottom: 12px;
}
ul li a{
    text-decoration: none;
    color: #fff;
}
form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
form .fa-regular{
    font-size: 18px;
    margin-right: 10px;
}
form input{
    width: 100%;
    background: transparent;
    color: #000000;
    border: 0;
    outline: none;
}
form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
form button .fa{
    font-size: 16px;
    color: #ccc;
}
.social-icons .fa-brands{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}
hr{
    width: 95%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 700px) {
    footer {
        padding: 30px 0 15px; /* Further reduced padding for mobile */
        border-top-left-radius: 80px; /* Reduced border radius for mobile */
        text-align: left;
    }

    .col {
        flex-basis: 100%; /* Full width for all columns on mobile */
        text-align: left; /* Center-align content on mobile */
    }

    .col:nth-child(2),
    .col:nth-child(3) {
        flex-basis: 100%; /* Full width for all columns on mobile */
    }

    .logoo {
        width: 60px; /* Smaller logo for mobile */
        margin-bottom: 15px; /* Reduced margin for mobile */
    }

    .col h3 {
        font-size: 1.2rem; /* Smaller font size for headings on mobile */
        margin-bottom: 15px; /* Reduced margin for mobile */
    }

    .email-id {
        margin: 8px 0; /* Reduced margin for mobile */
    }

    ul li {
        margin-bottom: 6px; /* Reduced margin for mobile */
    }

    form {
        margin-bottom: 20px; /* Reduced margin for mobile */
    }

    .social-icons .fa-brands {
        width: 30px; /* Smaller social icons for mobile */
        height: 30px; /* Smaller social icons for mobile */
        line-height: 30px; /* Adjusted line height for mobile */
        font-size: 16px; /* Smaller font size for mobile */
    }

    .copyright {
        font-size: 11px; /* Smaller font size for mobile */
    }
}
/* ==================================================================================================== */
/* footer{
    width: 100%;
    position: absolute;
    background: linear-gradient(to right, #0329ff, #0e023c);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    text-transform: lowercase;
    line-height: 20px;
}
.row{
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;

}
.logoo{
    width: 80px;
    margin-bottom: 30px;
    position: relative;
}
.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    text-transform: lowercase;
}
ul li{
    list-style: none;
    margin-bottom: 12px;
}
ul li a{
    text-decoration: none;
    color: #fff;
}
form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
form .fa-regular{
    font-size: 18px;
    margin-right: 10px;
}
form input{
    width: 100%;
    background: transparent;
    color: #000000;
    border: 0;
    outline: none;
}
form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
form button .fa{
    font-size: 16px;
    color: #ccc;
}
.social-icons .fa-brands{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}
hr{
    width: 95%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}
@media (max-width: 700px){
    footer{
        bottom: unset;
    }
    .col{
        flex-basis: 100%;
    }
    .col:nth-child(2), .col:nth-child(3){
        flex-basis: 100%;
    }

} */
.services {
    font-family: 'Poppins', sans-serif;;
    text-align: center;
    padding: 50px;
    
    background-color: #7caaff35; /* Light Sky Blue */
}
.serviceGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    max-width: 60%;
    margin: auto;
    justify-content: center;
    
}

.serviceBox {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: black;
    transition: 0.3s;
}
.serviceBox:hover {
    transform: scale(1.05);
}
.serviceBox img {
    width: "";
    height: 60px;
    margin-bottom: 10px;
}
.serviceDetail {
    padding: 50px;
    background-color: white;
    margin-top: 50px;
}
.detailBox {
    background-color: #f8f8f8;
    padding: 100px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;/*adjusts spacing between boxes */
}
/* To adjust the size of the service detail boxes, modify the max-width and padding of .detailBox */

html {
    scroll-behavior: smooth;
}
#services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 0;
    background-color: white;
}
.container h1 {
    font-size: "";
}
.service-box {
    display: flex;
    align-items: center;
    width: 80%;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-box.left {
    flex-direction: row;
}

.service-box.right {
    flex-direction: row;
}
.service-box video {
    width: 35%;
    height: auto;
    border-radius: 10px;
}
.service-box img {
    width: 35%;
    height: auto;
    border-radius: 10px;
}

.service-box .text {
    width: 60%;
    padding: 20px;
}

.service-box .li .text {
    width: 60%;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: xx-large;
}

.service-box h2 {
    color: #333;
    font-size: 24px;
}

.service-box p {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(74, 1, 74);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container h1{
        font-size: 240%;
    }
    .serviceGrid{
        grid-template-columns: 1fr;
        max-width: 90%;
    }
    .service-box {
        flex-direction: column;
        text-align: "";
        padding: 20px;
    }
    /* .serviceBox:nth-child(5){
        grid-column: span 1;
        justify-self: center;
        width: auto;
    } */
    .service-box.right {
        flex-direction: column;
    }
    .service-box.left{
        flex-direction: column-reverse;
    }
     .service-box video {
        width: 100%; /* Makes images fully responsive */
        max-width: 300px; /* Limits size so it's not too big */
        height: auto;
        display: block;
        margin: 0 auto 20px; /* Centers the image */
    }
    .service-box img {
        width: 100%; /* Makes images fully responsive */
        max-width: 300px; /* Limits size so it's not too big */
        height: auto;
        display: block;
        margin: 0 auto 20px; /* Centers the image */
    }
    /* .service-box img {
        width: 80%;
        margin-bottom: 20px;
    } */
    .service-box .text {
        width: 100%;
    }
    .service-box .p{
        text-decoration-color: purple;
    }
    
}

/**/

.education{
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 40px;
}
.education .videoPlayer{
    position: absolute;
    top: 40%;
    left: 45%;
    width: 100%;
    transform: translate(-45%, -50%);
    padding: 20px;
}
.education .sectionTitle{
    color: #fff;
    text-shadow: 0 0 4px #000;
}
.education .educationContainer{
    position: absolute;
    background-color: #00000096;
    width: 600px;
    top: 35vh;
    color: #fff;
    text-shadow: 0 0 3px #000;
    padding: 30px;
}
.education .educationContainer h3{
    font-size: 35px;
    font-weight: 300;
}
.education .educationContainer p{
    font-size: 15px;
    line-height: 20px;
    margin: 10px 0 30px;
}
.education .educationContainer button{
    background-color: #FF0000;
    border: 3px;
    color: #fff;
    padding: 40px 40px;
    font-weight: bold;
    font-size: 14px;
    outline: none;
}


/* Chat container - Floating box */
.chat-container {
    position: fixed;  /* Keeps the chat fixed at the bottom-right */
    bottom: 80px;  /* Distance from bottom */
    right: 20px;  /* Distance from right */
    width: 320px;  /* Adjust width */
    background: rgba(255, 255, 255, 0.95); /* White background with slight transparency */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Shadow for floating effect */
    display: flex;
    flex-direction: column;
    z-index: 9999; /* Ensures chatbot appears on top of everything */
    border: 1px solid #ccc;
}

/* Chat header - Clickable to toggle chat */
.chat-header {
    background: #007bff;
    color: white;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
}

/* Chat messages box */
.chat-box {
    height: 250px;  /* Adjust height of chat window */
    overflow-y: auto;  /* Enable scrolling */
    padding: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

/* Bot and user messages */
.bot-message, .user-message {
    padding: 8px;
    margin: 5px;
    border-radius: 5px;
    max-width: 80%;
    font-size: 14px;
}

/* Bot messages */
.bot-message {
    background: #e1f5fe;
    align-self: flex-start;
    color: #333;
}

/* User messages */
.user-message {
    background: #d1e7dd;
    align-self: flex-end;
    text-align: right;
    color: #333;
}

/* Input field */
input {
    width: 78%;  /* Adjust width */
    padding: 10px;
    border: none;
    border-top: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

/* Send button */
button {
    width: 22%;  /* Adjust width */
    padding: 10px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

/* Chat icon - Floating button */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    font-size: 22px;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000; /* Ensures it floats on top */
}

/* Adjust transparency - Lower value = more transparent */
.chat-container {
    background: rgba(255, 255, 255, 0.95);  /* 0.95 = almost solid, 0.5 = semi-transparent */
}
/* Chatbot Close Button */
.close-chat {
    background: transparent;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Poppins', sans-serif;;
}
.close-chat:hover {
    color: #ff3b3b;
}
/* Adjust chatbot width */
@media (max-width: 400px) {
    .chat-container {
        width: 90%;
        right: 5%;
    }
}

/* Smooth transition for opening and closing */
.chat-container {
    transition: all 0.3s ease-in-out;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    overflow: hidden;
}
/**/

/**/
 
/* Products Section */

/* Page Header */
#page-header {
    /* background: #44586b; */
    background-image: url("Access images/bll.avif");
    background-size: cover; /*Ensures the image covers the entire div*/
    /* background-position: center; Centers the image */
    color: white;
    text-align: center;
    padding: 50px 20px; 
}

/* Contact Details Section */
#contact-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 10%; 
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    font-family: 'Poppins', sans-serif;;
}

.details {
    flex: 1;
    padding-right: 20px;
}
.details span{
    color: grey;
}

.details h2, .details h3 {
    color: #041324;
}

.details li {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.details li i {
    font-size: 20px;
    color: #001429;
    margin-right: 10px;
}

.details p{
    text-transform: none;
}

.map {
    flex: 1;
    text-align: center;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}


/* Form Section */
#form-details {
    /* background: #ffffff; */
      /* background: #44586b; */
    background-image: url("Access images/bll.avif");
    background-size: cover; /*Ensures the image covers the entire div*/
    /* background-position: center; Centers the image */
    padding: 50px 10%;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

span {
    font-size: 14px;
    font-weight: bold;
    color: #f3f3f3;;
    letter-spacing: 1px;
}

h2 {
    font-size: 28px;
    color: #f3f3f3;
    margin-bottom: 20px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    outline: none;
    background: #f8f8f8;
}

form input:focus, form textarea:focus {
    border-color: #005bb5;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 91, 181, 0.2);
}

button.normal {
    background: linear-gradient(135deg, #005bb5, #041424);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 91, 181, 0.2);
}

button.normal:hover {
    background: linear-gradient(135deg, #041424, #005bb5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 91, 181, 0.3);
}


/* Responsive Design */
@media (max-width: 768px) {
    #contact-details {
        flex-direction: column;
    }
    .details, .map {
        width: 100%;
        padding: 0;
    }
    .map iframe {
        height: 250px;
    }
}

/* ---------------------- */
/* Product Styles */
/* ---------------------- */

/* Arch Background Section */
.arch-background {
    position: relative;
    height: 300px;
    background-image: url("Access images/bll.avif");
    background-size: cover; /*Ensures the image covers the entire div*/
    /* background: linear-gradient(135deg, #007bff, #0056b3); Solid color gradient */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: ellipse(100% 60% at 50% 40%); /* Arch shape */
}

.arch-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('Access image/blur 2.jpeg') no-repeat center center/cover;  Optional: Add a background image  */
    opacity: 0.3; /* Adjust opacity for better text visibility */
    z-index: 1;
}

.arch-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.arch-content h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* ================================= */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product {
    margin: 20px;
    width: calc(33.33% - 40px);
    background-color: #f7f7f7;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.description {
    padding: 20px;
}

.description h3 {
    margin-top: 0;
}

.description ol {
    margin-top: 0;
    justify-content: left;
    text-align: left;
}

@media (max-width: 768px) {
    .product {
        width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .product {
        width: 100%;
    }
}
/* ===================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  padding: 10px;
  animation: floatUp 0.5s ease-out;
}

#whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

#whatsapp-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#whatsapp-tooltip {
  position: fixed;
  bottom: 90px; /* position above the button */
  left: 20px;
  background: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}






