* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
   font-family: Montserrat;
    font-weight: normal;
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-transform: none;
    font-style: normal;
    overflow-x: hidden;
}



/*Topbar*/

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
  background-color:#e4e4e4;
  font-style: normal;
}


.topbar-left {
  display: flex;
  align-items: center;
}

.topbar-left:hover{
  color:#0089d0
}

.topbar-item {
  display: flex;
  align-items: center;
  margin-right: 30px;
  color: #333;
  text-decoration: none;
   font-size: 14px;
}

.topbar-item:last-child {
  margin-right: 0;
}

.topbar-item i {
  margin-right: 8px;
  color: black; 
}


.Email {
  color:black; 
  text-decoration: none;
}

      
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem; 
}

.topbar-right a{
  color:black;
}



.topbar-right a:hover {
    color: #0d74b6; 
   
}
  








.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}


.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: bold;
}


.logo img{
    height:5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;

   

}




    

.nav-links a.active{
    color: #ffffff;
   background-color: #0d74b6;
    padding: 11px;
    border-radius: 5px;
}

.nav-links a.active:hover{
    color:black;
    background-color: #0d74b6;
    padding: 11px;
    border-radius: 5px;
}






.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right i.fa-search {
  font-size: 16px;
  cursor: pointer;
}


#section-1 {
 
  padding: 0; 
 
}


.image-container {
  position: relative;
  display: block;
  width: 100%; 
  max-width: 100%;
}


.image-container img {
  display: block;
  width: 100%;
 
      width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}







.service-card a {
 
  color: #000; 

 
  display: block; 
  text-decoration: none;
}

.service-card a:hover {
 
  color: #000; 
  text-decoration: none;
}



.nav-icon{
    text-decoration: none;
    color: black;
    font-size: 15px;
    
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-icon:hover{
  color: #fff;
}


.nav-links .dropdown {
  position: relative;
}





.nav-links .dropdown .mega-menu {
    position: absolute;
    top: 100%;
    left: -273px;
    width: 978px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s 
ease;
    z-index: 999;
}


.nav-links .dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



.mega-menu h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}








.carousel-item {
    transition: transform 0.8s ease-in-out !important; 
}






.carousel-caption {
    background: none !important; 
    box-shadow: none !important;
    top: 10%; 
    left:29%;
    transform: translateX(-50%);
    width: auto;
}


.carousel-caption h1, 
.carousel-caption h2 {
    display: inline-block;          
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 15px 25px;            
    border-radius: 8px;          
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); 
    
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    margin: 0;
}








.blog-button {
    position: absolute;
    top: 84%;
    /*left: 75%;*/
    right: -30%;

    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}


.blog-button:hover {
  background-color: #0056b3;
}




.services-main-heading{
  margin-top:3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.service-card {
  padding: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  height:107px;
}



.service-card:hover {
  background: #e8f5ff;
  transform: translateY(-3px);
}






.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown-menu {
    display: none; 
    position: absolute;
    background-color: #f9f9f9;

    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style-type: none;
    padding: 0;
    margin: 0;
}


.dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}



.dropdown:hover .dropdown-menu {
    display: block; 
}









.modal-btn {
  background: #fbb03b;
  color: #fff;
  border: none;
padding: 8px 10px;
  font-size: 16px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}



.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  width: 59%;

  padding: 30px;
  border-radius: 15px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}

.modal-heading {
  margin-bottom: 5px;
  text-align: center;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 5px;
}

.form-msg{
    padding-top:1rem;
}

