:root {
  --blue: #324760;
  --sky: #ecf3fc;
  --black: #000000;
  --white: #ffffff;
}

body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

*{
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blue)!important;
  font-weight: 700!important;
}

p,
a,
span,
button {
  font-size: 16px;
  text-decoration: none !important;
  color: var(--blue);
}

button:hover,
.tab-buttons .nav-link:hover {
  color: var(--blue);
}

.common-btn button {
  background-color: var(--white);
  color: var(--blue);
  padding: 10px 15px;
  text-decoration: none;
  border-radius: unset;
  border: unset;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.blue-bg{
    background-color: var(--blue);
}
.text-dark{color:var(--blue)}
/* Navbar Styling */
.navbar-section {
  background-color: var(--blue);
  position: sticky !important;
  top: 0;
  z-index: 10;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, box-shadow 0.4s ease;
}

.why-txt{
    font-size: 30px;
}

.fw-bold{
    font-size: 22px;
}


.logo img {
  height: 100px;
  width: auto;
}

.navbar-section,
.navbar,
.logo,
.logo-secondary,
.nav-links,
.cta-button,
.hamburger {
  transition: all 0.3s ease-in-out;
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.why-txt{
    font-size: 30px;
}

.nav-links.left-nav,
.nav-links.right-nav {
  display: flex;
  list-style: none;
}

.nav-links.left-nav {
  order: 1;
  flex: 1;
  justify-content: flex-start;
}

.nav-links.right-nav {
  order: 3;
  flex: 1;
  justify-content: flex-end;
}

.logo {
  order: 2;
  flex-shrink: 0;
  margin: 0 auto;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 24px;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

ul.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

ul.nav-links li {
  position: relative;
}

ul.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}

ul.nav-links li a:hover {
  text-decoration: none;
}

/* Dropdown */
/*.dropdown:hover{*/
/*    color: var(--sky);*/
/*}*/
/*ul.nav-links .dropdown:hover a{*/
/*    position: relative;*/
/*    z-index: 99999;*/
/*    padding-left: 20px;*/
/*}*/
.dropdown-icon {
  margin-left: 6px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.dropdown>a{
    padding: 5px;
}
.dropdown.active > a .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown ul.submenu{
  position: absolute;
    top: 0;
    left: 0;
    background: transparent;
  padding: 37px 0 0 0;
  min-width: 230px;
  border-radius: unset;
  box-shadow: unset;
  display: none;
  flex-direction: column;
  list-style-type: none;
}
.dropdown ul.submenu li {
  padding: 10px;
  background: var(--blue);
  color: var(--sky);
}
.dropdown ul.submenu li:hover{
    background: var(--sky);
}
.dropdown ul.submenu li a {
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}
.dropdown ul.submenu li:hover a{
    color: var(--blue);
}
.dropdown:hover > ul.submenu {
  display: flex;
}

#nav-links {
  display: none;
}

/* Hide nav-links and button when scrolling down */
.navbar.minimized .nav-links,
.navbar.minimized .cta-button,
.navbar.minimized .hamburger {
  display: none !important;
}

.navbar.minimized {
  justify-content: center;
  padding: unset;
}

.navbar.minimized .logo {
  display: none;
}

.navbar.minimized .logo-secondary {
  margin: 0 auto;
  display: block;
}

.logo-secondary img {
  height: 50px;
}

.navbar.full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: unset;
}

.navbar-section.shrink {
  background-color: transparent !important;
  box-shadow: unset;
}


.menu-btn{
    background: var(--sky);
    color: var(--blue) !important;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500 !important;
    border: solid 1px var(--sky);
}

.menu-btn:hover{
    transform: scale(1.1);
    background: var(--blue);
    color: var(--sky)!important;
    border: solid 1px var(--sky);
}

  /* CTA Button */
  .cta-button button {
    background-color: var(--white);
    color: var(--blue);
    padding: 10px 30px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    transition: background-color 0.01s ease;
  }
  
  .cta-button button:hover {
    background-color: #e2e2e2;
    transition: background-color 0.01s ease;
  }

/* main banner section  */
.main-banner-hp {
  background-image: url("../media/images/banner-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-img {
  text-align: center;
  padding-top: 50px;
}

/*.banner-img img {*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/

.banner-title {
  text-transform:uppercase;
  font-size: 3rem;
  color: var(--blue);
}

.banner-subtitle {
  color: var(--blue);
  padding-top: 20px;
  padding-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.5;
    font-style: italic;
}

.booking-btn button {
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px;
    background-color: var(--blue);
    color: var(--white);
    padding: 15px 30px;
    border: 1px solid var(--blue);
    transition: background-color 0.001s ease;
}
.booking-btn button:hover {
    background-color: var(--sky);
    color: var(--blue);
    transition: background-color 0.001s ease;
}

.moving-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    background: linear-gradient(
      90deg,
      #C2C5C9, #E6E6E2, #4F6874, #2F364E, #2B3049,
      #2F364E, #4F6874, #E6E6E2, #C2C5C9
    );
    background-size: 300% 100%;
    animation: waveMotion 8s linear infinite;
    z-index: 1;
}

@keyframes waveMotion {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-66.66%); }
}

.wavesvg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    min-width: 100vw;
    z-index: 2;
}

.wave-banner .container {
    z-index: 3;
    position: relative;
}

/* usp-stripe */
.usp-stripe {
  background-color: var(--blue);
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
  width: max-content;
}

.ticker-item {
  display: inline-block;
  font-size: 16px;
  color: var(--white);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ticker:hover {
  animation-play-state: paused;
}

/* tab  */
.tab {
  background-image: url("../media/images/tab-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4rem  0;
}

.tab-container {
    display: flex;
    width: 100%;
}

.tab-buttons {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.tab-btn-icon {
  height: 60px;
  width: 60px;
}

.tab-buttons .nav-link {
  background-color: #f6faff;
  color: var(--blue);
  padding: 50px;
  border: none;
  border-radius: unset !important;
  font-size: 22px;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  border-bottom: 2px solid #e7f0fb;
  border-right: 2px solid #e7f0fb;
}

#consultation-tab {
  padding: 60px 20px;
}

.tab-buttons .nav-link.active {
  background-color: var(--blue) !important;
  color: var(--white) !important;
}

.tab-buttons .nav-link.active img {
  /* display: none; */
}

.tab-content {
  padding: 100px;
  background: #f6faff;
  width: 70%;
}

.tab-pane h2 {
  font-size: 40px;
  padding-bottom: 10px;
}

.tab-pane p {
  margin-bottom: unset;
  font-size: 22px;
}

.cusec-letter-cards {
    padding: 6rem 0;
}

.cl-card-img img {
  width: 90%;
  height: auto;
  margin: auto;
}

.cl-card-content {
  padding-top: 50px;
  text-align: left;
}

.cl-card-content-heading {
  font-size: 26px;
}

.cl-card-para {
  padding-top: 10px;
  font-size: 18px;
}

.letter-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.letter-card {
  text-align: left;
  flex: 0 0 calc(20% - 24px);
  box-sizing: border-box;
}

/* testimonial section  */
.testimonial-carousel {
  position: relative;
  background-color: var(--blue);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: left;
  height: 80vh;
  margin-top: 100px;
}

.slider-heading h2 {
  color: var(--white);
}

.testimonialSwiper {
  width: 80%;
  margin: auto;
}

.testimonialSwiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-content {
  color: var(--white);
}

.title {
  font-size: 40px;
  font-weight: bold;
}

.quote-icon {
  padding: 40px 0px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--white);
  font-weight: 300;
}

.testimonial-footer {
  padding-top: 50px;
}

.client-info {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.client-img {
  width: 50px;
  height: 50px;
}

.client-name {
  color: var(--white);
}

.case-study-btn {
  background-color: var(--white);
  color: var(--blue);
  padding: 10px 15px;
  border: none;
  margin-top: 50px;
}

.slider-nav-btns {
  position: absolute;
  bottom: 12%;
  right: 5%;
}

.testim-nav-wrapper {
    position: absolute;
    right: 130px;
    bottom: 50px;
    z-index: 5;
}

.testimonial {
    font-weight: 200;
}

.testim-nav-wrapper .swiper-button-prev,
.testim-nav-wrapper .swiper-button-next {
  height: 40px;
  width: 40px;
  background-color: var(--blue) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev {
  left: -40px !important;
}

.swiper-button-next {
  left: 20px !important;
}

.slide-bg {
    background: var(--white);
    min-height: 100% !important;
    border-radius: 1rem;
}

.slide-bg>div {
    padding: 40px;
    border: solid 1px var(--blue);
}

.slide-quote img {
    height: 30px;
    width: auto;
    opacity: unset;
    display: none!important;
}

.slide-bg-a {
    background-image: url("../media/images/bg-4.png");
}

.slide-bg-b {
    background-image: url("../media/images/bg-5.png");
}

.slide-bg-c {
    background-image: url("../media/images/bg-6.png");
}

.testimonial-carousel-new {
    padding: 100px 0px;
    background: var(--sky);
}

.rating-stars {
    color: var(--blue) !important;
}

.rating-stars-b {
    color: var(--blue) !important;
}

.testimSliderB .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimSliderB .swiper-slide {
  display: flex;
}

.testimSliderB .swiper-slide > .slide-bg {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.testimSliderB .slide-bg > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


/* clientele  */
.logo-slider {
  /*background-color: #ecf3fc;*/
  padding: 40px 0;
}

.clientele-heading {
    text-align: center;
    margin-bottom: 30px;
}

.logoSwiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  height: 100px;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.logoSwiper .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logoSwiper .swiper-wrapper .swiper-slide img {
  width: auto;
  height: 50px;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}

.swiper-slide img:hover {
  opacity: 1;
}

.logo-slider .clientele-heading h6{
    font-size: 2rem;
}

/* Footer Styling */
.footer {
  background-image: url("../media/images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0px 50px 0px;
}

/* Footer Container */
.footer-container {
  width: 80%;
  margin: 0 auto;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 30px;
}

.footer-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 10px;
}

.footer-column h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--white)!important;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

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

.footer-column ul li a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s;
  font-weight: 300;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-divider {
  border: 0.5px solid var(--white);
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
  display: flex;
  padding-top: 30px;
  gap: 20px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid var(--white);
  margin-top: 50px;
  text-align: center;
  opacity: 0.5;
}

.copyright {
  padding-top: 50px;
  color: var(--white);
  margin: unset;
}

/* floating buttons  */
.floating-buttons {
  position: fixed;
  right: 5px;
  bottom: 25%;
  height: 200px;
  width: 200px;
  z-index: 1000;
}

.floating-btn {
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: width 0.3s ease;
}

#whatsapp-btn {
  top: 0;
}

#email-btn {
  top: 45px;
}

#call-btn {
  top: 90px;
}

.floating-btn a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--white);
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 0 11px;
}

