:root {
    --base-bodyfont: 'Kumbh Sans', sans-serif;
    --base-bodyfont-Size: 16px;
    --base-bodyfont-color: #525252;
    --base-skin: #f6b600;
    --base-dark: #000000;
    --base-dark-02: #0d0d0d;
    --base-grey: #f1f6fa;
    --base-lightgrey: #f9f4f0;
    --base-white: #ffffff;
    --base-headingfont: 'Krona One', sans-serif;
    --base-headingfont-color: #000000;
}
::selection {
    background: #000000;
    color: #fff;
    text-shadow: none;
}

.site-branding a.home-link img {
    margin-top: -10px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
}

.heroslider .swiper-button-prev:after,
.swiper-rtl .heroslider .swiper-button-next:after {
    content: 'prev';
    font-size: 20px;
    color: #fff;
}

.heroslider .swiper-button-next:after,
.swiper-rtl .heroslider .swiper-button-prev:after {
    content: 'next';
    font-size: 20px;
    color: #fff;
}

.heroslider .swiper-button-next,
.swiper-rtl .heroslider .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
    background: black;
    height: 48px;
    width: 48px;
    border-radius: 50%;
}

.heroslider .swiper-button-prev,
.swiper-rtl .heroslider .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
    background: black;
    height: 48px;
    width: 48px;
    border-radius: 50%;
}


.slider-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.slider-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.slide-text h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin: 20px 0px;
    text-transform: uppercase;


}

.slide-text h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    margin: 20px 0px;
    text-transform: uppercase;


}

.slide-text p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.slide-text {
    text-align: left;
}

.slider-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pro-title {
    font-size: 70px;
    font-weight: 800;
    color: #f6b600;
    margin-bottom: 15px;
}


/* .slide-image img {
     filter: drop-shadow(2px 3px 0px white); 
    
}*/


#site-header-menu .site-navigation ul.menu>li>a.arrow:after {
    position: absolute;
    content: "\f107" !important;
    font-family: "FontAwesome";
    font-size: 14px;
    margin-left: 4px;
    margin-top: 0px;
    font-weight: normal;
}

#site-header-menu .site-navigation ul.menu>li>a:after {
    position: absolute;
    content: "";
    font-family: "FontAwesome";
    font-size: 14px;
    margin-left: 4px;
    margin-top: 0px;
    font-weight: normal;
}

.section-title h2.title {
    font-weight: 600;
    font-size: 40px;
    line-height: 65px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #383838;
}

.section-title h2.title.style1 {
    font-weight: 400;
    font-size: 52px;
    line-height: 69px;
    margin-bottom: 25px;
}

.fetu {
    text-align: center;
}

.fetu img {
    margin-bottom: 15px;
}

.prt-fid.inside.style1,
.prt-fid-title.style1 {
    padding: 30px;
    height: 100%;
    box-shadow: 0px 5px 0px #f6b600;
}

.col-bg-img-two.prt-col-bgimage-yes>.prt-col-wrapper-bg-layer {
    background-image: url(../images/tarleimg/bgimg.jpg);
    background-repeat: no-repeat;
}



/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    /* padding: 20px; */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s linear;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all linear 0.5s;
}

/* Hover Effect: Brightness + Overlay */
.gallery-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translate(0, 0);
    transition: all 0.5s linear;
}