.input-wrapper {
  position: relative;
  width:100%;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 10px 35px 10px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.input-wrapper textarea {
  height: 100px;
  resize: none;
}

.input-wrapper .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.checkbox-group {
  font-size: 13px;
  margin: 15px 0;
}

.checkbox-group a {
  color: #6a1b9a;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.captcha-logo {
  width: 50px;
}

.submit-btn {
  background:#0d74b6;;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
}












.banner-section {
 

  background-image: url(../img/youtube-bg.webp);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 150px 0;
  position: relative;
  background-attachment: fixed;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background-color: rgb(0 0 0 / 76%);
}

.banner-section .container {
  position: relative;
  z-index: 1;
}

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-text {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.banner-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  width:30%;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}




.video-play-button {
  position: relative;
  display: inline-block;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(circle at 48% 49%, #eb0000 45%, rgba(230,57,70,0.3) 46%);
  box-shadow: 0 6px 18px rgba(230,57,70,0.4);
  color: #fff;
  text-align: center;
  font-size: 2rem;
  line-height: 94px;
  transition: transform 0.3s ease;
  cursor: pointer;
  z-index: 2;
}


.video-play-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 94px;
  height: 94px;
  transform: translate(-50%, -50%) scale(0.6);
  border-radius: 50%;
  border: 5px solid rgba(230,57,70,0.4);
  animation: pulsate-btn 1.8s infinite cubic-bezier(.2,.8,.2,1);
  opacity: 1;
  pointer-events: none;
}


.video-play-button i {
  position: relative;
  z-index: 3;
  color: #fff;
  margin-left: 5px;
}

.video-play-button:hover {
  transform: scale(1.1);
}


@keyframes pulsate-btn {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  60% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}







.approach-section {
  padding: 80px 0;
 

 background-image: url('../img/Better-Results-2.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.approach-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 20%);
}

.approach-section .container {
  position: relative;
  z-index: 1; 
}

.section-title {
  /*font-size: 2.5rem;*/
  font-weight: 700;
  margin-bottom: 10px;
  color: black
  
}



.section-subtitle {
    font-size: 21px;
    color:black;
    line-height: 1.5;
    text-align: justify;
    margin-left: 16rem;
    margin-top: 2rem;
}




.approach-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 93%;
  margin-bottom: 40px;
  margin-left: 15rem;
  padding: 20px;
background-color: rgb(255 255 255 / 79%);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.approach-list-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color:#0d74b6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper i {
  font-size: 1.5rem;
  color: #fff;
}

.text-content h4 {
  font-size: 15px;
  font-weight: 600;
  color:black;
  margin-bottom: 5px;
}

.text-content p {
  font-size: 0.9rem;
  color:#111;
  line-height: 1.5;
  margin: 0;
}




.tick-list {
    list-style: none; 
    padding-left: 0; 
    text-align: initial;
       padding: 0px 15px;
}

.tick-list li::before {
    content: "✔"; 
    color:#0d74b6; 
    font-weight: bold;
    display: inline-block; 
    width: 1.2em; 
    margin-left: -1.2em; 
}




 







   
  


.Introduction{
  margin-right:2rem;
}

.who-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}




.Flair-heading {

  font-weight: 800;
 font-size:19px;

    letter-spacing: 0;
    color: #0c121d;
    text-transform: none;
    font-style: normal;
    margin-bottom: 15px;
}


.blue-heading {
    font-size:20px;
    font-weight: 600;
    color:#0d74b6;
    margin-bottom: 20px;
    display: block;
}


.who-text1{
    margin-bottom: 1rem; 
    line-height: 1.6; 
    font-size: 1rem; 
    text-align: justify;
    color: #111;
}


.para-text{
margin-bottom: 1rem;
    line-height: 1.6;

    text-align: justify;
    color: #111;
}




.read-more-btn:hover {
    background-color: #0d74b6;
    color: #fff;
}



.read-more-btn {
    display: inline-block;
    padding: 5px 9px;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #0d74b6;
    color: #0d74b6;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s 
   ease, color 0.3s 
   ease;
}


.compliance-image{
  border-radius:5px;
}

.compliance-stats-section {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-right: -16px;
}

.stat-item {
  text-align: center;
  padding: 15px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  border-radius: 8px; 
  margin-bottom: 20px; 
 
}



.stat-item i { 
  
  color: #0d74b6;;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.stat-number { 
  font-size: 2.5rem;
  font-weight: 700;
 color: #0d74b6;
  margin-bottom: 5px;
  display: block; 
}

.stat-text { 
     font-size: 17px;
    color: #333;
  margin-bottom: 0;
}





     
        .sidebar {
            border: 1px solid #e0e0e0;
            padding: 10px 0;
            border-radius: 5px;
        }

        .sidebar-item {
            padding: 12px 15px; 
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .sidebar-item:last-child {
            border-bottom: none;
        }

        .sidebar-item:hover {
            background-color: #f5f5f5;
            color:#0f75b6;
        }

        .sidebar-item.active {
            background-color:#0f75b6;
            color: white;
        }

        .sidebar-item.active i {
            color: white;
        }

        .sidebar-item i {
            color:#0f75b6;
            transition: transform 0.3s ease;
        }

        .sidebar-item.active i {
            transform: rotate(90deg);
        }

      
        .main-content {
            padding-left: 20px;
        }

        .main-content-section {
            display: none;
        }

        .main-content-section.active {
            display: block;
        }


       

        .image-section img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .text-section p,
        .text-section li {
            font-size: 16px;
            line-height: 1.7;
            color: #111;
            margin-bottom: 15px;
        }

        .text-section h3 {
            color: #2c3e50;
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 15px;
            border-bottom: 2px solid #0f75b6;
            display: inline-block;
            padding-bottom: 5px;
        }

        .text-section ul {
            list-style-type: none;
            padding-left: 0;
        }

        .text-section ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }

        .text-section ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color:#0f75b6;
            font-weight: bold;
        }

        .faq-item .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            padding-left: 15px;
        }

        .faq-item .faq-question.active+.faq-answer {
            padding-top: 15px;
            padding-bottom: 15px;
        }

        
        .services-ideal-for ol {
            list-style: decimal;
            padding-left: 20px;
        }

        .services-ideal-for ol li strong {
            font-weight: 600;
        }

        .payroll{
            margin-bottom:6rem;
        }




