* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Philosopher', sans-serif;
}
body{
    top: 0 !important;
}
.skiptranslate{
    display: none;
}
.langdiv {
    background-color: green;
    padding: 0.5rem;
}
.langbtn{
    background-color: #fdec00;
    color: #9d0902;
    padding: 0.25rem 1.25rem;
}
p b{
color: green;
font-size: 18px;
}
.cursor{
    cursor: pointer;
}
a {
    text-decoration: none !important;
}

p {
    color: rgb(218, 15, 15);
}
hr{
    color: #fff !important;
}
ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
ol{
    padding-left: 1rem !important;
}
ul li {
    list-style: none;
}

.greentext {
    color: green;
    font-weight: 600;
}

.mainheadingdiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
}

.mainheadingdiv img {
    margin: 1rem 0;
}

@media (min-width:992px) {
    .mainheadingdiv p {
        width: 60%;
    }
}

.button {
    color: #000;
    background-color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 700 !important;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border: 2px solid #fff;
}

.button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    /* background: linear-gradient(90deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%); */
    border-radius: 30px;
    transition: 0.3s;
    z-index: 0;
    border: none;
}

.button span {
    position: relative;
    z-index: 1;
}

.button:hover::after {
    width: 100%;
}

.button:hover {
    color: #fff;
}

/* header */
header {
    background-color: #9d0902;
    position: sticky;
    top: 0;
    z-index: 99;
}

.toppestnav {
  
   
    padding: 1rem 0;
    background-color: #9d0902;
}

