
/* Light theme */
:root {
    --primary-bg: #ffffff;
    --primary-text: #000000;
  }
  
  .dark-theme {
    --primary-bg: #000000;
    --primary-text: #ffffffd0;
  }
  
  body {
    background-color: var(--primary-bg); 
    color: var(--primary-text);
    transition: background-color 0.3s, color 0.3s;
  }
  
p {
    color: #7e7e7e;
}
.f1{
   color: #d7d7d7 ;
}


h1,h2{
    color: #e5cb4e ;
}

.text-black{
    color: #000;
}


/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    /* background-color: #000; */
 }

 #spinner.show {
     transition: opacity .7s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
     /* background-color: #000; */
 }
/*** Spinner End ***/


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 400 !important;
    font-family: 'Playball', cursive !important;
    /* color: #e5cb4e; */
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Open Sans', sans-serif !important;
}

.my-6 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.py-6 {
    padding-top: 1.6rem;
    padding-bottom: 1.7rem;
}

@media (max-width: 768px) { /* Adjust for smaller screens */
    .py-6 {
        padding-bottom: 1.2rem; /* Reduce bottom padding */
    }

    .my-6{
        margin-bottom: 1.2rem;
    }
}


.wow,
.animated {
    animation-duration: 1.3s !important;
}


/*** Button Start ***/
.btn.btn-primary {
    border: 0;
    text-align: center;
}

.btn.btn-primary:hover {
    background: #E6C7A0 !important;
    color: #fff;   /* var(--bs-primary) !important */
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/


/*** Navbar Start ***/
.nav-bar {
    background: inherit;
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
    color: inherit;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #D4AF37; 
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .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;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
    color: #000;
}
/*** Navbar End ***/




/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: #D4AF37 !important; /* var(--bs-primary) */
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(255, 215, 0,0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}
/*** Events End ***/


/*** service start ***/

@media (max-width: 576px) {
    .service .col-sm-12 {
      width: 50%;
      flex: 0 0 50%;
      height: 50%;
    }
   

    .service-content{
        height: 80%;
    }
    .service-content::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        top: -30px;
        left: 0;
        bottom: 0;
        background: #e0bf30; /* var(--bs-primary) */
        border-radius: 8px;
        transition: 1s;
    }
    .service-content .mb-3{
        font-size: 18px;
    }
    
    .service-content .mb-4{
        font-size: 14px;
    }
  }
  

.mb-3{
    margin-top: 15px;
}

.icon {
    filter: brightness(0) saturate(100%) invert(66%) sepia(100%) saturate(300%) hue-rotate(0deg);
    transition: filter 0.3s ease-in-out;
}

.icon-card:hover .icon {
    filter: brightness(0) invert(1); /* White color on hover */
}



.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    
}









.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}


.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

/* Style for the card */
.icon-card {
    position: relative; /* Create a relative container for absolute positioning */
    text-align: center;
    width: 100%;
    /* height: 385px; */
    /* margin: 20px; */
    
    padding: 10px;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    transition: box-shadow 0.3s ease-in-out;
   
    /* margin-top: -20px; */
}

/* Default icon styling */
.icon-card .normal-icon {
    position: absolute; /* Overlap the hover icon */
   
    width: 64px;
    height: 64px;
    transition: opacity 0.1s ease-in-out;
    opacity: 1; /* Visible by default */
    /* top: -55px;
    left: 80px; */
}

/* Hover icon styling */
.icon-card .hover-icon {
    /* display: block; */
   
   
    width: 64px;
    height: 64px;
    transition: opacity 0.1s ease-in-out;
    opacity: 0; /* Hidden by default */
   
  
}

/* Change icon on hover */
.icon-card:hover .normal-icon {
    opacity: 0; /* Hide default icon */
}

.icon-card:hover .hover-icon {
    opacity: 1; /* Show hover icon */
}

@media (min-width:600px){
    
    
    .service-content{
        height: 365px;
    }
    .service-content::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        bottom: auto;
        background: #e0bf30; /* var(--bs-primary) */
        border-radius: 8px;
        transition: 1s;
    }
}


#img {
   align-content: center;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: #D4AF37; /* var(--bs-white) */
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;

}

.service-item:hover .service-content-icon a.btn-primary:hover{
    color: #fff;
}
/*** Services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** Youtube Video start ***/



/*** Blog Start ***/
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3)
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid #D4A017; /* var(--bs-primary) */
    padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: #e5cb4e !important;/* var(--bs-primary) */
}
/*** Footer End ***/




/* abt area covered------ */


.area-covered {
    font-size: 18px;
    font-weight: bold;
}
.locations {
    margin-top: 5px;
    line-height: 1.6;
    font-size: 17px;
}

.estd {
    font-size: 20px;
    font-weight: bolder;
    /* color: #D35400; Stylish color */
    margin-bottom: 10px;
}

/* call button */
.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #D4A017; /* Gold color */
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.call-button:hover {
    background-color: #FFD700; /* Brighter gold */
    transform: scale(1.1);
}

.call-button i {
    color: white;
}


/* event img */
.eimg{
    height: 310px;
    width: 300px;
    max-width: 350px;
    max-height: 350px;
}



/*abt vid*/


/* Default for large desktops */
.video video {
    width: 600px;
    height: 400px;
}

/* Medium screens: iPad Pro, tablets, small laptops */
@media (max-width: 1366px) {
    .video video {
        width: 100%;
        height: auto;
    }
}

/* Tablets and smaller devices (portrait mode, etc.) */
@media (max-width: 1024px) {
    .video video {
        width: 100%;
        height: auto;
    }
}

/* Phones */
@media (max-width: 768px) {
    .video video {
        width: 100%;
        height: auto;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .video video {
        width: 100%;
        height: auto;
    }
}