.compliance-main-content-section {
    padding: 60px 0 90px;
    font-family: 'Poppins', sans-serif;
}




.header-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.header-text-area {
    flex: 0 0 66.6666%; 

    padding-right: 15px;
}


.compliance-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 10px;
}

.compliance-safeguard-text {
    font-size: 1.1rem;
    color: #5a5a5a;
    font-weight: 500;
    margin-bottom: 5px;
}

.compliance-subheader-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 400;
    margin-bottom: 20px;
}


  
.compliance-header-image {
    position: relative;    
    box-shadow: 0 4px 20px 9px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

.compliance-header-image  {
    width: 100%;
    display: block;
    border-radius: 1rem;
}

.compliance-overview-block {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.overview-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.overview-icon {
   
    font-size: 0.8rem;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 50%;
    padding: 10px;
    margin-right: 15px;
}


.overview-text{
     line-height: 2.2;

    font-size: 1rem;

    text-align: justify;

    color:#111;
}



.services-main-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d74b6;
    margin-bottom: 30px;
    display: flex;
    margin-left: 36rem;
    align-items: center;
}


.services-heading-icon {
    font-size: 2rem;
    color: #007bff;
    margin-right: 10px;
}


.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
}


.service-labour {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #ffffff;
    overflow: hidden; 

    transition: all 0.2s ease-in-out;
}

.service-labour:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon {
    
        font-size: 0.8rem;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 10px;
    display: block;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-description {

        font-size: 1rem;
    line-height: 1.5;
    color:#111;
    text-align: left;

}









.service-carousel-wrapper {
  overflow: hidden; 
}

.service-cards-container {
  display: flex; 

  gap: 20px; 
  overflow-x: hidden; 
  scroll-snap-type: x mandatory;
}

.service-card-item {
  flex: 0 0 calc(33.333% - 14px); 
  scroll-snap-align: start;
}


.carousel-nav-buttons {
  text-align: right;
  margin-bottom: 20px;
  margin-top: -4rem;
}

.our-services-section {
       padding: 7rem 0 4rem;
    position: relative;
        background-color: #f8f9fa;
}
.section-header-custom {
    margin-bottom: 2rem;
    text-align: center;
    color: black;
}

.carousel-nav-buttons button {
   background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.5rem 0.8rem;
    margin-bottom: 2rem;
    color: #6c757d;
    font-size: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease-in-out;

}
.carousel-nav-buttons button:hover {
    background-color:#0d74b6;
    color: #fff;
    border-color:#0d74b6;
}

.service-carousel-wrapper {
    overflow: hidden;
}
.service-cards-container {
    display: flex;
    gap: 1.2rem;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overflow-x: auto;  
}
.service-cards-container::-webkit-scrollbar {
    display: none;
}
.service-card-item {
    flex-shrink: 0;
   
    width: 25%;
}


.service-item-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}




.service-img{
 
  height: 140px;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.card-header-gradient {
    background-color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.card-header-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
  
    transition: height 0.4s ease-in-out;
    z-index: 0;
}

.service-item-card:hover .card-header-gradient::after {
    height: 100%;
}
.header-content-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.header-content-inner i, .header-content-inner svg {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    transition: color 0.4s ease-in-out;
}
.service-item-card:hover .header-content-inner i, .service-item-card:hover .header-content-inner svg {
    color: #fff;
}
.header-content-inner h4 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #333;
    transition: color 0.4s ease-in-out;
}



.custom-card-body {
    padding: 1.5rem;
    background-color: #fff;
    text-align: center;
    
    display: flex;
    flex-direction: column; 
    flex-grow: 1; 
}



.custom-card-body .card-text {
    color: #111;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem; 
    
    
    flex-grow: 1; 
}


.btn-read-more-custom {
    background-color: #fff;
    border: 2px solid #5bc0de;
    color: #5bc0de;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}


.btn-read-more-custom:hover {
    background-color:#0d74b6 ;
    color: #fff;
    border-color: #5bc0de;
}


.icon-svg {
    width: 50px;
    height: 50px;
}


.sidebar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}

.sidebar-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item:hover {
    background-color: #f9f9f9;
}

.sidebar-item.active {
    background-color:#0f75b6;
    color: #fff;
    font-weight: bold;
}