.toppestnav a {
    color: #fff;
    transition: 0.3s;
}
.toppestnav .container{
  display: flex;
    align-items: center;
     flex-wrap: wrap;
    column-gap: 2.5rem;
    row-gap: 0.5rem;
}
.bottomnav {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottomnav ul {

    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.bottomnav ul li a {
    color: #fff;
    font-size: 1.25rem;
    transition: 0.3s;
}

.bottomnav i {
    color: #fff;
    font-size: 1.25rem;
}

.bottomnav ul li:hover a,
.toppestnav a:hover,
.bottomnav i:hover,
.bottomnav ul li a.active,
.toppestnav a.active
 {
    color: #f7e034;
}

/* maindropdown */
.maindropdown{
    position: relative;

}
.maindropdown i{
display: inline-block;
transition:transform 0.3s ease;

}
.maindropdown:hover i{
    transform: rotate(90deg);
}
.maindropdown_sublist{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #9d0902;
   
    width: 150px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}
.maindropdown:hover .maindropdown_sublist{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.maindropdown_sublist ul li{
   padding: 1rem;
   border-bottom: 1px solid #fff;
}
  .menudropdown i {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .menudropdown i.active {
            transform: rotate(90deg);
        }
.menudropdown_sublist{
  display: none;
}
.menudropdown_sublist.active{
     display: block; 
}

/* menu */

.menu{
    width: 280px;
    height: 100vh;
    background-color: #9d0902;
    color: #fff;
    position: fixed;
    left: -350px;
    top: 0;
    z-index: 99;
    transition: 0.3s;
}
.menu ul li{
   padding: 1rem;
   border-bottom: 1px solid #fff;
   cursor: pointer;
}

.menu ul li:hover, .menu ul li.active{
   color: #f7e034;

}
.closingdiv{
    text-align: end;
    padding: 1rem;
}
.closingdiv i{
    font-size: 1.25rem;
    cursor: pointer;
}
/* banmner */
.bannerdiv {
    background-image: url(../images/banner\ copy.jpg.jpeg);
     /* background-image: url(../images/bannerimg.jpg); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    position: relative;
    padding-bottom: 100px;
 z-index: 0; /* ✅ keep it normal */
}
@media screen and (orientation: portrait) {
    .bannerdiv {
        background-image: url("../images/potrait\ banner\ copy.jpg.jpeg");
         background-position: top;
    }
}
.bannerdiv .container{
      position: relative;  /* 🔑 REQUIRED */
    z-index: 2;

}
.bannerdiv::after{
    content: "";
    position: absolute;
    top: 00;
    left: 00;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.bannerdiv h1 {
    font-size: 3.5rem;
}

.bimg_hand_bg {
    animation: rotation 10s linear infinite;
}

.bimg_hand {
    position: absolute;
    width: 200px;
}

@keyframes rotation {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.shapeimg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transform: rotate(180deg);
}

@media (max-width:576px) {
    .bannerdiv {
        padding-bottom: 50px;
    }

    /* .bimg_hand {
        width: 50%;
    } */
}

@media (min-width:768px) {
    .bannerdiv p {
        width: 80%;
    }
}

@media (max-width:1200px) {
    .bannerdiv h1 {
        font-size: 2rem;
    }
}

/* small banner */
.smallbanner{
    height: 50vh; 
    position: relative;
    z-index: 0;
}
.smallbanner::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    z-index:1;
}
.smallbanner .smimg{
width: 100%;
height: 100%;
object-fit: cover;
    object-position: top;
}
.smallbannerdiv{
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.smallbannerdiv a{
    color: #fff;
}
/* about section */


.paradiv {
    position: relative;
    padding-left: 1rem;
}
.paradiv p{
    margin-bottom: 0;
    /* font-size: 14px; */
}

.paradiv::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(90deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
}

.yrofexp {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    color: #fff;
    line-height: 1;
    padding: 0 1.5rem;
    border: 4px solid #fff;
    border-radius: 50px 5px 10px 10px;
}

.yrofexp h1 {
    font-size: 3.5rem;
}

@media (max-width:576px) {
    .yrofexp h1 {
        font-size: 2.5rem;
    }
}

/* services section */
.serviceimg1 {
    animation: rotation 10s linear infinite;
}

.serviceimg2 {
    position: absolute;
   width: 60%;
aspect-ratio: 1 / 1;
}

@media (max-width:1200px) and (min-width:768px) {
   .serviceimg2 {
   width: 40%;
}
}

.carddiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgb(216, 216, 216);
    position: relative;
    cursor: pointer;
}

.carddiv img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    opacity: 0;
    animation: rotation3 10s linear infinite;
    transform: translate(-50%, -50%);
}

.carddiv:hover {

    background: linear-gradient(90deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    color: #fff;
    border: 2px solid #fff;
}

@keyframes rotation3 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.carddiv:hover img {
    opacity: 0.8;
}

.as_icons {
    margin-bottom: 1rem;
}

.as_icons svg {
    fill: rgb(243, 115, 53);
}

.carddiv:hover .as_icons svg {
    fill: #fff;
}



/* testimonial */
.test_desc {
    background: linear-gradient(90deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 10px;
    position: relative;
    text-align: center;
   box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.test_desc h6{
    font-weight: 900;
    margin-top: 1rem;
}

@keyframes rotation2 {
    0% {
        transform: translateY(-50%) rotate(0);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.test_desc img {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    animation: rotation2 10s linear infinite;
}
@media (max-width:768px) {
  .test_desc {
     padding: 2rem;
  }
}

/* footer */
footer {
    color: #fff;
    background-image: url(../images/banner\ copy\ 1.jpg.jpeg);
    /* background-image: url("../images/bannerimg.jpg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    line-height: 1.8;
    position: relative;
    z-index: 0;
}
/* @media screen and (orientation: portrait) {
    .footer {
        background-image: url("../images/potrait\ banner\ copy.jpg.jpeg");
         background-position: top;
    }
} */
footer::after{
    content: "";
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(157, 10, 2, 0.8);
    z-index: 1;
}
.footerdiv{
    position: relative;
    z-index: 2;
}
footer a {
    color: #fff;
    transition: all 0.3s;
}

footer a:hover {
    color: #f7e034;
}

footer h3 {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.footerimg {
    position: absolute;
    top: 0;
    width: 100%;
}

.iconss i {
    background-color: #f7e034;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #9d0902;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}


.iconss i:hover {
    background-color: #e7d130;
}


/* our packages */

.ourpackagescard .row > [class*="col-"] {
    display: flex;
}

.ourpackagescard {
    color: #fff;
     display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.ourpackagescard h5 {
    background-color: #f8a01a;
    padding: 1rem;
    text-align: center;
    border-radius: 0 0 50% 50%;
    border-bottom: 2px solid #fff;
    /* border-top: 1px solid #fff; */
}
.ourpackagescard_desc {
    max-height: 280px;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;                /* Firefox */
    scrollbar-color: #f8a01a rgba(255,255,255,0.2); /* Firefox */
    flex-grow: 1;
}

/* Chrome, Edge, Safari */
.ourpackagescard_desc::-webkit-scrollbar {
    width: 8px;
}

.ourpackagescard_desc::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.ourpackagescard_desc::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f8a01a, #f37335);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ourpackagescard_desc::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffb347, #ff7b42);
}

.ourpackagescard_desc ol li {
    list-style: none;
}

.ourpackagescard:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.ourpackagescard h4 {
    background-color: #f8a01a;
    padding: 1rem;
    text-align: center;
    margin-bottom: 0;
    border-radius:50% 50% 10px 10px;
    border-top: 2px solid #fff;
cursor: pointer;
}
.ourpackagescard img{
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top;
}
/* brahmanbhoj */
.brahmanbhoj{
    background-color: #fdec00;
}
.brahmanbhoj p{
    color: #9d0902;
    font-weight: 500;
}

/* gallery */

.gallerydiv .col-xl-3 div{
    overflow: hidden;
  border: 2px solid #f8a01a;
  border-radius: 10px;
}

.gallerydiv .col-xl-3 > div img {
    transition: all 0.3s;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
}
.gallerydiv .col-xl-3 > div:hover img{
transform: scale(1.1);
}


/* contact us */
.cntinfo{
    width: 100%;
    background-color: rgba(250, 235, 215, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cntinfo > div{
display: flex;
gap: 1rem;
align-items: center;
}
.cntinfo > div i{
color: #f8a01a;
border: 2px solid #f8a01a;
padding:  0.35rem 0.65rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
aspect-ratio: 1 / 1;
}
.cntinfo iframe{
    width: 100%;
    height: 350px;
} 
.cntform{
    width: 100%;
}
.cntform form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
gap: 1rem;
}
.cntform form input, .cntform form textarea{
width: 100%;
padding: 1rem;
border-radius: 10px;
 border: 1px solid rgb(198, 196, 196) ;
}
.cntform form input:focus-visible, .cntform form textarea:focus-visible{
 outline: 1px solid #f8a01a;
  border:none ;
  box-shadow: 2px 2px 2px #f8a01a;
}

/* login page */

.loginform form{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
gap: 1rem;
}
.loginform form input, .loginform form textarea, .loginform form select{
width: 100%;
padding: 1rem;
border-radius: 10px;
 border: 1px solid rgb(198, 196, 196) ;
}
.loginform form input:focus-visible, .loginform form textarea:focus-visible, .loginform form select:focus-visible{
 outline: 1px solid #f8a01a;
  border:none ;
  box-shadow: 2px 2px 2px #f8a01a;
}
.loginform .container{
    background-image: url("../images/login_bg.jpg");
/* background-size: cover; */
background-repeat: repeat;
background-position: center;
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
 border: 1px solid rgb(218, 216, 216);
}
.loginform .showform{
    display: none;
}

/* privacy policy */
.ppdesc .container{
    padding: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
 border: 1px solid rgb(218, 216, 216);
}
.privacycontent h3 {
    margin-top: 1.5rem;
    font-weight: 600;
}

.privacycontent p,
.privacycontent ul {
    color: #555;
    line-height: 1.7;
}

.privacycontent ul {
    padding-left: 1.2rem;
}

/* career */
.study_desc{
  background-color: #f7fbfe;
    background-size: cover;
    border: 2px solid rgb(197, 196, 196);
    padding: 1rem 2rem;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
 box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.05) 0px 8px 16px -8px;
   border-radius: 10px;
   transition: 0.3s;
}
.study_desc p{
    margin-bottom: 0;
}
.study_desc:hover{
    transform: translateY(-5px);
}