* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif !important;
  }
  .main-heading{
    color: #17176e !important;
  }
  h1{
    font-weight: 600;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif !important;
  }
  
  /* Topbar */
  .topbar {
    background-color: #17176e;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    font-size: 14px;
  }
  
  .topbar .right a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    text-decoration: none;
  }
  
  .topbar .right a:hover {
    color: #ff8f49;
  }
  
  .topbar .left  a{
    font-weight: 500;
    color: #fff;
    text-decoration: none;
  }
  
  /* Navbar */
  .navbar {
    background-color: #ffffff;
    border-bottom: 2px solid #17176e;
  }
  
  .navbar-brand img {
    width: 250px;
    max-width: 100%;
  }
  
  .navbar-nav > .nav-item > .nav-link {
    position: relative;
    color: #000000 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0px 15px;
  }
  
  .navbar-nav > .nav-item > .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -10px;
    left: 10px;
    background-color: #ff8f49;
    transition: width 0.3s ease;
  }
  
  .navbar-nav > .nav-item > .nav-link:hover::after,
  .navbar-nav > .nav-item > .nav-link.active::after {
    width: 75%;
  }
  
  .navbar-nav > .nav-item > .nav-link:hover,
  .navbar-nav > .nav-item > .nav-link.active {
    color: #17176e !important;
  }
  
  .navbar-nav .dropdown-toggle::after {
    display: none !important;
  }
  
  .arrow {
    font-size: 12px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  @media (min-width: 992px) {
    .dropdown:hover .arrow {
      transform: translateY(2px);
    }
  
    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
    }
  }
  
  .dropdown-menu {
    margin-top: 0;
    border-radius: 0;
    border: 1px solid #ddd;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  .dropdown-menu a {
    color: #17176e;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
  }
  
  .dropdown-menu a:hover {
    background-color: #d3e5fe22;
    color: #ff8f49;
  }
  
  .navbar-toggler {
    border: none;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,74,173, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  @media (max-width: 992px) {
    .navbar-collapse {
      background-color: #ffffff;
      padding: 1rem;
    }
  
    .dropdown-menu {
      box-shadow: none;
      border: none;
    }
    .nav-link{
      padding-top: 15px !important;
    }
    .navbar-nav > .nav-item > .nav-link::after {
      bottom: -5px;
      left: 12px;
    }
    
    .navbar-nav > .nav-item > .nav-link:hover::after,
    .navbar-nav > .nav-item > .nav-link.active::after {
      width: 15%;
    }
    .dropdown-menu{
      box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.048);
    }
  }



  /* banner styling */
  .banner-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #fff;
}

#bannerCarouselDesktop img,
#bannerCarouselMobile img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.7);
}

.desktop-slider {
  display: block;
}

.mobile-slider {
  display: none;
}

@media (max-width: 768px) {
  .desktop-slider {
    display: none;
  }
  .mobile-slider {
    display: block;
  }
}

@media (max-width: 412px) {
  #bannerCarouselDesktop img,
  #bannerCarouselMobile img {
    min-height: 130vh;
  }
}

.slider-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  /* max-width: 1300px; */
  padding: 20px;
}

.banner-text h1 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.banner-text p {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  background-color: #ff8f499d;
  padding: 10px;
  border-radius: 5px;
}

.banner-form {
  background: #ffffffe8;
  border-radius: 10px;
}

/* Form Button */
.banner-summit-btn {
  background-color: #17176e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-summit-btn:hover {
  background-color: #ff8f49;
  color: #fff;
  transition: 0.3s ease;
}
.desktop-slider-content{
  display: none !important;
}


/* Large screens: left-text, right-form */
@media (min-width: 1300px) {
  #bannerCarouselDesktop img,
#bannerCarouselMobile img {
  width: 100%;
  height: 78vh;
}
.desktop-slider-content{
  display: block !important;
}
.slider-content{
  display: none !important;
}
.banner-text{
  display: flex;
  justify-content: end;
  align-items: end;
}
.desktop-slider-content{
  position: absolute;
  bottom: -50px;
}
}





  /* about section styling */
  .benifits-section{
    background-color: #f0f0f0a5;
    padding: 50px 0px 70px 0px;
  }
.about-text p {
  color: #717171;
  }