.floating-btn i {
  font-size: 20px;
  flex-shrink: 0;
}

.btn-label {
  margin-left: 10px;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  color: var(--white);
}

.floating-btn:hover {
  width: 160px;
}

.floating-btn:hover .btn-label {
  opacity: 1;
}

#whatsapp-btn,
#email-btn,
#call-btn {
  background-color: var(--blue);
      border-radius: 20px 0 0 20px;
    padding-left: 5px;
}

/*-------------- CONTACT US PAGE  --------------*/
.contact-banner {
    background-image: url("../media/images/contact-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    height: 50vh;
}

.enquire-section input,
.enquire-section textarea {
  border: 1px solid var(--black);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #f5f5f5;
}

.contact-info-wrapper h4 {
  font-weight: 300;
}

.enquire-section .form-control:focus {
  box-shadow: none;
  border-color: var(--blue);
}

.contact-info-icons img {
  height: 60px;
  width: 100%;
}

.call-icon img {
  height: 50px;
}

.book-site-wrapper a {
  color: var(--white);
  text-decoration: none;
}

.bg-blue {
    background-color: var(--blue) !important;
}
.bg-sky {
    background-color: var(--sky) !important;
}

.contact-pg-content .abt-banner-heading h1 {
    font-size: 55px;
    font-weight: 600;
    color: var(--white)!important;
}
.contact-pg-content .abt-banner-heading p{
    color: var(--white);
}

/*coming soon css*/
 .comming-soon h1 {
        font-size: 4rem;
        font-weight: bold;
        color: var(--blue);
    }
    
    .go-back-btn {
        width: 25%;
        font-size: 18px !important;
        padding: 10px 20px !important;
    }
    

 

/*-------------- ABOUT US PAGE  --------------*/
.about-pg-banner {
    background-image: url(../media/images/about-bg.jpg);
    height: 60vh;
}

/*-------------- Career PAGE  --------------*/
.career-pg-banner {
    background-image: url("../media/images/careers-banner.jpg");
}

.hr-bg{
    background: url(../media/images/hr.png);
    background-size: cover;
    background-position: center;
}

.hr-img img {
    height: auto;
    width: 100%;
}

.why-cusec .card {
  transition: transform 0.3s ease;
}
.why-cusec .card:hover {
  transform: translateY(-10px);
}



/*-------------- WHY CUSEC PAGE  --------------*/
#why-cusec-differentiators .fa-lg{
    font-size: 3rem;
    margin-top: 30px;
    margin-bottom: 40px;
}