.gallery-item:hover img {
    filter: brightness(130%);
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(6px, 6px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 26%;
    max-height: 100%;
}

.modal-content img {
    width: 500px;
    height: 500px;
    border-radius: 8px;
    text-align: justify;
}

.close-btn {  position: absolute;
    top: 11px;
    right: 7px;
    background: #FFC107;
    color: #333;
    border: none;
    font-size: 26px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: translateY(-50%); */
    padding: 10px;
}

.galleryy {
    background-color: #f5fcfc;
    padding: 50px 0px !important;
}


.comment-form input, .comment-form textarea, .comment-form select, .comment-form label, .comment-form button {border-radius: 10px;
    vertical-align: middle; color: #000; width: 100%;  padding: 12px 15px; font-weight: 400; background-color: var(--base-lightgrey); text-transform: inherit; border: 1px solid transparent; font-size: 14px; line-height: inherit;}
.comment-form select { color: #838383;}
.vision-mission { padding: 80px 0px;}
.vision-mission .vmcontent { padding: 20px; border: 1px solid #d7d7d7; border-radius: 10px; background-color: #f1efef; height: 100%;}
.vision-mission .vision { margin-top: 40px;}
.vision-mission .vmcontent img { width: 60px;}
.vision-mission .vmcontent h3 { font-size: 25px; font-weight: 600; margin-top: 15px; margin-bottom: 10px; color: #f6b600;}
.vision-mission .vmcontent p { font-size: 18px; color: #000; line-height: 1.6; margin-bottom: 0px;}
.tab-img { width: 100%; height: auto;}
.tan-img img { width:80%; height: auto;}
.tab-clickimg { width: 100%; height: auto;}
.tab-clickimg img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid #ffffff; transition: all linear 0.5s;}
.prt-tabs.prt-tab-style-02 { height: 100%!important;}
.tablecontetn table th {  font-weight: 500; text-transform: uppercase; }




@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media screen and (max-width:767px) {

    .pro-title {
        font-size: 45px;
    }

    .modal-content {
        position: relative;
        max-width: 100%;
        max-height: 100%;
    }

    .modal-content img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        text-align: justify;
    }


    .gallery {
        display: grid;
        gap: 10px;
        /* padding: 20px; */
    }

    .slide-text h1,
    .slide-text h2 {
        font-size: 26px;
    }

    .slide-text p {
        font-size: 16px;
    }

    .slider-content {
        width: auto;

    }

    .site-branding a.home-link img {
        margin-top: -22px;
        width: 120px !important;
    }

    .section-title h2.title {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-title h2.title.style1 {
        font-size: 30px;
        line-height: 1.3;
    }
}



/* Dropdown menu (base) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* below parent */
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
   

}

/* Show dropdown only when hovering on .dropdown */
.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown link styles */
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
   
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
  background: #f6b600;
  color: #fff;
  border-radius: 6px;
  outline: none;
}

/* Arrow after Products text */
.arrow::after {
  content: " ▾";
  font-size: 0.85em;
}

/* Style for nested (right side) dropdown */
.dropdown-menu > li.dropend {
  position: relative;
}

.dropdown-menu .sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  min-width: 200px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  pointer-events: none; /* prevents accidental hover */
   
}

/* Show sub dropdown on hover of parent */
.dropdown-menu li.dropend:hover > .sub-dropdown {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Optional hover arrow styling */
.dropend > a::after {
   
  float: right;
  font-size: 0.85em;
  color: #999;
}

/* Mobile-friendly layout */
@media (max-width: 720px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .dropdown-menu {
    position: static;
    margin-top: 6px;
    box-shadow: none;
    opacity: 1 ;
    transform: none;
  }
  .dropdown-menu .sub-dropdown {
    position: static;
    margin-left: 0;
    box-shadow: none;
    opacity: 1 ;
    transform: none;
    pointer-events: auto;
  }
}

.team-card__image {
    position: relative;
    z-index: 2;
    background-color: var(--alefox-white, #fff);
    border-radius: 50%;
    width: 320px;
    height: 320px;
    margin: 40px;
    overflow: hidden;
    padding: 0px;
}
.team-card__content {
    position: absolute;
    z-index: 3;
    bottom: -54px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 270px;
    margin: 0 auto 0;
    background-color: var(--alefox-white, #fff);
    border-radius: 10px;
    text-align: center;
    padding: 25px 20px 22px;
    transition: all 500ms ease;
    filter: drop-shadow(0 0 68px rgba(0, 0, 0, 0.06));
}