@import url('../../../css2');
/* font-family: "Roboto", sans-serif; */
@import url('../../../css2-1');
/* font-family: "Roboto Slab", serif; */
@import url('../../../css2-2');
/* font-family: "Tiro Devanagari Hindi", serif; */
@import url('../../../css2-3');
/* font-family: "Noto Naskh Arabic", serif; */
@import url('../../../css2-4');
/* font-family: "Arima", system-ui; */
@import url('../../../css2-5');
/* font-family: "Merriweather", serif; */
@import url('../../../css2-6');
/* font-family: "Literata", serif; */

/********************************************
    Common CSS Here
********************************************/
:root {
    --common-font: "Roboto", sans-serif;
    --hindi-font: "Tiro Devanagari Hindi", serif;
    --urdu-font: "Noto Naskh Arabic", serif;
    --menu-font: "Arima", system-ui;
    --dark-black: #1f1f1f;
    --cyan: #198eb1;
    --orange: #d95600;
}

html, body {scroll-behavior: smooth;}

body {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {text-decoration: none;}
.bold {font-weight: bold;}
.italic {font-style: italic;}
.mob-view {display: none;}
.desk-view {display: block;}

/********************************************
    Header Begin Here
********************************************/
#header {
    background-image: url("../img/header-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #fff;
}

#header .container {
    display: flex;
    align-items: center;
    gap: 70px;
}

#header .logo {max-width: 444px;}

.header-right {
    width: calc(100% - 514px);
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.upcoming-btn a {
    display: block;
    font-family: "Roboto Slab", serif;
    font-size: 19px;
    font-weight: 600;
    background-color: #F5D874;
    color: #4a0747;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s;
}

.upcoming-btn a:hover {
    background-color: #4184a5;
    color: #fff;
}

.language {
    display: flex;
    gap: 10px;
}

.language a {
    display: block;
    border: 2px solid #ffe99b;
    border-radius: 4px;
    color: #000D19;
    padding: 8px 15px;
    transition: all 0.3s;
}

.language a:hover {
    border-color: #72a2b9;
    color: #316c8a;
}

.language a.hindi {
    font-family: var(--hindi-font);
    font-size: 19px;
    line-height: 26px;
    padding-bottom: 3px;
}

.language a.urdu {
    font-family: var(--urdu-font);
    font-size: 22px;
    line-height: 21px;
    padding-top: 6px;
    padding-bottom: 10px;
}

/********************************************
    Navbar Begin Here
********************************************/
#navbar {background-color: var(--orange);}

#navbar .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.directory-btn a {
    display: flex;
    gap: 5px;
    font-family: var(--common-font);
    font-size: 13px;
    font-weight: 500;
    line-height: 4px;
    border: 1px solid #ee8f4f;
    background-color: #eb5e00;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    transition: all 0.3s;
}

.directory-btn a:hover {
    border-color: #ffb27f;
    background-color: #ff7a21;
}

.directory-btn a .btn-txt {
    display: flex;
    flex-direction: column;
}

.directory-btn a .btn-txt .hindi {
    font-family: var(--hindi-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: end;
    gap: 30px;
}

.menu > .menu-item > a {
    font-family: var(--menu-font);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: all 0.2s;
    position: relative;
}

.menu .menu-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 16px;
}

.menu .menu-item a .hindi {
    font-family: var(--hindi-font);
    font-size: 16px;
    line-height: 20px;
}

.menu > .menu-item > a:hover {color: var(--dark-black);}
.menu-item-has-children {position: relative;}
.menu-item-has-children > a {padding-right: 21px;}

.menu-item-has-children > a::after {
    content: '';
    background-color: #fff;
    width: 10px;
    height: 2px;
    position: absolute;
    top: 18px;
    right: 0;
}

.menu-item-has-children > a::before {
    content: '';
    background-color: #fff;
    width: 2px;
    height: 10px;
    position: absolute;
    top: 14px;
    right: 4px;
    transition: transform 0.4s;
}