.why-cusec-pg-banner {
    background-image: url("../media/images/why-cusec.jpg");
}

/* Responsive Design */


   /* Challenges Section */
   
.bg-sky .fw-light{
    font-weight: 100;
    font-size: 2rem;
    line-height: 1.2;
}

   
.bg-sky .text-muted{
    color: #6188B8!important;
    font-weight: 100!important;
}
   
.why-cusec-wrapper {
  background: #fff;
  padding: 80px 0 0;
}

.challenges-section {
  background-color: var(--sky);
  padding: 60px 0;
}

.challenges-section h2 {
    font-size: 30px;
    font-weight: 600 !important;
}

.challenge-card {
  background: var(--sky);
  text-align: left;
  padding: 0 20px;
}

.challenge-card-img img {
  height: 70px;
  margin-bottom: 16px;
}

.challenge-card-title {
    margin-top: 30px;
    font-weight: 100;
    line-height: 1.2;
    font-size: 2rem;
    color: var(--blue);
}

.vertical-divider {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #d6dee7;
}
.challenge-col:last-child .vertical-divider {
  display: none;
}


.solutions-section {
  background-color: var(--blue);
  padding: 60px 0;
}

.solutions-section h2 {
    font-size: 30px;
    font-weight: 600 !important;
  color: #ffffff;
}

