@font-face {
    font-family: 'Bellefair';
    src: url('/fonts/Bellefair-Regular.ttf') format('truetype');
    font-weight: 100 900;
}


* {
    margin: 0;
    padding: 0;
    font-family: 'Bellefair', sans-serif;
    /* font-family: "Inter", sans-serif; */
}


body{
    
}

::selection {
    background-color: #081332;
    color: #fff; 
  }
  

.text-black{
    color: black !important;
}

.text-white{
    color: white !important
}

.text-theme{
    color: #1366a3 !important;
}

.text-gradient{
    background: -webkit-linear-gradient(black, #1366a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* navbar */

.navbar-nav .nav-link:hover {
    color: #7d8087 !important;
}

.navbar-nav .nav-link.active {
    color: #7d8087 !important;
}



.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    /* background-color: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    background-color: transparent;
}


.navbar-nav .nav-link {
    font-size: 22px;
    font-weight: 700;
    opacity: 1;
    word-break: normal;
    line-height: 20px;
    padding: 10px 20px;
    /* color: white !important; */
}


.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none; 
    width: 30px;
    height: 3px;
    color: black; 
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: black;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

@media (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }
}


/* .card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
} */


/* mobile-nav */

.fullscreen-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 28vw;
    height: 100vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%); 
    transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
    z-index: 9999;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.menu-items {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu-items li {
    margin: 20px 0;
}

.menu-items a {
    font-size: 24px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #3b60ad;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.simple-button {
    padding: 18px 28px; 
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(89, 82, 82, 0.8); 
    border-radius: 12px;
    transition: all 0.6s ease-in-out, color 0.6s ease-in-out, border-color 0.6s ease-in-out !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.simple-button:hover {
    background: white; 
    color: rgba(0, 0, 0, 0.7); 
}


.custom-button2 {
    position: relative;
    padding: 18px 28px;
    background-color: #081332;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease;
  }
  
  .custom-button2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent
    );
    transform: skewX(-20deg);
    transition: left 0.5s ease-in-out;
    z-index: 0;
  }
  
  .custom-button2:hover::before {
    left: 125%;
  }
  
  .custom-button2:hover {
    transform: scale(1.03);
  }
  
  .custom-button2 span {
    position: relative;
    z-index: 1;
  }
  



.custom-p{
    padding: 12px 24px !important;
}


/* hero-section */



.hero-section {
    height: 90vh; 
    /* background: url("/mach/images/hero-img.jpg") no-repeat center/cover; */
    position: relative;
    overflow: hidden;
}

.hero-section2 {
    height: 40vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-section3 {
    height: 60vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}


.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: 0;
}


/* .hero-section */

.custom-blur {
    background: rgba(0, 0, 0, 0.2); 
    font-size: 14px;
    backdrop-filter: blur(5px); 
    color: white; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 18px;
    padding: 12px 20px; 
    text-transform: uppercase;
    letter-spacing: 1px !important;
    gap: 8px; 
    white-space: nowrap; 
}

.lead {
    opacity: 0.6;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    padding-right: 200px !important;
    font-size: 13px;
}


.hero-section {
    min-height: 80vh; 
    display: flex;
    align-items: center; 
    justify-content: start; 
    text-align: left; 
}


.container.custom-width {
    max-width: 350px; 
    margin: 0 auto; 
}


.hero-heading{
    font-size: 4.375rem;
    font-weight: 700;
    line-height: 1.1;
}


.main-heading{
    font-size: 52px;
}


@media (max-width: 768px) {
    .main-heading{
        font-size: 42px;
    }
}

/* Dropdown */


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    /* margin-top: ; */
}

.custom-dropdown {
    background-color: #252840 !important;
    border: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    overflow: hidden;
    border-radius: 5px; 
}


.custom-dropdown .dropdown-item {
    font-size: 22px !important;
    color: #fff !important; 
    background-color: #252840 !important; 
    padding: 10px 15px;
    border-bottom: 1px solid #3a3d56;
}


.custom-dropdown .dropdown-item:last-child {
    border-bottom: none;
}


.custom-dropdown .dropdown-item:hover {
    background-color: #3a3d56 !important;
}


.dropdown-menu {
    padding: 0 !important;
}



.custom-dropdown {
    background-color: #252840 !important;
    border: none;
    padding: 9px 0; 
    margin: 0;
    min-width: 220px;
    overflow: hidden;
    border-radius: 10px;
}