.sidebar-item.active .fa-arrow-right {
    color: #fff;
}



.image-section {
    width: 100%;
    height: 350px; 
    background-color: #ccc; 
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-section {
    margin-top: 20px;
}

.text-section p {
    line-height: 1.6;
    font-size:1rem;
    color: #111;
}

.brochures-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.brochures-section h3 {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 10px;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007bff;
    cursor: pointer;
    font-weight: bold;
}

.download-link .fa-file-pdf {
    font-size: 24px;
}


.faq {
   
    margin: 52px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-title {
    text-align: center;
    color:#0d74b6;;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color:#0d74b6;
}

.faq-question i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9f9f9;
    padding: 0 20px;
    border-left: 3px solid #348ac2;
    margin-bottom: 10px;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}






.consult {
    background: url(images/bg.jpg) no-repeat center center / cover;
    position: relative;
    color: white;
    padding:28px;
    
    margin-bottom: 4rem;
}

   

.overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 40px;
    border-radius: 8px;
}

.left-content h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 10px;
}

.left-content h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
}


.blue {
    color: #fff;
}

.btn {
    background:#0089d0;
    border: none;
    padding: 12px 24px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background:  #008DD2;
}

.right-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    text-align: center;
}

.stat-box h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    color: #ddd;
}



.header-section {
   margin-bottom: 6rem;
    margin-top: 5rem;
}

.main-heading {
    font-size: 2.5em;
    color: #555;
    margin-bottom: 10px;
    text-align: center;
}

.main-heading .highlight {
    color: #007bff; 
}

.sub-heading {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    max-width: 800px; 
    margin: 0 auto; 
    text-align: center;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    
}

.tab-button {
    
    background-color: #fff;
 border: 1px solid #dce5e7;
     box-shadow: 0 9px 15px 0 rgb(26 47 106 / 5%) !important;
    border-bottom: none; 
   padding: 12px 25px;

    cursor: pointer;
    font-size: 1em;
    color: #555;
        border-radius: 6px;


    transition: all 0.3s ease;
    margin: 0 5px; 
    position: relative; 
    z-index: 0;

}

.tab-button:hover {
    background-color: #e9ecef;
    color: #333;
}

.tab-button.active {
    background-color: #fff;
    border-color: #ddd;
   
    color: #007bff;
    font-weight: bold;
    z-index: 1; 
}


.tab-content-wrapper {
    background-color: #fff;
        padding: 10px 110px;
   
    
}



.tab-pane {
    display: none; 
    animation: fadeIn 0.5s ease-in-out;
    align-items: flex-start; 
    gap: 30px; 
    text-align: left; 
}

.tab-pane.active {
    display: flex; 
}