.solution-card {
  text-align: left;
  padding: 0 20px;
}

.solution-card-img img {
  height: 70px;
  margin-bottom: 16px;
}

.solution-card-title {
    margin-top: 30px;
    font-weight: 100;
    line-height: 1.2;
    font-size: 2rem;
    color: var(--white)!important;
}


.challenges-section,
.solutions-section {
  background-image: url('assets/media/images/dotted-bg.svg'); /* Or a similar SVG */
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

#our-process h5{
    font-size: 1.6rem;
    font-weight: 600 !important;
}

/* Responsive adjustments */


/*#our-process img{*/
/*    height: 120px;*/
/*}*/

.dashboard-banner{
    background: url(../media/images/service-bg.jpg);
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
}
.dashboard-banner h1, .dashboard-banner .banner-subtitle{
    color: var(--white)!important;
}
.cta-section .rounded-pill{
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px!important;
    background-color: var(--blue)!important;
    color: var(--white)!important;
    padding: 15px 30px!important;
    border: 1px solid var(--blue);
    transition: background-color 0.1s ease!important;
}
.cta-section .rounded-pill:hover{
    background-color: var(--sky)!important;
    color: var(--blue)!important;
    transition: background-color 0.1s ease!important;
}

.dashboard-banner .booking-btn button{
    background-color: var(--sky);
    color: var(--blue);
    transition: background-color 0.001s ease;
}

.dashboard-banner .booking-btn button:hover{
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px!important;
    background-color: var(--blue)!important;
    color: var(--white)!important;
    padding: 15px 30px!important;
    border: 1px solid var(--blue);
    transition: background-color 0.1s ease!important;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.text-blue {
  color: #324760;
}

.team-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: inline-block;
}

.team-section p {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .team-img {
    width: 110px;
    height: 110px;
  }
}



