  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /*  
  font-family: "Marcellus", serif;
  font-family: "Lato", sans-serif;
  */
  body {
    background: #fff;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    font-family: "Lato", sans-serif;
  }

  a {
    text-decoration: none;
    background: transparent;
    color: #fff;
    transition: 0.4s all ease;
  }

  a:hover {
    color: #fff;
  }

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

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 400;
    font-family: "Marcellus", serif;
  }

  p {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 0rem;
    color: #5f5f5f;
    font-weight: 400;
  }

  section {
    padding: 80px 0;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }

  /* SITE BTN */
  .site-btn {
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    color: var(--s-white);
    font-weight: 500;
    text-align: center;
    padding: 13px 25px;
    background-color: var(--s-primary);
    border: 1px solid var(--s-primary);
    border-radius: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    transition: all 0.5s;
    letter-spacing: 1.5px;
  }

  .site-btn:hover {
    color: var(--s-white);
    border: 1px solid var(--s-secondary);
    background-color: var(--s-secondary);
  }

  .revSite-btn {
    background-color: #fff;
    color: var(--s-primary);
    border-color: #fff;
  }

  .revSite-btn:hover span {
    color: var(--s-white);
  }

  .site-outline-btn {
    background-color: transparent;
    border-color: var(--s-primary);
    color: var(--s-primary);
  }

  .revSite-outline-btn {
    background-color: transparent;
    border-color: var(--s-white);
    color: var(--s-white);
  }

  .site-btn svg {
    stroke: #fff;
  }

  /* TITLE BAR */
  .titleBar {
    margin-bottom: 25px;
    position: relative !important;
  }

  .titleBar h6 {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--s-black);
    margin-bottom: 15px;
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .titleBar h6::before {
    content: '';
    display: inline-flex;
    width: 80px;
    height: 1px;
    background-color: var(--s-primary);
    margin-right: 26px;
  }

  .titleBar h6::after {
    content: '';
    position: absolute;
    left: 80px;
    width: 14px;
    height: 14px;
    border-radius: 100px;
    background-color: var(--s-primary);
    right: 0;
  }

  .titleBar h3 {
    font-size: 45px;
    font-weight: 500;
    color: var(--s-black);
    margin-bottom: 20px;
  }

  .iconbg {
    background: var(--s-primary);
    border-radius: 100%;
    width: 75px;
    height: 75px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  :root {
    --s-primary: #0E1B3D !important;
    --s-secondary: #00b9de;
    --s-third: #2d5d9b;
    --s-white: #ffffff;
    --s-black: #1c1c1c;
  }

  .bg-s-primary {
    background-color: var(--s-primary) !important;
  }

  .text-s-primary {
    color: var(--s-primary) !important;
  }

  .bg-s-secondary {
    background-color: var(--s-secondary) !important;
  }

  .text-s-secondary {
    color: var(--s-secondary) !important;
  }

  .bg-s-third {
    background-color: var(--s-third) !important;
  }

  .text-s-third {
    color: var(--s-third) !important;
  }

  .text-s-white {
    color: var(--s-white) !important;
  }

  .bg-s-white {
    background-color: var(--s-white) !important;
  }

  .text-s-black {
    color: var(--s-black) !important;
  }

  .bg-s-black {
    background-color: var(--s-black) !important;
  }

  /*=========================================  
          HOME PAGE CSS START HERE 
  ===========================================*/
  /* Sticky Header CSS Start */
  header .header-scrolled {
    transition: all 0.5s;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    background-color: var(--s-white);
    z-index: 99;
    border-radius: 0;
    padding: 0px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .header-scrolled .nav-link {
    /* color: var(--s-black) !important; */
    font-size: 15px !important;
  }

  /*================================
        HEADER CSS START HERE 
  ==================================*/
  header {
    background-color: transparent;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
  }

  /* TOP SECTION CSS */
  .top-section {
    padding: 10px 0;
    /* display: block; */
    background-color: var(--s-primary);
    /* border-bottom: 1px dotted #fff; */
  }

  .top-location ul li {
    font-weight: 400;
    font-size: 14px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--s-white);
  }

  .top-location ul li a {
    color: var(--s-white);
    font-weight: 300;
  }

  .top-location ul li a lord-icon {
    margin-right: 8px;
  }

  .header-info ul li {
    padding: 0 3px;
  }

  .header-info ul li a {
    color: var(--s-primary);
    font-weight: 500;
    transition: 0.3s;
    background-color: var(--s-white);
    border-radius: 100px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }

  .header-info ul li a:hover {
    color: var(--s-white);
    background-color: var(--s-secondary);
  }

  /* Bottom Header Start Here */
  .dropdown-menu {
    left: 15px;
    border-radius: 0;
    border: none;
    background-color: var(--s-white);
    box-shadow: 6px 6px 0px 0px var(--s-primary), 6px 1px 0 1px var(--s-primary);
  }

  .dropdown-menu li a {
    color: var(--s-black);
    /* border-bottom: 1px solid var(--s-secondary); */
    padding: 8px 20px;
  }

  .dropdown-item:hover {
    background-color: var(--s-primary);
    border-color: var(--s-primary);
    color: var(--s-white);
  }

  @media (min-width: 992px) {
    .dropdown-hover:hover>.dropdown-menu {
      display: block;
      margin-top: 0;
    }
  }

  .bottom-header {
    background-color: transparent;
    width: 100%;
    border-radius: 0px;
    padding: 20px 0px 0 0px;
  }

  .navbar {
    background-color: var(--s-white);
    border-radius: 20px;
    padding: 12px 20px;
  }

  .navbar-toggler {
    border: 1PX SOLID #FFF;
  }

  .bottom-header nav .navbar-brand {
    font-size: 25px;
    font-weight: 700;
    color: var(--s-black);
    margin: 0;
  }

  /* .navbar-brand  img{
      filter: brightness(0) invert(1);
  } */
  .bottom-header nav .navbar-nav .nav-item .nav-link.active::after {
    transform: scale(1);
  }

  .bottom-header nav .navbar-nav .nav-item .nav-link {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    color: var(--s-black);
    padding: 3px 2px;
    margin: 0 15px;
    border-radius: 50px;
    position: relative;
    letter-spacing: 1px;
    font-family: "Marcellus", serif;
  }

  .bottom-header nav .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0%;
    right: 0%;
    height: 1px;
    border-radius: 0px;
    border: 0 !important;
    background: currentColor;
    z-index: 1;
    transform: scale(0);
    transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
  }

  .bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
    transform: scale(1);
  }

  /*************************************/
  /***     Banner CSS Start Here     ***/
  /*************************************/

  /* Banner section start here */
  .banner {
    background-color: #ffffff;
    position: relative;
  }

  .video-banner {
    padding: 20em 0em 7em 0em;
    position: relative;
    width: 100%;
    height: 880px;
    overflow: hidden;
  }

  .video-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(90deg, #1c1c1c 34%, #27242440 71%);
    left: 0;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0.78;
  }

  .banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    /* Centers the video */
    z-index: 1;
    object-fit: cover;
    /* Ensures the video covers the entire banner area */
  }

  .bannerContent h5 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--s-white);
    margin-bottom: 15px;
  }

  .bannerContent h1 {
    font-size: 54px;
    color: var(--s-white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.678);
    margin-bottom: 15px;
  }

  .bannerContent p {
    font-size: 17px;
    font-weight: bold;
    color: var(--s-white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
    text-shadow: 1px 2px 3px rgba(0, 0, 0, .5);
    margin-bottom: 25px;
  }

  .animate-text {
    opacity: 0;
    transform: translateY(150px);
    transition: all 0.5s ease-in-out;
  }

  .animate-text.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* ABout Section Start Here */
  .image-anime {
    position: relative;
    overflow: hidden;
  }

  .image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
  }

  .image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
  }

  .aboutSection {
    background-color: #F7F1E8;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-top: -100px;
    z-index: 1;
  }

  .about_image img {
    width: 100%;
    /* height: 590px;  */
    object-fit: cover;
    object-position: top center;
    /* border-radius: 10px; */
  }

  /* Tabs Section Start Here */
  ul#myTab {
    border: 1px solid #4d4d4d80;
    border-radius: 100px;
    display: inline-flex;
  }

  #services-Tabs {
    flex-wrap: nowrap;
    height: 410px;
    overflow-y: scroll;
    scrollbar-width: none;
  }

  #services-Tabs::-webkit-scrollbar {
    display: none;
  }

  .nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 20px;
    margin: 8px 9px 9px 9px;
    background-color: transparent;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0px 5px #ffffff12, 0 0px 5px #ffffff24;
  }

  .nav-pills .nav-link.active {
    background-color: var(--s-primary);
    color: #fff;
  }

  .nav-pills .nav-link.active img {
    filter: brightness(0) invert(1);
  }

  .nav-pills .nav-link:hover img {
    filter: brightness(0) invert(1);
  }

  .nav-pills .nav-link:hover {
    background-color: var(--s-primary);
    color: #fff;
  }

  .tab-pane {
    border-radius: 18px;
    overflow: hidden;
  }

  .tab-pane .tabsImage {
    height: 100%;
    object-fit: cover;
  }

  .tab-pane {
    background-color: var(--s-primary);
    background: linear-gradient(#002f6de5, #002f6de5), url(https://weirdbeautee.com/wp-content/uploads/2025/12/bg.png) center / cover no-repeat;
  }

  .tabscontent {
    padding: 25px 20px 25px 0px;
  }

  .tabscontent ul li {
    margin-bottom: 8px;
  }

  /* Services Section Staer Hee */
  .bg-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: var(--s-primary);
    background: linear-gradient(#00b9dec9, #00b9dec9), url(https://weirdbeautee.com/wp-content/uploads/2025/12/bg.png) center / cover no-repeat;
  }

  #services-Tabs {
    flex-direction: column;
  }

  #services-Tabs .nav-link {
    background-color: #F7F1E8;
    color: var(--s-black);
    font-size: 23px;
    font-weight: 600;
    width: 100%;
    border-radius: 25px;
    padding: 20px 25px;
    margin: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #services-Tabs .nav-link svg {
    stroke: #000;
    width: 50px;
    height: 50px;
    padding: 18px;
    background-color: #fff;
    border-radius: 100px;
    transform: rotate(45deg);
    transition: all.3s;
  }

  #services-Tabs .nav-link.active {
    background-color: var(--s-primary);
    color: #fff;
  }

  #services-Tabs .nav-link.active svg {
    background-color: var(--s-secondary);
    stroke: #fff;
    transform: rotate(0deg);
    transition: all.3s;
  }

  .services-icon {
    background-color: var(--s-secondary);
    width: 80px;
    height: 80px;
    border-radius: 100px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .services-icon img {
    width: 55px;
  }

  .services-tab-content .tab-pane {
    background: #F7F1E8;
  }

  .services-image img {
    height: 368px !important;
    width: 100%;
    object-fit: cover;
  }

  /* Total SUpport Section STart Here */
  .totalSupportSection {
    background-color: #F7F1E8;
  }

  .animation-image {
    position: relative;
    background-color: var(--s-third);
    height: 315px;
    width: 315px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    border-radius: 100%;
    /* padding: 20px; */
  }

  .animation-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background-color: rgba(var(--s-primary), 0.3);
    border-radius: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    z-index: -1;
    animation: animation-image 1s infinite linear;
    pointer-events: none;
  }

  @keyframes animation-image {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 48, 109, 0.25), 0 0 0 40px rgba(0, 48, 109, 0.2), 0 0 0 80px rgba(0, 48, 109, 0.1), 0 0 0 120px rgba(0, 48, 109, 0.05), 0 0 0 160px rgba(0, 48, 109, 0.02);
      -webkit-box-shadow: 0 0 0 0 rgba(0, 48, 109, 0.25), 0 0 0 40px rgba(0, 48, 109, 0.2), 0 0 0 80px rgba(0, 48, 109, 0.1), 0 0 0 120px rgba(0, 48, 109, 0.05), 0 0 0 160px rgba(0, 48, 109, 0.02);
    }

    100% {
      box-shadow: 0 0 0 40px rgba(0, 48, 109, 0.2), 0 0 0 80px rgba(0, 48, 109, 0.1), 0 0 0 120px rgba(0, 48, 109, 0.05), 0 0 0 160px rgba(0, 48, 109, 0.02), 0 0 0 200px rgba(0, 48, 109, 0);
      -webkit-box-shadow: 0 0 0 40px rgba(0, 48, 109, 0.2), 0 0 0 80px rgba(0, 48, 109, 0.1), 0 0 0 120px rgba(0, 48, 109, 0.05), 0 0 0 160px rgba(0, 48, 109, 0.02), 0 0 0 200px rgba(0, 48, 109, 0);
    }
  }

  .counter-header h3 {
    color: var(--s-black);
    font-size: 40px;
    font-weight: 400;
  }

  .leftMargen {
    padding-left: 80px;
  }

  .rightMargen {
    padding-right: 80px;
  }

  /* Our Approch Section */
  .approchSection {
    background-color: #F7F1E8;
  }

  /* Testimonial Section STart Here */
  .TestimonialSection {
    background-color: #F7F1E8;
  }

  .testimonialmainBox {
    position: relative;
    border-radius: 25px;
    padding: 50px 0;
    overflow: hidden;
  }

  .td-single-testimonial-item {
    background: transparent;
    padding: 30px;
    border-radius: 24px;
    transition: 0.8s;
    text-align: center;
  }

  .td-testimonial-quote img {
    width: 45px !important;
  }

  .td-testimonial-header .td-testimonial-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 75px;
    width: 75px;
    margin-right: 15px;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--s-primary);
  }

  .td-testimonial-image h3 {
    margin-bottom: 0;
    font-size: 35px;
    color: var(--s-white);
  }

  .td-name-designation h6 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--s-white);
    transition: 0.3s;
  }

  .td-name-designation p {
    color: var(--s-white);
    font-weight: 400;
    font-size: 13px;
  }

  .td-testimonial-description {
    margin: 30px 0 40px 0;
  }

  .td-testimonial-description p {
    display: block;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 1rem;
    color: var(--s-white);
  }

  /* FAQs Section Start Here */
  .FAQs-image img {
    width: 100%;
    /* height: 450px; */
    object-fit: cover;
    /* object-position: center 20%; */
    border-radius: 100%;
    overflow: hidden;
  }

  .accordion-header .accordion-button {
    font-size: 17px;
    background-color: transparent;
    color: var(--s-white);
    padding: 0 0 15px 0;
    border-radius: 0px !important;
    font-weight: 700;
    box-shadow: none;
    border-bottom: 1px solid #fff;
  }

  .accordion-button:not(.collapsed) {
    color: var(--s-white);
  }

  .accordion-item {
    background-color: transparent;
  }

  .accordion-body {
    color: var(--s-white);
  }

  .accordion-button::after {
    background-image: none !important;
    content: "+";
    background-color: var(--s-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    font-size: 25px;
  }

  .accordion-button:not(.collapsed)::after {
    background-image: none !important;
    content: "-";
    transform: none !important;
  }

  /* Footer Section Start Here */
  footer {
    background-color: var(--s-primary);
    position: relative;
    padding-top: 25px;
  }

  /* footer:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #222222f5;
            z-index: 0;
          } */
  .footer-box h2 {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 17px;
    color: var(--s-white);
  }

  .footer-box p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--s-white);
  }

  .footer-box h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--s-white);
    text-transform: uppercase;
  }

  .footer-box ul li {
    margin-bottom: 0.5rem;
  }

  .footer-box ul li a {
    font-size: 15px;
    color: var(--s-white);
  }

  .footer-box ul li a:hover {
    color: var(--s-secondary);
    letter-spacing: 1px;
  }

  .footer1stRow {
    padding: 2rem 0 1.5rem 0;
    position: relative;
    z-index: 1;
    /* border-top: 1px solid #2525251e; */
  }

  .socialmediaicon ul li a i {
    background-color: var(--s-white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 8px;
    padding: 0;
    color: var(--s-primary);
    transition: 0.3s;
    border-radius: 100px;
  }

  .socialmediaicon ul li a i:hover {
    transform: rotate(360deg);
    background-color: var(--s-secondary);
    color: var(--s-white);
  }

  .SocialIcon h3 {
    font-size: 17px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
  }

  .copyRight {
    border-top: 1px dotted #ffffff5b;
    padding: 20px 0;
    position: relative;
    z-index: 1;
  }

  /* Back To Top CSS Start Here */
  .button {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: transparent;
    cursor: pointer;
    border: 2px solid var(--s-primary);
    mix-blend-mode: multiply;
    overflow: hidden;
    border-radius: 30px;
    color: var(--s-primary);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .btn-txt {
    z-index: 1;
  }

  .type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: var(--s-primary);
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
  }

  .button:hover {
    box-shadow: 1px 1px 200px var(--s-white);
    color: #fff;
    border: none;
  }

  .type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
  }


  /* team */

  .team-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateY(0);
  }

  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .team-img-container {
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }

  .team-card:hover .team-img {
    transform: scale(1.05);
  }

  .team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(31, 44, 62, 0.9);
    padding: 20px;
    transform: translateY(0);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
  }

  .team-card:hover .team-info {
    background: rgba(31, 44, 62, 0.95);
  }

  .team-name {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: 0.5px;
  }

  .team-position {
    color: #00b9de;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
  }

  .team-position::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #00b9de;
    bottom: -5px;
    left: 0;
  }

  .scroll-content {
    max-height: 120px;
    /* adjust height as needed */
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 10px;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #00b9de transparent;
  }

  /* Chrome / Edge / Safari custom scrollbar */
  .scroll-content::-webkit-scrollbar {
    width: 6px;
  }

  .scroll-content::-webkit-scrollbar-thumb {
    background: #00b9de;
    border-radius: 10px;
  }

  .scroll-content::-webkit-scrollbar-track {
    background: transparent;
  }


  .swiper-slide img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 12px;
  }
  .gallery-slider .swiper {
      width: 100%;
      padding: 20px 0; /* reduce huge bottom padding */
      height: 500px;
  }

  .gallery-slider .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .gallery-slider img {
      width: 100%;
      height: 350px;         /* FIX: images now same height */
      object-fit: cover;     /* no stretch */
      border-radius: 10px;
  }
  .help-link li{
    color: #000;
  }
  .help-link{
    list-style:circle !important;
  }
  .help-link li a{
    color: #00b9de;
  }


  /*=========================================  
        ABOUT US PAGE CSS START HERE 
  ============================================*/
  .innerPagesBanner {
    background-color: var(--s-black);
    background-image: url(https://weirdbeautee.com/wp-content/uploads/2025/12/bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    display: flex;
    align-items: end;
    justify-content: center;
  }

  .innerPagesBanner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #000000a4;
  }

  .innerpage-title {
    position: relative;
    z-index: 2;
    margin-top: 50px;
  }

  .innerpage-title h1 {
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: 78px;
    position: relative;
    display: block;
    color: var(--s-white);
    margin-bottom: 10px;
  }

  .breadcrumb-content ul li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: var(--s-white);
    margin: 0 5px;
  }

  .breadcrumb-content ul li:first-child {
    margin-left: 0;
  }

  .breadcrumb-content ul li a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: var(--s-white);
    margin-right: 5px;
  }

  /* Mission Section Start here */
  .ourMission {
    /* background-color: var(--s-primary); */
  }

  .valueBox {
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 3em 1em 3em 1em;
    background-color: #F7F1E8 !important;
    border-radius: 25px;
  }

  .valueBox h4 {
    color: var(--s-primary);
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 25px;
    margin-top: 25px;
    letter-spacing: 1px;
  }

  .contactIcon h5 {
    font-size: 17px;
    font-weight: 600;
  }


  /*============================================
      Inner Services Pages CSS STart Here 
  =============================================*/
  .innerServicesPage h2 {
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: .5px;
  }

  .innerServicesPage p {
    margin-bottom: 20px;
  }

  .innerServicesImage img {
    height: 430px;
    object-fit: cover;
    border-radius: 35px;
  }

  .innerServices-overlay {
    background-color: #00000088;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }







  /*============================================
      Responsive CSS STart Here 
  =============================================*/
  @media (max-width: 991px) {
    .top-section {
      display: none;
    }

    header {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
    }

    .bottom-header {
      /* position: relative; */
      background-color: var(--s-white);
      padding-top: 0;
    }

    .bottom-header .container {
      padding: 0 5px !important;
    }

    section {
      padding: 80px 0;
    }

    .header-btn {
      display: none;
    }

    .navbar-brand img {
      width: 150px;
    }

    .navbar-nav {
      align-items: self-start !important;
      border-top: 1px dotted #0000007e;
      margin-top: 10px;
      padding: 8px 0;
    }

    .bottom-header nav .navbar-nav .nav-item .nav-link {
      font-size: 15px;
      padding: 6px 2px;
      margin: 0px 0;
      color: var(--s-black);
    }

    .dropdown-menu {
      box-shadow: none;
    }

    .header-scrolled .nav-link {
      color: var(--s-black) !important;
    }

    .site-btn {
      padding: 15px 30px 15px 30px;
      font-size: 14px;
    }

    .titleBar h3 {
      font-size: 25px;
    }

    .titleBar h6 {
      font-size: 13px;
    }

    p {
      font-size: 14px;
    }

    /* Banner */
    .bannerContent h1 {
      font-size: 28px;
    }

    .bannerContent p {
      font-size: 14px;
    }

    .video-banner {
      min-height: 430px;
      height: 430px;
      padding: 4em 0em 3em 0em;
    }

    /* ABout */
    .aboutSection {
      margin-top: 0;
      border-radius: 0;
    }

    .about_image img {
      height: 400px;
    }

    ul#myTab {
      display: -webkit-box;
      overflow: scroll;
    }

    .tabscontent {
      padding: 25px;
    }

    /* Services */
    .services-image img {
      height: 350px !important;
    }

    /* Counter */
    .leftMargen {
      /* margin-top: 0px !important; */
      padding-left: 20px;
    }

    .rightMargen {
      padding-right: 20px;
    }

    /* FAQs Section */
    .FAQs-image img {
      height: 400px;
    }

    /* Testimonial */
    .testimonialmainBox {
      padding: 20px 20px;
    }

    .td-single-testimonial-item {
      padding: 0;
    }

    .td-testimonial-description p {
      font-size: 15px;
    }

    /* Inner Services Pages */
    .innerPagesBanner {
      height: 150px;
      padding: 40px 0;
    }

    .innerpage-title {
      margin-top: 0;
    }

    .innerpage-title h1 {
      font-size: 30px;
      line-height: 25px;
    }

    .breadcrumb-content ul li {
      font-size: 12px;
    }

    /* COntact Us Page */
    .contactUSPage {
      padding: 0 !important;
    }

    .innerServicesImage img {
      height: 350px;
    }

    .innerservicescontent {
      padding: 0px 0;
    }
  }