.content-left {
    flex: 0 0 40%; 
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-right {
    flex: 1; 
}

.content-right p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.content-right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.content-right ul li {
    padding-left: 25px; 
    margin-bottom: 10px;
    position: relative;
    color: #555;
}

.content-right ul li::before {
    content: "\2192"; 
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
}

.read-more-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.read-more-button:hover {
    background-color: #0056b3;
}



.industries-section {
  padding: 50px 0;
      background-color: #ffffff;
    background-image: url(https://www.transparenttextures.com/patterns/brushed-alum.png);
}

.industries-title{
    font-size:25px;
    text-align: center;
      color: #0d74b6;
          margin-bottom: 0rem;
}

.industries-tagline{
  font-size: 31px;
  color:black;
    text-align: center;
    margin-bottom: 3rem;

}

.industry-box {
  border: 1px solid #ddd;

      padding: 8px 14px;
  text-align: center;
  margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
 
}

.industry-card{
  margin-bottom: 2rem;
}

.industry-box:hover {

  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
     transform: translateY(-17px);
}

.industry-icon {
  font-size: 48px;
  color: #0d74b6;
  margin-bottom: 15px;
}

.startup-icon{
    font-size: 48px;
  color: #0d74b6;
  margin-bottom: 15px;
  width: 38%;
}

.industry-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}







.testimonials {
     position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
 
}


.testimonial-title{
    text-align:center;
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background-color:#0d74b6;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background:#008DD2;
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}










  
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.slider {
  width: 100%;
  overflow: hidden; 
  background: #fff;
  margin-bottom: 3rem;
}

.slide-track {
  display: flex;
  width: 100%; 
  animation: scroll 20s linear infinite;
 
}


@keyframes scroll {
  0% { transform: translateX(0); }
 
  100% { transform: translateX(-50%); }
}


/* Courses Cards */




.read-more-link {
  display: inline-block;
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.read-more-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more-link:hover {
  color:#0d74b6;
}

.read-more-link:hover i {
  transform: translateX(5px);
}


.section-courses {
  background-color: #f8f9fa;
  padding: 5rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}


.course-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.subtitle {
  color: #6c757d;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-top: 0.5rem;
}
.title1 {
  font-size: 2.5rem;
  font-weight: 700;
  color:#0d74b6;
  margin-top: 0.5rem;
}




.course-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.course-card {
  flex: 1 1 30%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image-container {
  position: relative;
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
}

.date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color:#0d74b6;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}

.date-badge .day {
  font-size: 1.2rem;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.meta-item {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

.meta-item i {
  margin-right: 5px;
  color:#0d74b6;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
 color: #0d74b6;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}




/* CTA Banner */







.cta-banner {
  background: #0d74b6;
  color: #fff;
  padding: 20px 72px;
  position: relative;
  overflow: hidden;
  margin-top:  -2rem;

}

.cta-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #00a3ff;
}

.cta-text {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
}

.cta-right {
  text-align: end;
}

.cta-btn {
  background: transparent;
  color:#fff;
      text-decoration: none;
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}



.cta-btn:hover {
    background: #f5f5f5;
    color:black
}


.cta-banner::before {
  content: '';
  
  top: 50%;
  right: 72px;
  width: 150px;
  height: 150px;
  background: url('images/lightbulb-bg.png') no-repeat center;
  background-size: contain;
  opacity: 0.2;
  transform: translateY(-50%);
}


 
  .modal-dialog {

       max-width: 713px;
     margin-right: 15rem;
  }

  .modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
   z-index: auto;
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}


.modal-content {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.modal-header {
  background-color: #007bff;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: none;
}

.modal-title {
  font-weight: bold;
}

.btn-close {
  filter: invert(1);
}


.modal-body {
  padding: 30px;
}

.form-label {
  font-weight: 500;
  color: #333;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #ced4da;
  box-shadow: none;
}


.modal-footer {
    border-top: none;
    padding: 15px 30px;
    justify-content: center;
}

.btn-submit {
  background-color: #6c757d;
  border-color: #6c757d;
  font-weight: bold;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  font-weight: bold;
}



/*contact us*/



.contact-cards-wrapper {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center; 
    margin-bottom: 4rem;
    margin-top: 4rem;
   
}

.info-card {
    background-color: #ffffff; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
    padding: 25px; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    flex: 1; 
   
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.info-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #fbb03b; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; 
    font-size: 24px; 
    margin-bottom: 20px; 
}



.content h3 {
    font-size: 1.25rem; 
    color: #333333; 
    margin-top: 0; 
    margin-bottom: 8px; 
    font-weight: bold; 
}

.content p {
    font-size: 0.95rem; 
    color: #666666; 
    margin: 0; 
    line-height: 1.4; 
}


.content p + p {
    margin-top: 5px; 
}




.contact-section {
    display: flex;
    flex-wrap: wrap; 
    width: 100%; 
   padding-top: 3rem;
    background-color: #ffffff; 
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); 
    border-radius: 8px; 
     margin-bottom: 4rem;
    gap: 40px; 
    box-sizing: border-box; 
}

.contact-content {
    flex: 1; 
    width: 300px; 
    padding-right: 20px; 
    box-sizing: border-box;
}

.message-us {
    font-size: 0.9em;
    color: #6c757d; 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-content h1 {
    font-size: 2.5em; 
    color: #343a40; 
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

.description {
    font-size: 1em;
    color: #6c757d; 
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color:#0d74b6; 
    color: #ffffff;
    border-radius: 5px; 
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #0056b3; 
}

.contact-form {
    flex: 1; 
    width: 300px; 
    box-sizing: border-box;
}

.form-group-row {
    display: flex;
    gap: 20px; 
    margin-bottom: 20px;
}

.form-group-row input {
    flex: 1; 
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
    outline: none; 
    transition: border-color 0.3s ease;
}

.form-group-row input:focus {
    border-color: #007bff; /
}

.form-group-full {
    margin-bottom: 20px;
}

.form-group-full textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
    height: 120px; 
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group-full textarea:focus {
    border-color: #007bff;
}


.send-message-btn {
    display: block;
 
    padding: 15px 30px;
    background-color: #343a40;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s 
ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.send-message-btn:hover {
    background-color: #000000;
}


 .map {
            width: 100%;
            height: 400px;
          /*  margin-top: 40px;*/ 
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden; 
        }
        
        .map iframe {
            width: 100%;
            height: 100%;
            border: 0; 
        }


.who-we-are-section {
 
   padding: 5rem;
    background-color: #fff; 
  
}

.who-we-are-section .content-wrapper {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px; 
    align-items: center; 
}

.who-we-are-section .text-content {
    flex: 2; 
    width: 300px; 
}

.who-we-are-section .text-content p {
    margin-bottom: 15px;
    color:#111;
    font-size: 1rem;
}





.who-we-are-section .image-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; 
    z-index: 2; 
    position: relative; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
    margin-left:4rem;
  
}

	.who-we-are-section .image-content ::after{				
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 30px;
    left: 30px;
    border: 8px solid #1075b7;
    border-radius: 10px;
    z-index: -1;
    }



.who-we-are-section .image-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: 1; 
}

.about-title{
 color: black;
    font-weight: bold;
}


/*our team*/
      
        .ourteam-header {
            background-color: #fff;
            padding: 20px 0;
          
        }

        .our-team-title{
              color: #0d74b6;
              font-size: 48px;
             margin-bottom: 2rem;
        }


        .ourteam-intro-section {
        
            border-radius: 8px;
        }
        
        .ourteam-tagline {
     
            color:black;
        }

        .ourteam-leader-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .ourteam-leader-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #0056b3;
        }

        .ourteam-video-section {
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;

            margin-bottom: 5rem;
         
        }
       
    
        .lead{

        font-size: 23px;
       font-weight: 300;
       color: black;
        }


        .ourteam-content-col {
    text-align: left;
    padding: 20px;
}

    


.overlap-container {
  position: relative;
  width: 400px;   
  margin: 0 auto;
padding: 11rem;
}


.image-content {
    width: 250px;
    height: 250px;
    border-radius: 50%;
        box-shadow: 0px 0px 20px 14px #d6d6d6;
    object-fit: cover;

    position: absolute;
    top: 29px;
    left: -123px;
    z-index: 2;
}


.ourteam-video-placeholder {
 width: 100%;
  height: 400px;
  border: 3px solid #fff;
  position: absolute;
  top: 50px;    
  left: 120px;  
  z-index: 1;
}

.ourteam-video-placeholder iframe {
  width: 100%;
  height: 100%;
}







   .video-box {
    position: relative;
    display: inline-block;
    width: 100%;
    
  }


  #video-toggle {
    display: none;
  }


  .thumbnail {
    position: relative;    
    box-shadow: 0 4px 20px 9px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

.thumbnail img {
    width: 100%;
    display: block;
    border-radius: 1rem;
}


  .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
  border-radius: 50%;
 background: radial-gradient(circle at 48% 51%, #eb0000 45%, rgba(230, 57, 70, 0.3) 46%);
  box-shadow: 0 6px 18px rgba(230,57,70,0.4);
  cursor: pointer;
  z-index: 2;
  transition: transform 260ms ease;
}


.play-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 94px;
  height: 94px;
  transform: translate(-50%, -50%) scale(0.6);
  border-radius: 50%;
  border: 5px solid rgba(230,57,70,0.4);
  animation: pulsate-btn 1.8s infinite cubic-bezier(.2,.8,.2,1);
  opacity: 1;
  pointer-events: none;
}


.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  z-index: 3;
  transition: transform 300ms ease, border-left-color 260ms ease;
}


.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.play-btn:hover::after {
  transform: translate(-40%, -50%) scale(1.2);
  border-left-color: #e63946;
}


@keyframes pulsate-btn {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  60% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}




 
  .video-frame {
    display: none;
    width: 100%;
    height: 315px;
  }

  .video-frame iframe {
    width: 100%;
    height: 100%;
  }

 
  #video-toggle:checked ~ .thumbnail {
    display: none;
  }

  #video-toggle:checked ~ .video-frame {
    display: block;
  }