@media (max-width: 767px) {
.section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.navbar-section {
  padding: 10px 0;
}

.nav-links.left-nav,
.nav-links.right-nav {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 24px;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

.hamburger span {
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

#nav-links {
  display: block;
  position: fixed;
  top: 60px;
  right: 0;
  background-color: var(--white);
  width: 100%;
  height: calc(100% - 80px);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  overflow-y: auto;
  padding: 30px 20px;
}

#nav-links.open {
  transform: translateX(0);
}

.mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  border-bottom: 1px solid #ddd;
}

.mobile-nav li a {
  display: block;
  padding: 15px 10px;
  color: var(--blue);
  text-decoration: none;
  background-color: transparent;
}

/* Submenu hidden by default */
.mobile-nav .submenu {
  display: none;
  flex-direction: column;
  padding-left: 10px;
  margin: 0;
  background-color: var(--sky);
  border-left: 3px solid var(--blue);
}

.mobile-nav .dropdown.active .submenu {
  display: flex;
}

/* Submenu link styling */
.mobile-nav .submenu li a {
  font-size: 15px;
  padding: 12px 16px;
  color: var(--blue);
}

/* Dropdown arrow */
.mobile-nav .dropdown > a::after {
  content: "▼";
  float: right;
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.mobile-nav .dropdown.active > a::after {
  transform: rotate(180deg);
}

/* Prevent desktop submenu styles leaking */
.nav-links-wrapper .submenu {
  position: static !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  background: none !important;
  border: none !important;
}

/* Desktop styles - leave untouched */
ul.nav-links li {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

ul.nav-links li a {
  color: var(--blue);
  display: block;
  padding: 15px 20px;
  font-weight: 400;
  font-size: 16px;
}

/* Override icon rotation */
.dropdown > a::after {
  float: right;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.dropdown.active > a::after {
  transform: rotate(180deg);
}

.cta-button {
  display: none;
}

.logo {
  margin: unset;
}

.logo img {
  height: 40px;
}

  /* banner section  */
  .banner-title {
    font-size: 30px!important;
  }

  .banner-subtitle {
    font-size: 16px;
    padding: 20px;
    margin-bottom: 0px;
  }

  .main-banner-hp {
    height: 75vh;
    text-align: center;
  }

  .banner-content {
    /*padding-top: 50px;*/
  }

  .booking-btn button {
    font-size: 14px;
    padding: 10px 30px;
  }

  .banner-img {
    margin-top: 30px;
    padding: unset;
  }

  /* tab section  */
  .tab-container {
    display: block;
    position: relative;
    left: unset;
    bottom: unset;
    top: 15%;
    width: 100%;
  }
  
  .tab {
      padding:0;
  }

  .tab-buttons {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100%;
  }

  .tab-buttons .nav-link {
    font-size: 14px;
    padding: 10px;
  }

  .tab-btn-icon {
    display: none;
  }

  #consultation-tab {
    padding: 10px;
    border-right: unset;
  }

  .tab-content {
    padding: 30px;
    width: 100%;
  }

  .tab-pane h2 {
    font-size: 24px;
  }

  .tab-pane p {
    font-size: 16px;
  }

  /* cusec letter cards  */
  .cusec-letter-cards {
    /*padding-top: 140px;*/
    margin-top: 50px;
  }

  .letter-card {
    padding: 10px 20px;
    text-align: center;
    flex: 0 0 100%; /* Adjust this value to control spacing */
  }

  .cl-card-content {
    padding-top: 20px;
    text-align: center;
  }

  .cl-card-para {
    padding-top: 10px;
  }

  .consultaion-btn-wrapper {
    margin-top: unset !important;
  }

  /* testimonial  */
  .testimonial-carousel {
    margin-top: 70px;
    padding: 50px 0;
    background-position: 70% 10%;
    height: 90vh;
  }

  .title {
    font-size: 28px;
  }

  .quote-icon {
    padding: 20px 0px;
  }

  .quote-icon img {
    max-width: 60px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-footer {
    padding-top: 20px;
  }
    
  .testim-nav-wrapper {
      right: 50%;
  }
  
  .slide-bg>div {
    padding: 20px;
  }

  .slider-nav-btns {
    bottom: 4%;
  }

  .swiper-button-next {
    left: 0px !important;
  }

  .swiper-button-prev {
    left: -50px !important;
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    height: 30px;
    width: 30px;
  }

  /* clinetele  */
  .logo-slider {
    padding-top: 30px;
    padding-bottom: unset;
  }

  .clientele-heading {
    text-align: center;
  }

  .swiper-slide img {
    max-width: 75px !important;
  }

  /* footer  */
  .footer-logo {
    text-align: center;
  }

  .social-icons {
        justify-content: center;
        padding: 10px 0px 50px;
  }

  .footer-column ul {
    padding-bottom: 20px;
  }

  .footer-column p {
    font-size: 18px;
  }

  .footer-column ul li a {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: unset;
  }

  .footer {
    padding: 50px 0px;
  }

  .copyright {
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 300;
  }
  
  .copyright a {
      text-decoration: none;
      color: var(--white);
  }
  
  /*------------ CONTACT PAGE  ------------*/
  /* banner  */
  .contact-banner {
    background-position: 94% 0;
    background-size: cover;
  }

  .contact-pg-content {
    left: 5px;
    transform: translateY(-40%);
    padding: 0 10px;
  }

  .contact-pg-content .abt-banner-subhead {
    padding-top: 35px;
  }

  /* form  */
  .cii-a img {
    height: 110px;
  }

  .logoSwiper .swiper-wrapper .swiper-slide img {
      width: auto;
      height: 25px;
      opacity: 0.8;
      transition: opacity 0.3s ease-in-out;
  }
  
/*----------- floating buttons  -------------*/
  .floating-btn:hover {
    width: 50px;
  }

  .floating-btn:hover .btn-label {
    opacity: 0;
  }
  
  .floating-buttons {
      right: 5px;
  }
  
  /*comming soon page */
    .go-back-btn {
        width: 50%;
        font-size: 16px !important;
        padding: 10px 20px !important;
    }
}

@media (max-width: 767.98px) {
    h1{
        font-size: 30px!important;
    }
    .challenge-col {
        margin-bottom: 30px;
    }
    
    .vertical-divider {
        display: none;
    }
    
    .challenge-card {
        padding: 20px 15px;
    }
    
    .challenge-card-title {
        font-size: 18px;
        margin-top: 0!important;
    }
    .contact-banner {
    background-image: url(../media/images/contact-bg-mobile.jpg);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
    }
    #who-we-are, #who-we-are .col-lg-7{
        padding-top:0 !important;
        padding-bottom:0 !important;
    }
    .about-pg-banner{
        background-image: url(../media/images/about-bg-mobile.jpg);
        background-size: cover;
        background-position: top center;
        height: 60vh!important;
    }
    .abt-banner-heading{
        margin-top: -100px;
    }
    .abt-banner-heading p{
        padding:0;
    }
    #who-we-are, #who-we-are .abt-banner-subhead, .why-cusec-pg-banner p{
        padding-top:0 !important;
        padding-bottom:0 !important;
    }
    .why-cusec-pg-banner{
        background-image: url(../media/images/why-cusec-mobile.jpg);
        background-size: cover;
        background-position:  center;
        height: 60vh!important;
    }
    .career-pg-banner, .contact-pg-content .abt-banner-subhead, .career-pg-banner p, .testimonial-carousel-new{
        padding-top:0 !important;
        padding-bottom:0 !important;
    }
    .career-pg-banner{
        background-image: url(../media/images/careers-banner-mobile.jpg);
        background-size: cover;
        background-position:  center;
        height: 70vh!important;
    }
    #careers-enquiry{
        padding-top:0 !important;
    }
    .dashboard-banner .banner-title{
        font-size: 26px !important;
    }
    .dashboard-banner .banner-img img{
        width:100% !important;
        height:auto!important;
    }
    .dashboard-banner{
        height: fit-content;
        padding: 50px 0;
        text-align: center;
    }
    .challenges-section h2 {
    font-size: 22px;
    }
    .challenge-card{
        padding:0!important;
    }
    .challenge-card, .solution-card {
        padding: 0 !important;
        margin-bottom: 30px;
    }
    .solutions-section h2 {
    font-size: 22px;
    }
    .solution-card-title {
        font-size: 18px;
        margin-top: 0 !important;
    }
    .solution-card-img img {
    height: 60px;
    margin-bottom: 16px;
    }
    #our-process{
        padding: 0!important;
    }
}