.menu-item-has-children:hover > a::before {
    transform: scale(0);
}
.menu-item-has-children:hover > a::after, .menu-item-has-children:hover > a::before {background-color: var(--dark-black);}
.menu-item-has-children:hover a {color: var(--dark-black);}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    top: calc(100% + 9px);
    visibility: visible;
    transition: all 0.4s;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -10px;
    z-index: 99;
    min-width: 210px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    border-top: 4px solid var(--orange);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 5px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
}

.sub-menu::before {
    content: "";
    width: 100%;
    height: 9px;
    background-color: transparent;
    position: absolute;
    top: -13px;
    left: 0;
    z-index: 1;
}

.sub-menu::after {
    content: "";
    border: 9px solid transparent;
    border-bottom-color: var(--orange);
    position: absolute;
    top: -22px;
    left: 20px;
    z-index: 2;
}

.sub-menu .menu-item a {
    align-items: start;
    font-family: var(--menu-font);
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    color: var(--dark-black);
    border-bottom: 1px dashed #f1f1f1;
    padding: 10px 15px;
    transition: all 0.3s;
}
.sub-menu .menu-item:last-child a {border: none;}

.sub-menu .menu-item a:hover {
    color: #000;
    background-color: #ffe5d5;
}

/********************************************
    Slider Banner Begin Here
********************************************/
.slider-banner {background-color: #fff;}
.slider-banner .slider-img img.mob-view {display: none;}

/********************************************
    Tag Line Begin Here
********************************************/
.tagLine {
    background-color: #fff;
    font-family: "Merriweather", serif;
    text-align: center;
    padding: 70px 0;
}

.tagLine h1 {
    font-size: 35px;
    margin-bottom: 10px;
}

.tagLine h4 {
    font-size: 20px;
    color: #940045;
    margin-bottom: 0;
}

/********************************************
    About Brief Begin Here
********************************************/
.about-brief {
    background-color: #fff;
    font-family: "Literata", serif;
    padding: 80px 0;
}

.about-brief .container {
    display: flex;
    gap: 40px;
}

.brief-thumb {width: 380px;}
.brief-thumb img {border-radius: 10px;}
.brief-content {width: calc(100% - 420px);}

.brief-content h2 {
    font-size: 34px;
    font-weight: 600;
    color: #0079AB;
    margin-bottom: 10px;
}

.brief-content h3 {
    font-size: 25px;
    font-weight: 500;
    color: #515151;
    margin-bottom: 20px;
}

.brief-content p {
    font-size: 17px;
    font-weight: 400;
    color: #515151;
    margin-bottom: 20px;
}

/********************************************
    Page Content Section
********************************************/
.page-txt {font-family: "Merriweather", serif;}

.page-txt h3 {
    font-size: 21px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-txt ul {list-style: disc;}
.page-txt ol {list-style: decimal;}

.page-txt ul, .page-txt ol {
    padding-left: 30px;
    margin-bottom: 30px;
}
.page-txt ul li, .page-txt ol li {margin-bottom: 10px;}

/********************************************
    Our Team Section
********************************************/
.page-content {
    margin-top: 60px;
    margin-bottom: 90px;
}

.main-hd {
    font-family: "Merriweather", serif;
    font-size: 24px;
    font-weight: 600;
    color: #524f4f;
    margin-bottom: 35px;
    text-align: center;
}

.sub-hd {
    font-family: var(--menu-font);
    font-size: 22px;
    font-weight: 600;
    color: #575757;
    border-bottom: 1px solid #ccc;
    margin-bottom: 35px;
    padding-top: 10px;
    padding-bottom: 4px;
}

.team-tab {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.team-tab a {
    display: block;
    font-family: "Roboto Slab", serif;
    font-size: 15px;
    font-weight: 300;
    background-color: #91344b;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 5px 15px;
    transition: background-color 0.3s;
}

.team-tab a:hover {
    color: #91344b;
    border-color: #91344b;
    background-color: #fff;
    font-weight: 400;
}

.team-profile {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.single-team-profile {
    width: calc(20% - 12px);
    overflow: hidden;
    border: 1px solid #ebe5e5;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.single-team-profile:hover {transform: translateY(-4px);}
.profile-details {padding: 7px 5px 12px 5px;}
.profile-designation {text-align: center;}

.profile-designation h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}

.profile-designation p {
    font-style: italic;
    font-size: 14px;
    color: #7a7a7a;
    line-height: 18px;
    margin-bottom: 0;
}

/********************************************
    Footer Begin Here
********************************************/
.footer {
    font-family: var(--common-font);
    background-color: #22589C;
    position: relative;
    z-index: 9;
}

.footer::before {
    content: "";
    width: 100%;
    height: 65px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer-block {
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    gap: 60px;
}

.left-col {
    max-width: 335px;
    border-right: 1px solid #c5c5c5;
    padding-right: 45px;
}

.footer-logo {
    max-width: 290px;
    border-bottom: 1px solid #c5c5c5;
    padding-bottom: 15px;
}

.footer-desc p {
    font-size: 13px;
    color: #323232;
    margin-bottom: 0;
    padding-top: 4px;
}

.contact-info {
    margin-top: 45px;
    margin-bottom: 20px;
}

.contact-info ul li {
    font-size: 15px;
    color: #494949;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #c5c5c5;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.contact-info ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-info ul li a {color: #494949;}
.contact-info ul li a:hover {color: var(--orange);}

.social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-media p {
    font-size: 12px;
    color: #494949;
    margin-bottom: 0;
}

.social-media ul {
    display: flex;
    gap: 4px;
}

.social-media ul li a {
    display: block;
    font-size: 13px;
    color: #fff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid;
    transition: all 0.3s;
}

.social-media ul li a:hover {background-color: transparent !important;}
.social-media ul li a.facebook {background-color: #3E54AA;}
.social-media ul li a.twitter {background-color: #61B9FF;}
.social-media ul li a.instagram {background-color: #E14D93;}
.social-media ul li a.youtube {background-color: #FF2D3D;}

.social-media ul li a.facebook:hover {
    color: #3E54AA;
    border: 1px solid #3E54AA;
}

.social-media ul li a.twitter:hover {
    color: #61B9FF;
    border: 1px solid #61B9FF;
}

.social-media ul li a.instagram:hover {
    color: #E14D93;
    border: 1px solid #E14D93;
}

.social-media ul li a.youtube:hover {
    color: #FF2D3D;
    border: 1px solid #FF2D3D;
}
.middle-col {width: calc(100% - 600px);}

.middle-col ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 15px;
}
.middle-col ul li {width: calc(50% - 15px);}

.middle-col ul li a {
    display: inline-block;
    font-size: 14px;
    color: #494949;
    transition: all 0.3s;
}

.middle-col ul li a:hover {color: var(--orange);}
.right-col {width: 205px;}

.copyright {
    text-align: center;
    padding: 20px;
}

.copyright p {
    font-size: 15px;
    font-weight: 300;
    color: #f1f1f1;
    margin-bottom: 0;
}
.slider-banner .owl-carousel .slider-img img {
    height: 80vh;
    width: 100%;
    object-fit: cover; 
}
.desk_banner { display: block; }
.mobile_banner { display: none; }

@media screen and (max-width: 767.98px) {
  .desk_banner { display: none; }
  .mobile_banner { display: block; }
  .slider-banner .owl-carousel .slider-img img {
    height: 100vh;
    
}
}



.gallery-box .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-box .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.gallery-box .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.75rem;
  transition: transform 0.4s ease;
}

.gallery-box .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-box .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.gallery-box .gallery-item:hover .gallery-caption {
  opacity: 1;
}