.about-p {

    font-size: 27px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: 0em;
    text-align: left;
    color: #0d74b6;
    text-wrap: balance;
    text-align: left;
 
}



.vision-mission-section {
  overflow: hidden;
}



.vision-column {
    background-color: #fbb03b; 
    color: #fff;
    position: relative;
    z-index: 1;
    height: 400px;
}

.mission-column {
    background-color: #EBEFF3; 
    color: #333;
    position: relative;
    height: 400px;
}


.vision-column::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    width: 100px;
    background-color: #fbb03b;
    transform: skewX(-10deg);
    transform-origin: top right;
    z-index: 2;
}

.mission-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    bottom: 0;
    width: 100px;
    background-color: #EBEFF3;
    transform: skewX(-10deg);
    transform-origin: top left;
    z-index: 0;
}

.content-container {
    padding: 1rem 6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vision-title, .mission-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vision-text, .mission-text {
    font-size: 1rem;
    line-height: 1.6;
    color:#111;
}

.mission-title {
    color: #0d74b6;
}

.bottom-icon, .top-icon {
    font-size: 80px; 
    display: block;
    margin: 0 auto;
}

.bottom-icon {
    color: #fff; 
    margin-top: 20px;
}

.top-icon {
    color: #0d74b6;
    margin-bottom: 20px;
}





.core-value-like-section {
       padding: 5rem;
    background-color: #fff;
    overflow: hidden;
}

.core-value-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2em;
    font-weight: 600;
    color: #0d74b6;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 10px;
}

