/********** Template CSS **********/
:root {
    --primary: #10335e;
    --secondary: #5195c7;
    --secondary-light: linear-gradient(to right, #2ea8ffac, #10335e);


    --light: #f4f7f4;
    --dark: #1a0f42;
}

body{
    background-color: rgb(236, 236, 236);
    overflow-x: hidden;
}


/* =======================footer plus button==================================== */

.back-to-top {
    position: fixed;
    display: block;
    right: 45px;
    bottom: 45px;
    border-radius: 50px;

    z-index: 99;
    border:2px solid var(--secondary);
}
.plus-button {
    position: fixed;
    display: block;
    left: 45px;
    bottom: 45px;
    z-index: 99;
    border-radius: 50px;
    border:2px solid var(--secondary);
}
.whatsapp{
    position: fixed;
    display: none;
    left: 45px;
    bottom: 105px;
    z-index: 99;
    border-radius: 50px;

    border:2px solid var(--secondary);
}
.call{
    position: fixed;
    display: none;
    left: 45px;
    bottom: 165px;
    border-radius: 50px;

    z-index: 99;
    border:2px solid var(--secondary);
}




h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 100px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
    font-weight: bold;
    /* text-decoration: underline; */
    font-size: 22px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.caption{
    font-size: 30px;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    

    ;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}


#header-carousel .carousel-item {
    position: relative;
    height: 650px;
    /* display: flex; */
    object-fit: fill;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
 
}
@media (max-width: 768px) {
    .caption{
        font-size: 20px;
    }
    #header-carousel .carousel-item {
        /* position: relative; */
        height: 250px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    /* background: linear-gradient(rgba(15, 16, 66, 0.6), rgba(15, 16, 66, 0.6)), url(../img/carousel-1.jpg) center center no-repeat; */
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 16, 66, 0.6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: left;
    border-radius: 20px;
    height: 450px;
}

.service-page .service-item{
    text-align: left;
}
.service-image{
    height: 200px;
    display: flex;
    object-fit: fill;
}

.service-image img{
    height: 100%;
    width: 100%;
    border-radius: 15px;
    
}
.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
    border-radius: 15px;
  

    border: 1px solid var(--primary);
}

.service-item:hover .service-text {
    background: var(--secondary-light);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    /* width: 31px; */
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #dbc73c;
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
    position: absolute;
    bottom: 10px;
    left: 10px;
}


.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    /* padding: 10px 15px; */
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 16, 66, 0.6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.owl-nav {
    display: none;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}




/* ================================CUSTOM CSS============================ */
.main-logo{
    height: 100%;
}
.about{
    display: flex;
    flex-wrap: wrap-reverse;
}
.abt-content{
    padding: 10px;
  
    border-radius: 10px;
}
.abt-content p{
    color: black;
}
.about-image{
    height: 400px;
    
    object-fit: fill;
    display: flex;
    justify-content: center;
}
.about-image img{
    height: 100%;
    width: 100%;
    border-radius: 20px;
}
.about-heading{
    font-size: 40px !important;
    font-weight: bold !important;
}
/* .portfolio-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 16px;
} */

.portfolio-item {
    flex: 0 0 50%; /* Each item takes 50% width */
    max-width: 50%; /* Restrict maximum width to 50% */
}

.portfolio-container {
    width: 100%;
    margin: 0 auto; /* Centers the content */
}

@media (max-width: 786px) {
    .service-page .service-image{
        height: 212px;
    }
    .page-header {
     
        height: 180px;
    }
    
    .portfolio-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .team-item .team-text{
        bottom: 0;
    }
    .about-image{
        height: 350px;
        
        object-fit: fill;
        display: flex;
        justify-content: center;
    }
}