/* benifits cards styling */

  .feature-card {
    background-image: url('images/orange-bg.jpg'); /* change path if needed */
    background-size: cover;
    background-position: center;
    min-height: 200px;
    border-radius: 10px;
    padding: 0px 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
  }
  
  .feature-card .content {
    color: rgb(0, 0, 0);
    z-index: 2;
  }
  
  .feature-card .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  
  .feature-card .title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
  }
  .contact-card-address2{
    display: none;
  }
  .contact-card-address2 a{
    text-decoration: none;
  }
  @media (max-width: 992px) {
    .feature-card .icon {
      width: 50px;
      height: 50px;
    }
    .feature-card {
      min-height: 150px;
    }
  }
  @media (max-width: 768px) {
    .contact-card-address {
      display: none;
    }
    .contact-card-address2{
    display: block;
  }
  }

  /* end contact form styling */
  .conatct-cards{
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .conatct-cards img{
    width: 80px;
  }
  .conatct-cards-title{
    color: #6a6969;
    font-size: 1rem;
  }
  .conatct-cards a{
    text-decoration: none;
  }
  .contact-card-img img{
    width: 50px;
  }

  @media (max-width: 992px) {
    .conatct-cards .contact-card-img{
     width: 100% !important;
     display: flex;
     justify-content: center;
    }
    .conatct-cards-title{
     text-align: center;
    }
   }
   @media (max-width: 768px) {
    .contact-card-img img{
      width: 50px;
    }
   }

  /* footer styling */
  .footer-bottom{
    background-color: #17176e;
  }
.footer-link{
    color: #5c5c5c;
    transition: all ease-in-out;
}
.footer-link:hover{
    color: #ff8f49;
    transition: all ease-in-out;
}

.social_media_icons a i{
    color: #ff8f49;
    font-size: 20px;
    transition: all ease-in-out;
}

.social_media_icons a i:hover{
    transition: all ease-in-out;
    color: #17176e;
}
.footer-heading{
    color: #17176e;
    position: relative;
}
.footer-heading::after{
    position: absolute;
    content: ' ';
    background-color: #ff8f49;
    width: 80px;
    height: 2px;
    left: 0px;
    bottom: -8px;
}

@media (max-width: 768px) {
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #ff8f49;
  }
 }

/* tab styling */
.workspace-tab{
  background-color: #17176e12;
  padding: 60px 0px;
}
.tablink {
  cursor: pointer;
  margin-top: 40px;
  font-size: larger;
  padding: 12px;
  text-align: center;
  border-bottom: 2px solid #fdfdfd;
  font-weight: 500;
}
.tablink.active {
  border-bottom: 2px solid #ffa973;
  color: #ffa973;
}
.tab-content-custom {
  display: none;
}
.tab-content-custom.active {
  display: block;
}

@media (max-width: 768px) {
  .tablink {
    font-size: 15px;
    padding: 10px;
  }
  .tab-content-custom {
    padding: 20px;
  }
}

@media (max-width: 462px) {
  .tablink {
    width: 100% !important;
    margin-top: 0px;
  }
  .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .navbar-brand img {
    width: 200px !important;
    max-width: 100%;
  }
}
.tab-content-custom {
  display: none; 
}
.tab-content-custom.active {
  display: block;
}

@media (max-width: 342px) {
  .navbar-brand img {
    width: 150px !important;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  input#email.form-control {
    margin-top: 12px !important;
  }
  select#service.form-select {
    margin-top: 12px !important;
  }
}



/* new footer styling */
.new-footer {
  position: relative;
  background: url('images/10.jpeg') bottom/cover no-repeat;
  z-index: 1;
}

.new-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(23, 23, 110, 0.845); /* Overlay color with opacity */
  z-index: -1;
}

.footer-social-media a  {
  border: 1px solid white;
  border-radius: 50%;
  padding: 6px 8px;         /* Balanced padding */
  background-color: transparent;
  box-sizing: border-box;
  margin-left: 10px;
}
.footer-social-media a img {
  width: 25px;
  
}


.circle-border:hover{
  border: 1px solid #ff8f49;
}
.footer-btn button{
  background-color: transparent;
  border: 1px solid #ff8f49;
  color: #fff;
  padding: 8px 12px;
  border-radius: 50px;
  margin-right: 10px;
}
@media (max-width: 463px) {
  .footer-btn button{
    padding: 5px 10px;
    font-size: small;
  }
}
@media (max-width: 463px) {
  .footer-social-media {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
  }
 
  .footer-social-media a {
    flex: 0 0 auto; 
  }
  .footer-social-media img {
    width: 20px;
    height: 20px;
  }
  .footer-btn{
   margin: 5px 0px;
  }
}

.footer-bottom{
  background-color: #ff8f49;
}


/* about us section styling */