.core-value-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.core-value-list-items {
    flex: 1;
  
    padding: 0;
    margin: 0;
}

.left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.core-value-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    padding: 18px 25px;
    width:100%;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}





.core-value-item:last-child {
    margin-bottom: 0;
}

.core-value-icon-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #fbb03b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    top: 3px;
}

.core-value-icon-fa {
    font-size: 0.8em;
    color: white;
}

.core-value-item p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.4;
    color: #4a4a4a;
}

.core-value-item p strong {
    font-weight: 600;
    color: #333;
}

.core-value-illustration-container {
    flex: 1;

    text-align: center;
}

.core-value-team-illustration {
    width: 100%;
    height: auto;
    display: block;
}







/* --- Our Working Process Section Styles --- */
.working-process-section {
      padding: 5rem;
    background-color: #fff; 
}

.working-process-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2em;
    font-weight: 600;
    color:#0d74b6; 
    text-align: center;
    margin-bottom: 20px; 
    border-bottom: none; 
}

.process-intro-text {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    width: 800px; 
    margin: 0 auto 50px auto; 
}

.process-steps-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
}

.process-step-item {
    background-color: #fff; 
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
    border: 1px solid #e0e6f0; 
    flex: 1 1 calc(33.333% - 40px); 
   
    box-sizing: border-box; 
}


.step-heading-wrapper {
    display: flex;
    align-items: center; 
    margin-bottom: 15px; 
}

.step-icon-box {
    flex-shrink: 0;
    width: 45px; 
    height: 45px;
    background-color: #fbb03b; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.process-icon-fa {
    font-size: 1.5em; 
    color: #fff; 
}

.step-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color:#0d74b6; 
    margin: 0; 


}

.process-step-item p {
    font-size: 1em;
    color: #666; 
    line-height: 1.6;
    margin-bottom: 0; 
}




.why-choose-us-section {
    padding: 80px 0; 
    background-color: #ffffff; 
}

.choose-us-content-wrapper {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px; 
    align-items: flex-start; 
}

.choose-us-left-col {
    flex: 1; 
    width: 350px; 
    padding-right: 20px; 
}

.choose-us-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em; 
    font-weight: 700; 
    color:#1377b8; 
    margin-bottom: 15px;
}

.choose-us-tagline {
    font-size: 1.15em; 
    color: #4a4a4a; 
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight:bold;
}

.choose-us-illustration {
    margin-top: 30px; 
   
}

.choose-us-illustration .img-fluid {
    width: 100%;
    height: auto;
    border-radius: 8px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
}

.choose-us-right-col {
    flex: 2; 
    width: 450px; 
    display: flex;
    flex-direction: column; 
    gap: 25px; 
}

.choose-us-item-card {
    background-color: #fff; 
    border-radius: 12px; 
    padding: 25px 30px; 
    display: flex;
    align-items: flex-start; 
    gap: 20px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    border: 1px solid #e0e5ed; 
}

.card-icon-wrapper {
    flex-shrink: 0; 
    width: 50px; 
    height: 50px; 
    background-color: #fbb03b; 
    border-radius: 8px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-us-icon-bs {
    font-size: 1.8em; 
    color: #fff; 
}

.card-text-content {
    flex-grow: 1; 
}

.card-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    font-weight: 600; 
    color:#0d74b6; 
    margin-top: 0;
    margin-bottom: 8px; 
}

.card-text-content p {

    color:#111; 
   

}




/* --- Compliance Details Section*/
.compliance-details-section {
    padding: 80px 0; 
    background-color: #fff;
}

.section-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #173d6b; 
    margin-bottom: 20px;
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 15px; 
}


.compliance-content-grid {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 30px; 
}

.grid-column-left,
.grid-column-right {
    background-color: #fff;
    border-radius: 8px; 
  
    padding: 30px;
    flex: 1 1 calc(50% - 20px); 
    width: 300px; 
    box-sizing: border-box; 
}

.column-sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    font-weight: 600; 
     color: #1377b8;
    margin-top: 0;
    margin-bottom: 25px; 
    display: flex; 
    align-items: center;
    gap: 10px; 
}

.column-sub-heading .line-segment-short {
    content: '';
    display: block;
    width: 40px; 
    height: 2px;
  background-color: #1377b8;
}