#footer {
    /* background-color: var(--theme-primary); */
     padding: 0;
     color: #fff;
     font-size: 14px;
   }
   
   #footer .footer-top {
     /* background: #5c768d; */
     /* border-top: 1px solid #768fa6;
     border-bottom: 1px solid #67839c; */
     background-color: var(--theme-primary);
     padding: 60px 0 30px 0;
   }
   
   #footer .footer-top .footer-info {
     margin-bottom: 30px;
   }
   
   #footer .footer-top .footer-info h3 {
     font-size: 24px;
     margin: 0 0 20px 0;
     padding: 2px 0 2px 0;
     line-height: 1;
     font-weight: 700;
   }
   
   #footer .footer-top .footer-info p {
     font-size: 14px;
     line-height: 24px;
     margin-bottom: 0;
     font-family: "Raleway", sans-serif;
     color: #fff;
   }
   
   #footer .footer-top .social-links a {
     font-size: 18px;
     display: inline-block;
    background-color: var(--theme-secondary);
     color: #fff;
     line-height: 1;
     padding: 8px 0;
     margin-right: 4px;
     border-radius: 50%;
     text-align: center;
     width: 36px;
     height: 36px;
     transition: 0.3s;
   }
   
   #footer .footer-top .social-links a:hover {
     background: #428bca;
     color: #fff;
     text-decoration: none;
   }
   
   #footer .footer-top h4 {
     font-size: 16px;
     font-weight: 600;
     color: #fff;
     position: relative;
     padding-bottom: 12px;
   }
   
   #footer .footer-top .footer-links {
     margin-bottom: 30px;
   }
   
   #footer .footer-top .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0;
   }
   
   #footer .footer-top .footer-links ul i {
     padding-right: 2px;
     color: #9eccf4;
     font-size: 18px;
     line-height: 1;
   }
   
   #footer .footer-top .footer-links ul li {
     padding: 10px 0;
     display: flex;
     align-items: center;
   }
   
   #footer .footer-top .footer-links ul li:first-child {
     padding-top: 0;
   }
   
   #footer .footer-top .footer-links ul a {
     color: #fff;
     transition: 0.3s;
     display: inline-block;
     line-height: 1;
   }
   
   #footer .footer-top .footer-links ul a:hover {
     color: #9eccf4;
   }
   
   #footer .footer-top .footer-newsletter form {
     margin-top: 30px;
     background: #fff;
     padding: 6px 10px;
     position: relative;
     border-radius: 4;
   }
   
   #footer .footer-top .footer-newsletter form input[type="email"] {
     border: 0;
     padding: 4px;
     width: calc(100% - 110px);
   }
   
   #footer .footer-top .footer-newsletter form input[type="submit"] {
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     border: 0;
     background: none;
     font-size: 16px;
     padding: 0 20px;
     background: #428bca;
     color: #fff;
     transition: 0.3s;
     border-radius: 4;
   }
   
   #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background-color: var(--theme-primary);
   }
   
   #footer .copyright {
     text-align: center;
     padding-top: 30px;
   }
   
   #footer .credits {
     padding-top: 10px;
     text-align: center;
     font-size: 13px;
     color: #fff;
   }
   
   #footer .credits a {
     color: #9eccf4;
   }
   /* Default styles for desktop view */
   footer .footer-top {
     display: block;
   }
   
   footer .footer-mobileView {
     display: none; /* Hide mobile view content by default */
   }
   
   /* Mobile view styles */
   @media (max-width: 768px) {
   
     footer .footer-mobileView {
       display: block; /* Show mobile footer */
     }
   
    /* Sticky footer for mobile view */
    footer .footer-mobileView {
     display: flex; /* Show mobile footer as flexbox */
     align-items: center;
     justify-content: space-around; /* Distribute space evenly */
     width: 100%;
     position: fixed; /* Make it fixed */
     bottom: 0; /* Stick to the bottom of the screen */
     left: 0;
     background-color:black; /* Adjust background color */
     z-index: 1001; /* Ensure it stays on top of other content */
     text-align: center; /* Center text */
     height: 60px; /* Set a fixed height */
   }
   .footer-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     color: white; /* Ensure text color is visible */
     
   }
   
   .footer-content img {
     height: 23px;
     width: 25px;
     margin-bottom: 5px;
   }
   
   .footer-content a {
     text-decoration: none;
     font-size: 14px;
     color: white;
   }
   
   /* Larger Home icon and text */
   /* .footer-mobileView .footer-content:nth-child(3) img {
     height: 60px;
     width: 50px;
     border: 1px double white;
     padding: 5px;
     border-radius: 50%;
     box-shadow: 0 0 0 4px white;
   } */
   
   /* .footer-mobileView .footer-content:nth-child(3) a {
     font-size: 26px;
   } */
    /* Specific for the Home icon */
    .nav-menu-home {
           align-self: center;
           align-items: center;
           justify-content: center;
           place-items: center;
           position: absolute;
           top: -39px;
           left:50%;
           transform: translateX(-50%);
           z-index: 1002;
          
   }
   
   .nav-menu-home i {
     height: 60px; /* Larger icon */
     width: 60px;
     border: 4px double white;
     /* padding: 5px; */
     border-radius: 50%;
     /* box-shadow: 0 0 0 4px white; */
     background-color: var(--theme-primary);
     align-items: center;
     justify-content: center;
     justify-items: center;
     align-self: center;
     padding: 20%;
    
   }
   
   .nav-menu-home a {
     font-size: 26px; /* Larger text */
   }
   
     /* Dropdown Menu */
     .footer-content .dropdown-content {
       display: none; /* Hidden by default */
       position: absolute;
       bottom: 100%; /* Align dropdown above the Gallery item */
       left: 50%;
       transform: translateX(-50%);
       background-color: #f9f9f9;
       min-width: 160px;
       box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
       z-index: 1;
       text-align: center;
     }
   
    
   
     .footer-content .dropdown-content a:hover {
       background-color: var(--dark);
     }
   
    
   
    .footer-mobileView .footer-content.active i {
     /* padding: 10px;
     background-color: white; */
     font-size: 22px;
     color: var(--primary);
     border-radius: 100%;
     /* opacity: 0.5; */
     }
     .footer-mobileView .footer-content.active a{
       font-weight: bold;
       color: var(--primary);
       font-size: 18px;
     }
     #footer{
        padding: 0 0 30px 0;
     }
   }
   