.custom-dropdown .dropdown-item {
    color: #fff !important;
    background-color: #252840 !important;
    padding: 12px 20px; 
    border-bottom: 1px solid #3a3d56;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease, background-color 0.3s ease; 
}

.custom-dropdown .dropdown-item .icon {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease; 
}

.custom-dropdown .dropdown-item:hover {
    color: #7d8087 !important;
    background-color: #252840 !important;
}

.custom-dropdown .dropdown-item:hover .icon {
    color: #7d8087 !important;
}


.custom-dropdown .dropdown-item:last-child {
    border-bottom: none;
}



.dropdown-wrapper {
    position: relative;
    display: inline-block;
}


.dropdown-wrapper .dropdown-menu {
    display: none;
    position: absolute;
    top: 75%;
    left: 0;
    margin-top: 10px;
    background-color: #252840;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
    z-index: 999;
}


.dropdown-wrapper:hover .dropdown-menu {
    display: block;
}


.dropdown-menu .dropdown-item {
    color: #fff !important;
    padding: 18px 26px;
    border-bottom: 1px solid #3a3d56;
    background-color: #252840;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-menu .icon {
    color: #fff;
    transition: color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    color: #7d8087 !important;
    background-color: #252840 !important;
}

.dropdown-menu .dropdown-item:hover .icon {
    color: #7d8087 !important;
}

.main-p{
    font-size: 28px;
}

.abt-para{
    font-size: 20px;
}

.abt-para1 {
    font-size: 22px !important;
}

.hero-btn {
    font-size: 18px;
}

.text-theme{
    color: #081332 !important;
}

.head{
    font-size: 20px;
    font-weight: 900 !important;
}

.para{
    font-size: 19px;
}

.section-p{
    margin-top: 60px !important;
    margin-bottom: 30px !important;
}


/* Counter-css */

.counter-text {
    font-size: 5.5rem;
    font-weight: 700;
    -webkit-text-stroke: 1px #000;
    color: transparent;
    margin-bottom: 10px;
}

.counter-line {
    width: auto;
    height: 1px;
    background-color: silver;
    margin: 0 auto 10px;
}

.counter-label {
    font-size: 25px;
    font-weight: 500;
}

.clip-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #f3f3f3;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 1;
}

.info-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.num{
    font-size: 90px !important;
}

.card-text{
    font-size: 22px !important;
}


.info-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.clip-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #f7f7f7;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 2;
}

.num {
    opacity: 0.3;
    transition: opacity 0.3s ease;
    font-size: 24px;
    background: linear-gradient(to right, #00aeeb, #081332);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.info-box:hover .num {
    opacity: 1;
}


.info-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 0%;
    background: linear-gradient(to right, #00aeeb, #081332);
    transition: width 0.3s ease;
    z-index: 3;
}

.info-box:hover::after {
    width: 100%;
}


.float-h{
    font-size: 32px !important;
}


.person{
    font-size: 28px !important;
}

.position{
    font-size: 20px !important;
    opacity: 0.9 !important;
}

.test-para{
    font-size: 21px !important;
}


.custom-card {
    border: none !important;
  border-radius: 0 !important;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 80px, 100% 100%, 0 100%);
}
  