.icon-list {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.icon-list li {
    font-size: 1em;
    color:black; 
    margin-bottom: 18px; 
    display: flex;
    align-items: flex-start; 
    gap: 12px; 
    line-height: 1.5;
}

.icon-list li:last-child {
    margin-bottom: 0;
}

.list-icon {
    color: black; 
    font-size: 1em; 
    flex-shrink: 0; 
    position: relative;
    top: 4px; 
}

.icon-list li strong {
    color: #333; 
}







.footer {
    background-color: #f8f8f8;
    padding: 4rem 0 1rem;
   
}



.row.footer-top {
    display: flex;
    flex-wrap: wrap;
    /*gap: 30px;*/
}

.footer-section {
    padding-bottom: 20px;
}



.footer-logo {
    width: 60px;
    margin-right: 15px;
}



.support-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.support-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.support-box p strong {
    color: #333;
}

.support-icon {
    background: #0d74b6;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


.styled-heading {
  
    font-weight: 700;
    color: #333;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 16px;
}

.styled-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
}

.styled-heading::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25%;
    height: 4px;
    background-color: #0d74b6;
    z-index: 1;
}


.get-started-box {
    text-align: center;


    border-radius: 8px;
 
    margin-bottom: 30px;
}

.get-started-heading {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-transform: none;
    padding-bottom: 0;
    margin-bottom: 15px;
}

.get-started-heading::after,
.get-started-heading::before {
    display: none;
}

.get-started-img {
    width: 100%;
  
    height: auto;
    margin-bottom: 15px;
}


.get-started-text {
    font-size: 14px;
    color: #111;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.6;
    margin-bottom: 20px;
}


.connect-button {
    background-color:#0d74b6; 
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.connect-button:hover {
    background-color: #4ea9ea;
}

.follow-heading {
    margin-top: 30px;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}




.footer-links li a {
    color: #111;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}


.footer-links li a:hover {
    color: #0d74b6;
    font-weight: bold;
    padding-left: 8px;
    transition: all 0.3s ease;
}



.address-text {
    font-size: 14px;
    color: #111;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    color: #777;
    font-size: 16px;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0d74b6;
    color: #fff;
    border-color: #0d74b6;
}


.footer-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
   
}


.footer-bottom-link{
    text-decoration:none;
}

.copyright {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.bottom-links {
 
    gap: 20px;
    flex-wrap: wrap;
}

.bottom-links a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #0d74b6;
}

.scroll-top {
    background: #000;
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.scroll-top:hover {
    background-color: #333;
}



.blog-article-content,
.blog-impact-section {
    padding: 70px 0 40px 0;
    background-color: #ffffff;
}



.article-main-title {

    font-weight: 800; 
    color:#0d74b6; 
    font-size: 38px; 
    margin-bottom: 15px; 
    line-height: 1.2;
    text-align: left;
}


.effective-date {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #0d74b6; 
    margin-top: 10px;
}


.lead-paragraph {
    font-size: 19px;
    font-weight: 500;
    color: #444;
    border-left: 5px solid #0d74b6; 
    padding-left: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}


.section-heading, .impact-title {

    font-weight: 700; 
    color: #0d74b6; 
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d74b6;
}




.code-block {
    margin-bottom: 35px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #0d74b6; 
    border-radius: 6px;
    background-color: #fcfcfc;
}
.code-title {
  
    font-weight: 600;
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
}


.benefit-list, .impact-list {
    list-style-type: none; 
    padding-left: 0;
}
.benefit-list li, .impact-list li {
  
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.benefit-list li::before, .impact-list li::before {
    content: "\2713"; 
    color: #0d74b6; 
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}


.impact-quote {
    margin: 30px 0;
    padding: 20px 30px;
   
    border-left: 5px solid #007bff;
    font-style: italic;
    font-size: 18px;
    color: #333;
    border-radius: 4px;
}
.impact-quote p {
    margin-bottom: 0;
    text-align: left;
}




.blog-card-img {
  height: auto;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

/*
.blog-hover-card:hover .blog-card-img {
    transform: scale(1.1); 
}*/

.blog-hover-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.blog-hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.card-title {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.blog-hover-card:hover .card-title {
    color:#0d74b6;
}

.blog-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color:#0d74b6; 
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px; 
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    text-align: center;
}

.blog-btn:hover {
    background-color: transparent;
    color: #0d6efd !important;
    border-color: #0d6efd;
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3); 
}

.card-body .blog-btn {
    width: fit-content;
    align-self: flex-start; 
}



/*library*/

.library{

    padding-top:2rem;
    padding-bottom:3rem;

}

.btn-library{
   
    border: 1px solid #a1c6fe;
    border-radius: 10px;
    background-color: #f9fbff;
    padding: 12px 20px 18px;
    text-align: center;
    color:black;
    margin: auto;
}