/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    object-fit: fill;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
    height: 100%;
    width: 100%;
    /* object-fit: fill; */
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--primary);
}
/*** Blog End ***/

/* =====================carousel dots===================== */
.owl-dots {
    text-align: center;
    padding-top: 20px;
}
.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}
.owl-dot.active {
    background: var(--primary);
}

/* =====================carousel dots===================== */


/* -----------------footer------------------ */

/*** Footer Start ***/
.footer {
    background: linear-gradient(to right, #10335e, #1676ec);

}
.footer .footer-item a {
    line-height: 35px;
    color:white;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
    color: white;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color:black;
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: var(--primary) !important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--primary) !important;
}
/*** copyright end ***/
.footer-links{
    display: flex;
    justify-content: center;
   }
   .footer-logo{
    display: flex;
    object-fit: fill;
    height: 80px;
    border-radius: 20px;
   }
   @media(max-width:798px){
    .footer-links{
        justify-content: start;
    }
   }
.copyright-footer{
    background-color: var(--primary);
    height: 44px;
}
#footer {
    /* background-color: var(--theme-primary); */
     padding: 0;
     color: #fff;
     font-size: 14px;
   }
   
   #footer .footer-top {
     /* background: #5c768d; */
     /* border-top: 1px solid #768fa6;
     border-bottom: 1px solid #67839c; */
     background-color: var(--theme-primary);
     padding: 60px 0 30px 0;
   }
   
   #footer .footer-top .footer-info {
     margin-bottom: 30px;
   }
   
   #footer .footer-top .footer-info h3 {
     font-size: 24px;
     margin: 0 0 20px 0;
     padding: 2px 0 2px 0;
     line-height: 1;
     font-weight: 700;
   }
   
   #footer .footer-top .footer-info p {
     font-size: 14px;
     line-height: 24px;
     margin-bottom: 0;
     font-family: "Raleway", sans-serif;
     color: #fff;
   }
   
   #footer .footer-top .social-links a {
     font-size: 18px;
     display: inline-block;
    background-color: var(--theme-secondary);
     color: #fff;
     line-height: 1;
     padding: 8px 0;
     margin-right: 4px;
     border-radius: 50%;
     text-align: center;
     width: 36px;
     height: 36px;
     transition: 0.3s;
   }
   
   #footer .footer-top .social-links a:hover {
     background: #428bca;
     color: #fff;
     text-decoration: none;
   }
   
   #footer .footer-top h4 {
     font-size: 16px;
     font-weight: 600;
     color: #fff;
     position: relative;
     padding-bottom: 12px;
   }
   
   #footer .footer-top .footer-links {
     margin-bottom: 30px;
   }
   
   #footer .footer-top .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0;
   }
   
   #footer .footer-top .footer-links ul i {
     padding-right: 2px;
     color: #9eccf4;
     font-size: 18px;
     line-height: 1;
   }
   
   #footer .footer-top .footer-links ul li {
     padding: 10px 0;
     display: flex;
     align-items: center;
   }
   
   #footer .footer-top .footer-links ul li:first-child {
     padding-top: 0;
   }
   
   #footer .footer-top .footer-links ul a {
     color: #fff;
     transition: 0.3s;
     display: inline-block;
     line-height: 1;
   }
   
   #footer .footer-top .footer-links ul a:hover {
     color: #9eccf4;
   }
   
   #footer .footer-top .footer-newsletter form {
     margin-top: 30px;
     background: #fff;
     padding: 6px 10px;
     position: relative;
     border-radius: 4;
   }
   
   #footer .footer-top .footer-newsletter form input[type="email"] {
     border: 0;
     padding: 4px;
     width: calc(100% - 110px);
   }
   
   #footer .footer-top .footer-newsletter form input[type="submit"] {
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     border: 0;
     background: none;
     font-size: 16px;
     padding: 0 20px;
     background: #428bca;
     color: #fff;
     transition: 0.3s;
     border-radius: 4;
   }
   
   #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background-color: var(--theme-primary);
   }
   
   #footer .copyright {
     text-align: center;
     padding-top: 30px;
   }
   
   #footer .credits {
     padding-top: 10px;
     text-align: center;
     font-size: 13px;
     color: #fff;
   }
   
   #footer .credits a {
     color: #9eccf4;
   }
   /* Default styles for desktop view */
   footer .footer-top {
     display: block;
   }
   
   footer .footer-mobileView {
     display: none; /* Hide mobile view content by default */
   }
   
   /* Mobile view styles */
   @media (max-width: 768px) {
    .copyright-footer{
        height: 70px;
    }
    #footer{
        padding: 0 0 30px 0;
    }
     footer .footer-mobileView {
       display: block; /* Show mobile footer */
     }
   
    /* Sticky footer for mobile view */
    footer .footer-mobileView {
     display: flex; /* Show mobile footer as flexbox */
     align-items: center;
     justify-content: space-around; /* Distribute space evenly */
     width: 100%;
     position: fixed; /* Make it fixed */
     bottom: 0; /* Stick to the bottom of the screen */
     left: 0;
     background-color: var(--primary); /* Adjust background color */
     z-index: 1001; /* Ensure it stays on top of other content */
     text-align: center; /* Center text */
     height: 60px; /* Set a fixed height */
   }
   .footer-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     color: white; /* Ensure text color is visible */
     
   }
   
   .footer-content img {
     height: 23px;
     width: 25px;
     margin-bottom: 5px;
   }
   
   .footer-content a {
     text-decoration: none;
     font-size: 14px;
     color: white;
   }
   
    .nav-menu-home {
           align-self: center;
           align-items: center;
           justify-content: center;
           place-items: center;
           position: absolute;
           top: -39px;
           left:50%;
           transform: translateX(-50%);
           z-index: 1002;
          
   }
   
   .nav-menu-home i {
     height: 60px; /* Larger icon */
     width: 60px;
     border: 4px double white;
     /* padding: 5px; */
     border-radius: 50%;
     /* box-shadow: 0 0 0 4px white; */
     background-color: var(--theme-primary);
     align-items: center;
     justify-content: center;
     justify-items: center;
     align-self: center;
     padding: 20%;
    
   }
   
   .nav-menu-home a {
     font-size: 26px; /* Larger text */
   }
   
    
    .circle{
      border: 2px solid white;
      padding: 10px;
      border-radius: 100%;
      background-color: white;
      color: rgb(234, 134, 134);
    }
   
    .footer-mobileView .footer-content.active i {
     padding: 10px;
     background-color: var(--secondary);
     color:var(--bs-dark);
     border-radius: 100%;
     /* opacity: 0.5; */
     }
     .footer-mobileView .footer-content.active a{
       font-weight: bold;
       /* color: #790b0b; */
       font-size: 16px;
     }
   
   }
   