.partner-card {
    background: #fff;
    height: 200px;       
    width: 100%;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); 

    border: none !important;
    border-radius: 0 !important;
      position: relative;
      clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
  }
  
  .partner-card img {
    max-height: 80px;     
    object-fit: contain;
  }


  /* .partner-card2 {
    background: #fff;
    height: 200px;       
    width: 100%;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); 
    border: none !important;
    border-radius: 0 !important;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
    transition: all 0.5s ease-in-out;
  }
  
  .partner-card2 img {
    max-height: 100px;     
    object-fit: contain;
  }

  .partner-card2 img {
    max-height: 100px;     
    object-fit: contain;
    transition: transform 0.5s ease-in-out;
    display: block;
    margin: 0 auto;
  }
  
  
  .partner-card2:hover {
    border-radius: 50% !important;
    clip-path: none;
    width: 200px;
    height: 200px;
  }
  
  .partner-card2:hover img {
    transform: scale(1.07);
  } */
  

  .partner-card2 {
    background: #fff;
    height: 200px;       
    width: 300px; /* Fixed width */
    margin: 0 auto; /* Center horizontally */
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); 
    border: none !important;
    border-radius: 0 !important;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
    transition: all 0.5s ease-in-out;
    overflow: hidden;
  }
  
  .partner-card2 img {
    max-height: 100px;     
    object-fit: contain;
    transition: transform 0.5s ease-in-out;
    display: block;
    margin: 0 auto;
  }
  
  .partner-card2:hover {
    border-radius: 50% !important;
    clip-path: none;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  }
  
  .partner-card2:hover img {
    transform: scale(1.07);
  }
  

  .img-css {
    transition: transform 0.3s ease-in-out;
  }
  
  .img-css:hover {
    transform: scale(1.07); 
  }
  

  .sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1030; 
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }


  .f-text {
    font-size: 20px !important;
  }

  .margin-left {
    margin-left: 50px !important;
  }
  
  .nav-link{
    font-size: 26px !important;
  }


  .hollow-text {
    font-weight: bold;
    font-size: 44px;
    color: transparent;
    -webkit-text-stroke: 1px #081332; 
    
  }
  

  .product-card {
    border: none !important;
    border-radius: 0 !important;
      position: relative;
      clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 80px, 100% 100%, 0 100%);
  }

  .text-big{
    font-size: 52px !important;
  }

  .custom-p{
    padding: 120px 0px 30px 0px !important;
    margin-top: -210px !important;
  }

  .about-section {
    /* background-image: url('/ip/images/about.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 45vh; 
}

.float_image {
    top: 80px;
    right: 0px;
    width: 60%;
    border: 5px solid white; 
}


#myTabContent {
    border: none !important;
}

.nav-tabs {
    border-bottom: none !important;
}
.nav-tabs .nav-link {
    position: relative;
    color: #6c757d;
    background-color: #f7f7f7;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

/* Line animation using ::before */
.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #252840;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Hover effect */
.nav-tabs .nav-link:hover {
    color: #252840;
}

.nav-tabs .nav-link:hover::before {
    width: 100%;
}

/* Active tab style */
.nav-tabs .nav-link.active {
    color: #252840;
}

.nav-tabs .nav-link.active::before {
    width: 100%;
}


.team-card {
    position: relative;
}

.team-info {
    bottom: -40px;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.team-card img {
    height: 450px; 
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}


.team-card {
    position: relative;
    overflow: visible;
  }

  
  .team-info {
    position: absolute;
    bottom: -8px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 80%;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .team-card {
    margin-bottom: 60px;
  }
  
  .custom-margin {
    margin-top: 70px !important;
  }
  
  @media (min-width: 992px) {
    .custom-margin {
      margin-top: 0 !important;
    }
    
  }

.font-s{
    font-size: 20px !important;
}

.test-heading {
    font-size: 55px !important;
}

@media (max-width: 576px) {
    .test-heading {
        font-size: 35px !important;
    }

    .hero-section {
        height: 90vh !important;
    }
}


@media (max-width: 768px) {
    .img-css {
        max-width: 150px;
    }
}


.icon-box {
    background-color: #f7f7f7;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.icon-box i {
    transition: color 0.3s ease;
}

.custom-card1{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.custom-card2{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.custom-card3{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.custom-card4{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.custom-card1:hover .icon-box,
.custom-card2:hover .icon-box,
.custom-card3:hover .icon-box,
.custom-card4:hover .icon-box {
    background-color: #081332;
}

.custom-card1:hover .icon-box i,
.custom-card2:hover .icon-box i,
.custom-card3:hover .icon-box i,
.custom-card4:hover .icon-box i {
    color: #fff !important;
}



.custom-input {
    height: 55px;
    padding: 0 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus,
.custom-textarea:focus {
    outline: none;
    border-color: #081332 !important;
    box-shadow: 0 0 0 0.15rem rgba(8, 19, 50, 0.25) !important;
}

.custom-textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
}

::placeholder {
    color: #999;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    font-size: 22px; 
    color: #999;
}


/* Apply to the full form section */
.custom-input-div {
    position: relative;
    z-index: 2;
}


.custom-map {
    position: relative;
    z-index: 1;
    margin-top: -300px;
}



@media (max-width: 768px) {
 
.custom-map {
    position: relative;
    z-index: 1;
    margin-top: 0px;
}
}


.dropdown-icon {
    transition: transform 0.3s ease;
}

#productDropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}


.swiper-buttons-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .valve-card {
    background-color: #bec6cf;
    /* background-color: #f7f7f7; */
    border-radius: 10px;
    overflow: hidden;
  }
  
  .valve-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .valve-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease-in-out;
  }
  
  .valve-card:hover .valve-image {
    transform: scale(1.1);
  }
  
  .valve-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #081332;
    color: #fff !important;
    padding: 55px;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  .valve-card:hover .valve-overlay {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .valve-card {
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  
  .valve-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .valve-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: #4d8ea4 !important; 
    color: #fff !important;
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .valve-card:hover .valve-overlay {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }


  .valve-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #4d8ea4 !important;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 2;
    transition: opacity 0.3s ease;
  }
  
  .valve-name h3 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
  }
  
  .valve-card:hover .valve-name {
    opacity: 0;
    visibility: hidden;
  }
  
  

  

  .tab-rectangle {
      background-color: #081332;
      color: #ffffff;
      padding: 12px 24px;
      /* border-radius: 6px; */
      display: inline-block;
      font-size: 1.5rem;
      font-weight: 500;
  }


  .thumb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(8, 19, 50, 0.8);
      color: white;
      border: none;
      padding: 6px 10px;
      /* border-radius: 50%; */
      cursor: pointer;
      z-index: 10;
  }
  
  .left-arrow {
      left: 0px !important;
  }
  
  .right-arrow {
      right: 0px !important;
  }
  
  #thumbContainer {
      scrollbar-width: none;
  }
  
  #thumbContainer::-webkit-scrollbar {
      display: none;
  }
    

  /* new css */
  .fullscreen-menu.active .menu-items li {
    animation: fadeDown 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.fullscreen-menu.active .menu-items li:nth-child(1) {
    animation-delay: 0.1s;
}
.fullscreen-menu.active .menu-items li:nth-child(2) {
    animation-delay: 0.2s;
}
.fullscreen-menu.active .menu-items li:nth-child(3) {
    animation-delay: 0.3s;
}
.fullscreen-menu.active .menu-items li:nth-child(4) {
    animation-delay: 0.4s;
}

.fullscreen-menu .navbar-brand {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.fullscreen-menu.active .navbar-brand {
    opacity: 1;
    transform: scale(1);
}

/* .custom-section{
    margin-top: 50px !important;
} */

@media (max-width: 768px) {
    .fullscreen-menu {
        width: 100vw;
    }
    /* .custom-section{
        margin-top: 100px !important;
    } */
}


.dropdown-menu-mobile {
    display: none;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background: none;
}

.dropdown.show .dropdown-menu-mobile {
    display: flex;
}

.dropdown-menu-mobile li {
    list-style: none;        
    margin: 0;                
    padding: 0;                 
    background-color: transparent;
    transition: background 0.3s ease; 
}

.dropdown-menu-mobile li a {
    color: black;
    font-size: 1.5rem;         
    text-decoration: none;
    padding: 10px 16px;
    display: block;
}


.dropdown-menu-mobile li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}




.jorc-section {
    padding: 50px 0;
    color: #333;
    font-family: 'Arial', sans-serif;
  }

  .jorc-container {
    text-align: center;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  }

  .box-shadow-css{
    text-align: center;
    background: #fff;
  }
  

  .jorc-section .jorc-logo img {
    width: 150px;
    animation: bounce 2s infinite;
  }

  
  .jorc-section .jorc-info h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 20px;
    animation: fadeIn 3s ease-out;
  }

  .jorc-section .jorc-info p {
    font-size: 1.2rem;
    margin-top: 10px;
    animation: slideIn 2s ease-out;
  }

  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideIn {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }


  .image-grid img {
    object-fit: cover;
    width: 100%;
    height: 300px;
  }

  .image-grid .col {
    padding: 10px;
  }

  @media (max-width: 768px) {
    .image-grid img {
      height: auto;
    }
  }


  @media (max-width: 767.98px) {
    .about-section {
      background-position: left center !important;
    }
  }
  


  /* new css */

.partner-swiper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .partner-swiper .swiper-wrapper {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
  }
  
  .partner-swiper .swiper-slide {
    flex: 0 0 auto;
    width: 220px;  
    margin-right: 30px; 
  }
  
  .partner-card img {
    transition: transform 0.3s ease;
  }
  .partner-card:hover img {
    transform: scale(1.1);
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  

  #fullscreenMenu {
    overflow-x: auto !important;
    white-space: nowrap !important;
    scroll-behavior: smooth;
  }
  