@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&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');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


*{
    font-family: "Poppins", sans-serif;
}

h1, h2{
    font-family: "Playfair Display", serif;
}

:root{
    --primary: #ff6600;
    --secondary: #6ab450;
    /* --secondary: #02126a; */
}

a{
    text-decoration: none;
}


p{
    text-align: justify;
}


/**** Navbar Start ****/

.navbar{
    background-color: #ffff !important;
}

.navbar{
    z-index: 999999 !important; 
    width: 100%;
    transition: .5s ease-in-out;
}

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

.navbar-brand h2{
    color: #ff6600;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: #02126a;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

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

    
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler{
    border: none !important;
    box-shadow: none !important;
}

.menu{
    font-size: 25px;
    color: #02126a;
}

@media (max-width: 767px) {
    .navbar-brand img {
        width: 160px;
        height: auto;
    }

    .navbar-brand h4 {
        font-size: 16px; /* optional: text smaller in mobile */
    }
}

/**** Footer Start ****/

.footer{
    background-color: #000d29;
}

.footer h4{
    color: white;
}

.footer .footer-about a{
    color: white;
}

.footer .footer-about p{
    color: white;
}

.footer .footer-links i{
    color: var(--primary);
}

.footer .footer-links ul li{
    transition: .5s all ease-in-out;
}

.footer .footer-links ul li:hover{
    letter-spacing: 2px;
}

.footer .footer-links a{
    color: white;
}

.footer .footer-contact i{
    color: white;
}

.footer .footer-contact span{
    color: white;
}

.footer .footer-socialmedia .icon{
    font-size: 25px;
    color: white;
    border: 1px solid white;
    padding: 7px;
    transition: .5s all ease-in-out;
}

.footer .footer-socialmedia .icon:hover{
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer .copyright a{
    color: #807f7f;
    transition: .5s all ease-in-out;
}

.footer .copyright a:hover{
    color: white;
}



/**** Carousel Start ****/

.main-slider img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.slider h2{
    font-size: 50px;
    font-weight: 500 !important;
    color: white;
    font-family: "Old Standard TT", serif;
}

.slider h2 span{
    font-size: 50px;
    font-weight: 500 !important;
    color: var(--primary);
    font-family: "Old Standard TT", serif;
}

.slider p{
    font-size: 20px;
    letter-spacing: 2px;
}

@media(max-width:991px){
    .slider h2{
        font-size: 35px !important;
    }
    .slider h2 span{
        font-size: 35px;
    }
    .slider p{
        font-size: 18px;
        letter-spacing: 0px;
    }
}

.slider .item{
    z-index: -999;
}

.slider .item .container{
    z-index: 999;
}

@media(max-width:768px){
    .slider .item .container{
        margin-top: 90px !important;
         /* padding: 290px 50px !important; */
    }
    .main-slider img{
        height: 60vh !important;
        width: 100%;
        object-fit: cover;
    }
}

.slider .item::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    left: 0;
    background-color: #00000069;
    background-blend-mode: multiply;
}


/**** Page Header Start ****/

.bg-breadcrumb {
    background: linear-gradient(#0007009f, #0000009c), url(../imgs/im5.jpg);
    /* background-position: center; */
    background-repeat: no-repeat;
    /* background-size: cover !important; */
    /* object-fit: cover !important; */
    background-size: cover !important;
    /* background-attachment: fixed; */
    padding: 180px 0 50px 0;
}

@media(max-width:768px){
    .bg-breadcrumb{
        padding: 50px 0 50px 0 !important;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: white !important;
}





/**** Features ****/

.cards{
    transition: .5s all ease-in-out;
}

.cards:hover{
    box-shadow: 10px 10px 40px #bdbdbd !important;
}


.fea-icon{
    font-size: 35px;
    /* color: var(--primary); */
}



/**** About ****/

.about{
    position: relative;
}

.abt-img{
    background-image: url(../imgs/im10.jpg);
    /* background-size: cover;
    object-fit: cover; */
    background-attachment: fixed;
    z-index: 1111;
    height: 600px;
    width: 100%;
}







/**** Services ****/


.index_service_carousel img{
    height: 550px;
    width: 100%;
    object-fit: cover;
}

.index_service_carousel .owl-nav {
    position: absolute;
    content: "";
    display: flex;
    /* flex-direction: column; */
    width: 100%;
    justify-content: end;
    align-items: end;
    top: -10%; 
    right: 0% !important;
}  

.index_service_carousel .owl-nav button span{
    background-color: var(--primary);
    padding: 20px;
    
}

.index_service_carousel .owl-prev:hover{
    background-color: transparent !important;
    box-shadow: none !important;
}

.index_service_carousel .owl-next:hover{
    background-color: transparent !important;
    box-shadow: none !important;
}

.index_service_carousel .owl-theme .owl-nav:hover{
    background-color: transparent !important;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 0px !important;
    padding: 0px !important;
    background: transparent !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.text-c{
    color: var(--primary);
}

.service_container h1{
    font-size: 70px;
    font-family: "Old Standard TT", serif;
} 

.service_container h1 span{
    font-size: 70px;
    font-family: "Old Standard TT", serif;
    color: var(--primary);
}

.service_container .cads{
    position: relative;
    overflow: hidden;
}


.service_container .cads .cads-info{
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.service_container .cads .cads-info-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.service_container .cads .cads-info-content h4{
    color: white;
    font-weight: 500;
    margin-bottom: 2px;
    font-size: 18px;
}

.service_container .cads .line{
    height: 0px;
    width: 95px;
    border: 1px solid white;
}

.service_container .cads:hover .cads-info{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.service_container .cads:hover .cads-info-content{
    bottom: 60px;
    transition: bottom 0.4s;
}

.services img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}





/**** Banner ****/

.banner{
    background-color: var(--secondary);
    background-image: url(../imgs/pattern.webp);
}

.banner h2{
    font-size: 45px;
}

.banner p{
   line-height: 35px;
}


/**** Why Choose Us ****/

.why-icon{
    font-size: 20px;
    color: var(--primary);
}

.whychoose{
    margin-top: 30%;
}



/**** Gallery ****/


.gallery-item {
    overflow: hidden;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
}
  
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
  
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}
  
.gallery-img{
    height: 450px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}



/**** Contact ****/

.contact .contact-infos{
    padding: 30px 30px;
    background-color: #f5f5f5;
}

.contact .contact-infos i{
    font-size: 15px;
    color: white;
    background-color: var(--primary);
    padding: 10px;
}

.contact input{
    box-shadow: none !important;
    border-radius: 0px !important;
}

.contact textarea{
    box-shadow: none !important;
    border-radius: 0px !important;
}
.contact-btn{
     background-color: var(--secondary) !important;
     border-radius: 50px !important;
     border: 1px solid var(--secondary) !important;
     color: white !important;
     transition: .5s all ease-in-out !important;
     transition-delay: 0s, 0.7s;
}
.contact-btn:hover{
    background-color: transparent !important;
    color: var(--primary) !important;
}

.contact h1 {
  color: var(--primary);
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  text-align: left;
  border-top: 4px solid var(--secondary);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-top: 4px solid var(--primary);
}

.contact-card .icon {
  color: var(--primary);
  background: #fff3eb;
  padding: 15px;
  border-radius: 50%;
}

/* Form Style */
.form-card {
  background: #fff;
  border-top: 5px solid var(--primary);
}

.form-card h3 {
  color: var(--secondary);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(255,102,0,0.25);
}

.btns {
  background: var(--primary);
  color: #fff;
  border: none;
  transition: 0.3s ease-in-out;
  border-radius: 8px;
}

.btns:hover {
  background: var(--secondary);
  color: #fff;
}