/* --------------------------------topbar--------------------------- */
.top{
    background-color: var(--primary);

}
.top-bar{
    display: flex;
    justify-content: space-between;
    background-color: var(--primary);
}
.top-bar .details p{
    color: white !important;
    font-size: 12px;
}
.top-icons {
    display: flex;
    gap: 10px;
    color: white;
}

.top-icons i {
    color: white !important;
    font-size: 18px;
    cursor: pointer;
}

/* --------------------------------enroll--------------------------- */
.enroll{
    font-size: 24px;
    color: var(--secondary);

}
.enroll-cards{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.enroll-cards .gridss{
    border-radius: 10px;
    background-color: white;
    display: flex;
    gap: 15px;
    text-align: left;
}
.enroll-cards .gridss i{
    color: var(--primary);
}
.enroll-cards .gridss p{
    color: black;
    font-size: 12px;
    text-align: left;
}
.enroll-cards .gridss:hover{
    background-color: var(--primary);
    color: white !important;
}
.enroll-cards .gridss:hover i{
    color: white !important;
}
.enroll-cards .gridss:hover p{
    color: white !important;
}
p{
    margin-bottom: 0 !important;
    padding-bottom:0 !important ;
}

@media (max-width:768px) {
    .enroll-cards{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
    .enroll-cards .gridss{
        flex-direction: column;
    }
}

/* ================core section================= */
.core-grids-section{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    gap: 25px;
}
.core-grids-section .core-grid{
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: white;
    border-radius: 15px;
}
.core-grids-section .core-grid i{
    color: var(--secondary);

}
.core-grids-section .core-grid p{
    font-size: 16px;
    color: black;
}
.core-grids-section .core-grid:hover{
    background-color: var(--primary);
}
.core-grids-section .core-grid:hover i{
    color: white;
}
.core-grids-section .core-grid:hover p{
    color: white;
}
.core {
    position: relative; /* Required for the ::before overlay */
    background: url('../img/testimonial-bg.jpg') no-repeat center center/cover;
    background-color: #fee800b8; /* fallback color */
    overflow: hidden; /* To ensure overlay stays within bounds */
}

.core::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: #2eb5db6b; /* yellow transparent layer */
    z-index: 1;
    pointer-events: none; /* So it doesn't interfere with clicking elements inside */
}

.core > .container {
    position: relative;
    z-index: 2; /* Bring actual content above overlay */
}
.core-grid :hover h4{
    color: white;
}

@media (max-width:768px) {
    .core-grids-section{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 10px;
    }
    .core-grids-section .core-grid{
        flex-direction: column;
    }
}


/* =====================brands====================== */
.brand-item .card{
    border-radius: 15px;

}
.brand-img{
    height: 100px;
    display: flex;
    object-fit: fill;
    border-radius: 15px;

}
.brand-img img{
    height: 100%;
    border-radius: 15px;
}


/* ===========================testimonals============================ */
.testimonial-section {
    position: relative !important;
    background: url('../img/testimonial-bg.jpg') no-repeat center center/cover !important;
    background-color: #fca00bb0 !important; /* fallback color */
    overflow: hidden !important;
}

.testimonial-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important; 
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #2eb5db6b !important; /* yellow transparent overlay */
    z-index: 1 !important;
    pointer-events: none !important;
}
.testimonial-section p{
    color: rgb(14, 4, 123) !important;
}
.testimonial-section > .container {
    position: relative !important;
    z-index: 2 !important;
}


/* ===========detail page============== */
.detailss{
    padding: 20px;
}



/* changed by nani */

@media (max-width:798px){
    .top{
        display: none;
    }
    .search-header{
        font-size: 16px !important;
    }
    .about-heading{
        font-size: 20px !important;

    }

    .carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}
}



.footer-logo{
    display: flex;
    object-fit: fill;
    height: 90px;
    border-radius: 20px;
   }


.heads-ban{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-self: start;
}



/* .text-cont{
   color:   #10335e !important;
} */



