body {
    font-family: Arial, sans-serif;
    background-color: #ffffff !important;
}
html, body {
  overflow-x: hidden;
}


.nav-item a {
  color: black !important;
  /* border-left: 0.5px solid rgba(255, 255, 255, 0.7); */
  padding-left: 10px; /* Ensure even spacing */
  text-decoration: none; /* Remove default underline */
  position: relative; /* Needed for underline effect */
  transition: color 0.3s ease-in-out; /* Smooth transition */

}

/* Hover Effect - Change text color to purple */
.nav-item a:hover {
  /* color: #bf0000 !important; */
  color: #c645f9 !important;
}
.main-nav-container{
  display: flex;
}

/* Active Link - Underline effect */
.nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* Space between text and underline */
  width: 100%;
  height: 2px;
  background-color: #c645f9;
  transform: scaleX(0); /* Initially hidden */
  transition: transform 0.3s ease-in-out;
}

/* Show underline on hover & when active */
.nav-item a:hover::after,
.nav-item a.active::after {
  transform: scaleX(1);
}
/* Remove the left border for the first nav item */
.nav-item:first-child a {
  border-left: none;
}

.content-section {
    padding: 50px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

footer {
    background-color: #282e62;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}


/* Hero section styling */

.hero-section{
    margin-top:49px;

}

/* Full-width images */
.carousel-item img {
   
        height: 480px; /* Adjust height */
        object-fit: cover;
        animation: zoomOut 2s ease-out forwards;
       
      }
      
      @keyframes zoomOut {
        from {
          transform: scale(1.5);
        }
        to {
          transform: scale(1);
        }
      }
/* Caption styling */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5); 
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    
  }


/* Letter-by-letter animation */
.animated-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeSlideUp 0.5s ease forwards ;
}

/* Staggered effect */
.animated-title span:nth-child(1) { animation-delay: 0.05s; } 
.animated-title span:nth-child(2) { animation-delay: 0.1s; }
.animated-title span:nth-child(3) { animation-delay: 0.15s; }
.animated-title span:nth-child(4) { animation-delay: 0.2s; }
.animated-title span:nth-child(5) { animation-delay: 0.25s; }
.animated-title span:nth-child(6) { animation-delay: 0.3s; }
.animated-title span:nth-child(7) { animation-delay: 0.35s; }
.animated-title span:nth-child(8) { animation-delay: 0.4s; }
.animated-title span:nth-child(9) { animation-delay: 0.45s; }
.animated-title span:nth-child(10) { animation-delay: 0.5s; }

/* Fade-in animation for captions */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initially hide text */
.animated-text {
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item img {
        height: 70vh; /* Reduce banner height on smaller screens */
    }
    .carousel-caption {
        width: 90%;
        padding: 15px;
        /* height: 300px; */
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        height: 70vh; /* Reduce banner height on smaller screens */
    }
    .carousel-caption {
        bottom: 15%;
        width: 95%;
        height: 370px;
    }
}

.carosul-buttonn{
  display: flex;
  justify-content: space-evenly;
}

@media(max-width:768px){
  .carosul-buttonn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin: 10px; */
    padding: 10px;
  }
  
}
.carosul-buttonn a{
  text-decoration: none;
}


/* //about us style  */

/*  */

.about-heading{
    text-align: center;
    margin-bottom: 40px;
}

.about-icon-span{
    margin-bottom: 10px;
}
.about-icon-span span{
    font-size: large;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.about-icon-span i {
    font-size: large;
    color: #282e62;
}

.image-div {
    display: flex; /* Ensures the image is centered if needed */
    align-items: center; /* Vertically centers the image */
    justify-content: center; /* Horizontally centers the image */
    height: 100%; /* Full height of the parent */
    width: 100%; /* Full width */
}

.image-divv {
  display: flex; /* Ensures the image is centered if needed */
  align-items: center; /* Vertically centers the image */
  justify-content: center; /* Horizontally centers the image */
  height: 100%; /* Full height of the parent */
  width: 100%; /* Full width */
}

.image-div img {
    width: 100%; /* Ensures the image covers the container */
    height: 100%; /* Makes the image fill the container */
    object-fit: cover; /* Ensures the image maintains aspect ratio while covering the space */
}

.image-divv img {
  width: 100%; /* Ensures the image covers the container */
  height: 100%; /* Makes the image fill the container */
  object-fit: cover; /* Ensures the image maintains aspect ratio while covering the space */
}


/* coueses css  */

.courses-container{
 
    margin-top: 20px;
}
.course-card {
    background-color: #faf2f2;
    border-radius: 3px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
   
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.course-icon {
    font-size: 30px;
    color: #282e62;
    margin-bottom: 10px;
}
.course-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 40px;
}

@media(max-width:768px){
    .course-title{
        margin: 0 !important;
    }
}


/* ttools */ 

.tools-container-section{
    margin-top: 50px;
    /* background-color: #faf2f2; */
}

.top-content {
    height: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow {
    margin-left: auto;
    font-size: 18px;
}

.d-none {
    display: none;
}
.sub-dv-tools{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 20px; */
}

.tools-column {
    width: 30% !important ;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    position: relative;
    background-color: #d6cacac2;
}
.arrow {
    font-size: 42px;
    cursor: pointer;
    display: inline-block;
    margin-top: -9px;
}
.arrow-div{
    background: #282e62;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #b5c0e1;
}
.arrow-div:hover{
    background: white;  
    color: #282e62;
    border: 1px solid #282e62;

}
.text-content {
    margin-top: 10px;
    display: none; /* Initially hidden */
}

/* //why choose  */
.whychose-section{
    margin-top: 50px;
    /* background-color: #faf2f2; */
}
/* 
.cover_boxes {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}
.box {
    display: flex;
    align-items: center;
    width: 350px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
    flex-direction: row;
    background-color: #d6cacac2;
}
.box:hover {
    transform: scale(1.05);
}
.thumb img {
    width: 150px;
    height: 169px;
    display: block;
}
.box_content {
    padding: 15px;
}
.box_content h3 {
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
}
.box_content p {
    font-size: 14px;
    color: #555;
}
.qbutton {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}
.qbutton:hover {
    background: #0056b3;
}


 */

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {}
 a,
 a:hover,
 a:focus,
 a:active {
     text-decoration: none;
     outline: none;
 }
 
 a,
 a:active,
 a:focus {
     color: #333;
     text-decoration: none;
     transition-timing-function: ease-in-out;
     -ms-transition-timing-function: ease-in-out;
     -moz-transition-timing-function: ease-in-out;
     -webkit-transition-timing-function: ease-in-out;
     -o-transition-timing-function: ease-in-out;
     transition-duration: .2s;
     -ms-transition-duration: .2s;
     -moz-transition-duration: .2s;
     -webkit-transition-duration: .2s;
     -o-transition-duration: .2s;
 }
 
 ul {
     margin: 0;
     padding: 0;
     list-style: none;
 }
 img {
max-width: 100%;
height: auto;
}
span, a, a:hover {
display: inline-block;
text-decoration: none;
color: inherit;
}
.section-head {
margin-bottom: 10px;
}
.section-head h4 {
position: relative;
padding:0;
color:#bf5252 !important;
line-height: 1;
letter-spacing:0.3px;
font-size: 30px;
font-weight: 700;  
text-align:center;
text-transform:none;
margin-bottom:30px;
}


.section-head h4:before {
content: '';
width: 100px;
height: 3px;
    background-color: #0077B5;
position: absolute;
left: 0px;
bottom: -10px;
right:0;  
margin:0 auto;
}
.section-head h4 span {
font-weight: 700;
padding-bottom: 5px;
color:#2f2f2f
}
p.service_text{
color:#cccccc !important;
font-size:16px;
line-height:28px;
text-align:center;    
}
.section-head p, p.awesome_line{
color:#818181;
font-size:16px;
line-height:28px;
text-align:center;  
}

.extra-text {
font-size:34px;
font-weight: 700;
color:#2f2f2f;
margin-bottom: 25px;
position:relative;
text-transform: none;
}
.extra-text::before {
content: '';
width: 60px;
height: 3px;
background: #282e62;
position: absolute;
left: 0px;
bottom: -10px;
right: 0;
margin: 0 auto;
}
.extra-text span {
font-weight: 700;
color:#282e62;
}
.item {
background: #fff;
text-align: center;
padding: 30px 25px;
-webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
/* border-radius: 20px; */
border:5px solid rgba(0, 0, 0, 0.07);
margin-bottom: 30px;
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}
.item:hover{
background:#282e62;
color: black !important;
box-shadow:0 8px 20px 0px rgba(0, 0, 0, 0.2);
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}
.item:hover .item, .item:hover span.icon{
background:#fff;
border-radius:10px;
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}
.item:hover h6, .item:hover p{
color:#fff;
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}
.item .icon {
font-size: 40px;
margin-bottom:25px;
color: #bf0000 !important;   
width: 90px;
height: 90px;
line-height: 96px;
border-radius: 50px;
}
.item .feature_box_col_one{
background:rgba(247, 198, 5, 0.20);
color:#282e62
}
.item .feature_box_col_two{
background:rgba(255, 77, 28, 0.15);
color:#282e62
}
.item .feature_box_col_three{
background:rgba(0, 147, 38, 0.15);
color:#282e62
}
.item .feature_box_col_four{
background:rgba(0, 108, 255, 0.15);
color:#282e62
}
.item .feature_box_col_five{
background:rgba(146, 39, 255, 0.15);
color:#282e62
}
.item .feature_box_col_six{
background:rgba(23, 39, 246, 0.15);
color:#282e62
}
.item p{
font-size:15px;
line-height:26px;
}

.item h6 {
margin-bottom:20px;
font-size: 17px;
color:#2f2f2f;
}
.mission p {
margin-bottom: 10px;
font-size: 15px;
line-height: 28px;
font-weight: 500;
}
.mission i {
display: inline-block;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
background: #282e62;
border-radius: 50%;
color: #fff;
font-size: 25px;
}
.mission .small-text {
margin-left: 10px;
font-size: 13px;
color: #666;
}
.skills {
padding-top:0px;
}
.skills .prog-item {
margin-bottom: 25px;
}
.skills .prog-item:last-child {
margin-bottom: 0;
}
.skills .prog-item p {
font-weight: 500;
font-size: 15px;
margin-bottom: 10px;
}
.skills .prog-item .skills-progress {
width: 100%;
height: 10px;
background: #e0e0e0;
border-radius:20px;
position: relative;
}
.skills .prog-item .skills-progress span {
position: absolute;
left: 0;
top: 0;
height: 100%;
background: #282e62;
width: 10%;
border-radius: 10px;
-webkit-transition: all 1s;
transition: all 1s;
}
.skills .prog-item .skills-progress span:after {
content: attr(data-value);
position: absolute;
top: -5px;
right: 0;
font-size: 10px;
font-weight:600;    
color: #fff;
background:rgba(0, 0, 0, 0.9);
padding: 3px 7px;
border-radius: 30px;
}


/* //contact us  */


  
/* }
.contact-form-wrapper {
    padding: 10px 0;

  }
  
  .contact-form {
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 400px;
  }
  
  .contact-form textarea {
    resize: none;
  }
  
  .contact-form .form-input,
  .form-text-area {
    background-color: #f0f4f5;
    height: 50px;
    padding-left: 16px;
  }
  
  .contact-form .form-text-area {
    background-color: #f0f4f5;
    height: auto;
    padding-left: 16px;
  }
  
  .contact-form .form-control::placeholder {
    color: #aeb4b9;
    font-weight: 500;
    opacity: 1;
  }
  
  .contact-form .form-control:-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
  }
  
  .contact-form .form-control::-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
  }
  
  .contact-form .form-control:focus {
    border-color: #282e62;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #282e62;
  }
  
  .contact-form .title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
  }
  
  .contact-form .description {
    color: #aeb4b9;
    font-size: 14px;
    text-align: center;
  }
  
  .contact-form .submit-button-wrapper {
    text-align: center;
  }
  
  .contact-form .submit-button-wrapper input {
    border: none;
    border-radius: 4px;
    background-color: #282e62;
    color: white;
    text-transform: uppercase;
    padding: 10px 60px;
    font-weight: 500;
    letter-spacing: 2px;
  }
  
  .contact-form .submit-button-wrapper input:hover {
    background-color: #282e62;
  }
  

    */
  section {
      padding: 2px 0;
      /* min-height: 100vh; */
  }
.contact-info {
display: inline-block;
width: 100%;
text-align: center;
margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
background: #282e62;
padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
color: #282e62;
text-transform: capitalize;
font-size: 22px;
font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
padding-left: 0;
}  
.contact-page-form.contact-form input {
margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
background: #282e62;
width: 150px;
border-color: #282e62;
}
.contact-info-icon i {
font-size: 48px;
color: #b5c0e1;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
color: #fff;
font-size: 22px;
text-transform: capitalize;
font-weight: 600;
margin-bottom: 10px;
}
.contact-info-text span {
color: white;
font-size: 16px;
/* font-weight: ; */
display: inline-block;
width: 100%;
}

.contact-page-form input {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
margin-bottom: 20px;
padding: 12px 16px;
width: 100%;
border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
width: 100%;
height: 120px;
padding: 12px 16px;
border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
background: #c645f9 none repeat scroll 0 0;
color: white;
display: inline-block;
font-weight: 600;
padding: 10px 0;
text-transform: capitalize;
width: 150px;
margin-top: 20px;
font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#282e62;transition: all 0.4s ease-in-out 0s;border-color:#282e62}
.single-input-field  h4 {
color: #464646;
text-transform: capitalize;
font-size: 14px;
}
.contact-page-form {
display: inline-block;
width: 100%;
margin-top: 30px;
}

.contact-page-map {
margin-top: 36px;
}
.contact-page-form form {
padding: 20px 15px 0;
}
/* //syllbaus  */

.program-section{
    margin-top: 50px;
    /* background-color: #faf2f2; */
    /* margin-bottom: 100px;; */
}

.module-list {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    text-align: center;
    background-color: #f8f9fa;
    transition: 0.3s;
}
.module-list:hover, .module-list.active {
    background-color: #282e62;
    color: white;
}
.module-content {
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #ffffff;
}

.module-list {
    display: flex;
}

.moadule-colo-list{
    width: auto;
    height: 374px;

    display: flex;

    align-items: center;
    justify-content: center
}

@media (max-width: 768px) {
    .module-list {
        font-size: 14px;  /* Smaller font for mobile */
        padding: 12px;  /* More padding for touch-friendly tap */
        text-align: left;  /* Align text for better readability */
    }

    .module-list i {
        margin-right: 8px; /* Adjust spacing for icons */
    }

    .tools-column {
        /* display: flex; */
        /* flex-direction: column; */
      width: 100% !important;  
        margin-bottom: 15px; /* Add spacing between sections */
    }

    .col-md-8 {
        width: 100%; /* Make content full width */
    }

    .module-content {
        padding: 15px;
        font-size: 14px;  /* Reduce font size for better readability */
    }
}.module-content {
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.module-content h4 {
    color: #282e62;
    margin-bottom: 15px;
}

.module-content ul {
    padding: 0;
    list-style: none;
}

.module-content ul li {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.module-content ul li:last-child {
    border-bottom: none;
}

.module-content ul li:hover {
    background-color: #f8f9fa;
}

.answer {
    display: none;
    font-size: 14px;
    color: #333;
    margin-top: 5px;
    padding: 10px;
    border-left: 4px solid  #282e62;
    background: #f1f1f1;
    border-radius: 5px;
}

/* Adding animation for smooth effect */
.answer.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-button{     
        position: relative;
        display: block;
        width: 9%;
        background-image: linear-gradient(to right, #6e76a0, #0b1650);
            /* background-color: #6e76a0; */
        /* background-color: #0077B5; */
       border-radius: 10px; 
        /* border: 1px solid #0077B5; */ 
        color: white;
        font-size: 16px;
        line-height: 30px;
        font-weight: 600;
        text-align: center;
        text-transform: capitalize;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        cursor: pointer;    
}
.module-button:hover { 
  background-image: linear-gradient(to right, #0b1650, #6e76a0);
  color: white;
  transform: scale(1.05); 
}

.module-button-contact{
  position: relative;
  display: block;
  width: 14%;
      background-color: #0077B5;
  border-radius: 10px;
  border: 1px solid #0077B5;
  color: white;
  font-size: 16px;
  line-height: 41px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: pointer; 

}

.module-button-contact:hover{
   background-color: white; /* Reverse gradient on hover */
  transform: scale(1.05); /* Slight zoom effect */
        border: 1px solid #0077B5;
        color: #0077B5;

}
.next-btn {
    display: none;
    width: 100%;
    margin-top: 15px;
}


/* Mobile Styles */
@media (max-width: 768px) {
    .module-list-div {
        display: none; /* Hide module list on mobile */
    }
    .next-btn, .module-button {
        display: flex; 
        position: relative;
        display: block;
        width: 60%;
        background-color: #0077B5;
         /* Reverse gradient on hover */
        transform: scale(1.05); /* Slight zoom effect */
        border: 1px solid #0077B5;
        color: white;
        font-size: 16px;
        line-height: 41px;
        font-weight: 600;
        text-align: center;
        text-transform: capitalize;
        transition: all 200ms linear;
        transition-delay: 0.1s;
        cursor: pointer;
    }
    .next-btn:hover{
       background-color: white; /* Reverse gradient on hover */
      transform: scale(1.05); /* Slight zoom effect */
            border: 1px solid #0077B5;
            color: white;
    }
}

/* //timeline css  */

h2 {
  margin: 5%;
  text-align: center;
  font-size: 2rem;
  font-weight: 100;
}
.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}
.timeline__event:nth-child(2n + 1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n + 1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
.timeline__event:nth-child(2n + 1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
.timeline__event:nth-child(2n + 1) .timeline__event__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f6a4ec;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event:nth-child(2n + 1) .timeline__event__icon::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f6a4ec;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  animation: fillLeft 2s forwards 4s ease-in-out;
}
.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #c645f9;
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 
              0 18px 36px -18px rgba(0, 0, 0, 0.3), 
              0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
}
.timeline__event__date {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  background: #c645f9;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
}
.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c645f9;
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  background: #f6a4ec;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  position: relative;
}
.timeline__event__icon i {
  font-size: 32px;
}
.timeline__event__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f6a4ec;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event__icon::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f6a4ec;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  animation: fillLeftOdd 2s forwards 4s ease-in-out;
}
.timeline__event__description {
  flex-basis: 60%;
}
.timeline__event--type2 .timeline__event__date {
  color: white;
  background: #2e325c;
}
.timeline__event--type2 .timeline__event__icon {
  background: #4a688e;
  color: #282e62;
}
.timeline__event--type2 .timeline__event__title {
  color: #282e62;
}
.timeline__event--type3 .timeline__event__date {
  color: #aff1b6;
  background-color: #24b47e;
}
.timeline__event--type3 .timeline__event__icon {
  background: #aff1b6;
  color: #24b47e;
}
.timeline__event--type3 .timeline__event__title {
  color: #24b47e;
}
.timeline__event:last-child .timeline__event__icon::before {
  content: none;
}
@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon::before, .timeline__event__icon::after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n + 1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n + 1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n + 1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
    width: 90%;
    margin: 10px auto;
  }
  .timeline__event__content {
    width: 100%;
    padding: 15px;
  }
  .timeline__event__icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    padding: 15px;
  }
  .timeline__event__date {
    font-size: 1.2rem;
    padding: 10px;
    text-align: center;
  }
  .timeline__event__title {
    font-size: 1rem;
    text-align: center;
  }
  .timeline__event__description {
    font-size: 0.9rem;
    text-align: center;
  }
  h2 {
    font-size: 1.8rem;
    margin: 10px 5%;
  }
}
.popup-btn {
    background-color: #282e62;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1000;
  }
  .popup-btn:hover {
    background-color: #282e62;
  }

  .popup-overlay {
    display: none;
    position: fixed;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

  .popup-content {
    background: white;
    padding: 30px;
    max-width: 400px;
    margin: 10% auto;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }
  .popup-title {
    text-align: center;
    font-size: 24px;
  }
  .popup-description {
    text-align: center;
    color: #aeb4b9;
  }
  .popup-input,
  .popup-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  .popup-input:focus,
  .popup-textarea:focus {
    border-color: #282e62;
    box-shadow: 0 0 8px #282e62;
  }
  .popup-submit-wrapper {
    text-align: center;
  }
  .popup-submit {
    background-color: #c645f9;
    color: white;
    padding: 10px 60px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .popup-submit:hover {
    background-color: #c645f9;
    border: 1px solid #0077B5;
    color: white;
  }
  .spinner {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cont-container{
  display: block;
 
}

@media (max-width:768px){ 
  .cont-container{
    display: none;
  }
  
}

.content {
  position: relative;
  display: inline-block;
}

.rbt-feature-plugin {
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 10px;
  border-radius: 5px;
  width: 250px;
  font-size: 14px;
  z-index: 10;
  white-space: normal;
}

.content:hover .popup {
  display: block;
}

.thumbnail {
  width: 100px;
  height: 100px;
  /* background-color: #dee2e659; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail img {
  width: 75px;
  height: 75px;
  /* border-radius: 10%; */
}


.inner{
  display: flex;
  flex-direction: column;
  align-items: center;

}

.content{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rbt-feature-column:nth-child(odd) {
  padding-top: 50px;
}
@media (max-width:325px){
  .rbt-feature-column:nth-child(odd) {
    padding-top: 0px !important;
}
.thumbnail {
  width: 70px;
  height: 70px;
  /* background-color: #dee2e659; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail img {
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
}

}

/* project */
.fact-counter-wrapper {
  position: relative;
  background: url("tools/banner-1.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  background-attachment: fixed;
  background-position: center center;
  padding: 5px 0;
}

.fact-counter-wrapper:before {
  background-color: rgba(0, 0, 0, 0.31);
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
}

.container-project {
  z-index: 1;
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.row-project {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.col-project {
  flex: 1 1 calc(50% - 20px); /* Two columns in one row */
  max-width: calc(50% - 20px);
  display: flex;
  justify-content: center;
}

.single-fact {
  text-align: center;
  width: 100%;
}

.single-fact .icon-boxed {
  width: 70px;
  height: 70px;
  font-size: 45px;
  color: #ffd700;
  text-align: center;
  line-height: 50px;
  margin: 0 auto;
}

.single-fact span {
  padding: 4px 0;
  line-height: 1.2;
  display: block;
  font-size: 40px;
  color: #fff !important;
  font-weight: 700;
}

.single-fact p {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  color: #ffd700;
  font-weight: 500;
}

/* Existing styles remain unchanged */

/* Mobile View Adjustments */
/* Existing styles remain unchanged */

/* Mobile View Adjustments (2 items per row) */
@media (max-width: 768px) {
  .row-project {
      flex-wrap: wrap; /* Allow wrapping */
      justify-content: center;
  }

  .col-project {
      flex: 1 1 48%; /* Two items in one row */
      max-width: 48%;
      padding: 5px; /* Reduce spacing */
      display: flex;
      justify-content: center;
  }

  .single-fact {
      width: 100%;
      text-align: center;
  }

  .single-fact .icon-boxed {
      width: 50px; /* Reduce icon size */
      height: 50px;
      font-size: 30px;
      line-height: 20px;
  }

  .single-fact span {
      font-size: 22px; /* Reduce number size */
  }

  .single-fact p {
      font-size: 13px; /* Reduce text size */
  }

  .section-head h4{
    font-size: 19px !important;
  }

  .module-button{
    width: 44% !important;
    border-radius: 10px;
  }
}




/* ourcliebts  */.logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    position: relative;
}

.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 20s slide infinite linear;
}

.logos-slide img {
    width: 155px !important;
    height: 79px !important;
    margin: 0 20px !important;
    object-fit: contain; /* Ensure images maintain aspect ratio */
}

/* Keyframes for slide animation */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Ensure the second slider runs smoothly */
.logo-slider .logos-slide:nth-child(2) {
    animation-delay: 22.5s; /* Delay for the second slider to create a smooth transition effect */
}


/* Testimonial */
.testimonials-wrap {
  padding: 40px 0;
}

.heading-section {
  text-align: center;
}

.sub-heading {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  display: block;
  font-weight: 600;
  color: #2e9ca1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.heading-section h2 {
  font-size: 28px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 15px;
}

.testimonial-box {
  display: block;
  position: relative;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.03);
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .08);
}

.user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  min-width: 80px;
  background-size: 100%;
}

.carousel-testimonial .item {
  padding: 30px 10px;
}

.quote {
  position: absolute;
  top: -23px;
  color: #2e9da1;
  font-size: 27px;
}

.name {
  margin-bottom: 0;
  line-height: 14px;
  font-size: 17px;
  font-weight: 500;
}

.position {
  color: #adadad;
  font-size: 14px;
}

.carousel-testimonial .owl-nav {
  text-align: center;
}

.carousel-testimonial .owl-nav button.owl-next, 
.carousel-testimonial .owl-nav button.owl-prev {
  padding: 0 12px !important;
}

.carousel-testimonial .owl-nav button {
  outline: none;
  padding: 0;
}

.carousel-testimonial .owl-nav button.owl-next span, 
.carousel-testimonial .owl-nav button.owl-prev span {
  display: block;
  font-size: 40px;
  width: 25px;
  height: 25px;
  vertical-align: 0px;
  line-height: 16px;
}

.carousel-testimonial .owl-nav button.owl-next.disabled, 
.carousel-testimonial .owl-nav button.owl-prev.disabled {
  opacity: 0.5;
}

/* //syllabuls */

.custom-module-container {
  margin-top: 20px;
}
.custom-module-box {
  display: none;
  position: relative;
  background-image: url('tools/steptodown.com716621.jpg'); /* Change your image */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 10px 50px;
  text-align: start;
  /* border-radius: 10px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* border-radius: 10px; */
}
.custom-content {
  position: relative;
  z-index: 1;
}
.custom-btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.custom-btn {
  padding: 10px 20px;
  font-size: 16px;
  /* background: linear-gradient(#c645f9, #282e62) !important;
        border: 1px solid #c645f9 !important; */
        background-color: #0077B5;
        border: 1px solid #0077B5;
  color: white;
  border-radius: 10px;
 
  cursor: pointer;
  /* border-radius: 5px; */
  transition: background 0.3s ease;
}
.custom-btn:hover {
  /* background-image: linear-gradient(#282e62, #c645f9) !important; */
   /* Reverse gradient on hover */
  transform: scale(1.05); /* Slight zoom effect */
        /* border: 1px solid #c645f9 !important;
        color: white; */
        background-color: white;
        border: 1px solid #0077B5;
  color: #0077B5;
}

@media(max-width:320px){
  .custom-btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    flex-direction: column;
  }
}

/* FAQ  */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  /* background: white; */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq-category {
  margin-bottom: 20px;
}
.faq-title {
  font-size: 22px;
  color: black;
  margin-bottom: 10px;
  text-align: center;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  text-align: left;
  /* background: ; */
  color: black;
  padding: 15px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: #282e62;
  color: white;
}
.faq-answer {
  display: none;
  padding: 15px;
  background: #f9f9f9;
  font-size: 16px;
  color: #333;
}
.active {
  background: #282e62;
}
.arrow {
  font-size: 16px;
  margin-left: 10px;
  text-align: right;
}


/* //header  */

.image-container {
  position: relative;
  width: 100%;
}

/* Full-width image */
.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Enquiry form box */
.enquiry-box {
  position: absolute;
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.enquiry-box h2 {
  text-align: center;
  margin-bottom: 15px;
}

.enquiry-box form {
  display: flex;
  flex-direction: column;
}

.enquiry-box input {
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.enquiry-box button {
  padding: 12px;
  background: linear-gradient(#c645f9, #282e62) !important;
  border: 1px solid #c645f9 !important;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 500;
}

.enquiry-box button:hover {
  background-image: linear-gradient(#282e62, #c645f9) !important; /* Reverse gradient on hover */
  transform: scale(1.05); /* Slight zoom effect */
        border: 1px solid #c645f9 !important;
        color: white;
}
.mobile-container {
  display: none;
}

/* Responsive for small screens */
@media (max-width: 480px) { /* Adjusted for wider small devices */
  .enquiry-box, .image-container {
    display: none;
  }

  
  .mobile-container {
    display: block;
 
      position: relative;
      width: 100%;
    
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  .mobile-container img {
    width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width:768px){
  .enquiry-box {
    display: none;
}
}

/* placement  */

.container-placement {
  display: flex;
  align-items: flex-start; /* Align items at the start */
  justify-content: flex-start; /* Start alignment */
  gap: 20px; /* Space between sections */
  flex-wrap: wrap;

}

/* Text Section */
.content-placement {
  flex: 2;
  max-width: 65%;
  text-align: left;
}

/* Image Section */
.image-placement {
  flex: 1;
  max-width: 30%;
}

.image-placement img {
  width: 100%;
  height: auto;
  display: block;
}

/* Headings */
.heading-placement {
  color: #282e62;
}

/* Unordered Lists */
.list-placement {
  list-style: none;
  padding-left: 0;
}

.list-placement li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

/* Add Bullet Icons */
.list-placement li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c645f9;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container-placement {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .content-placement, .image-placement {
      max-width: 100%;
  }

  .image-placement img {
      max-width: 80%;
  }
}

/* Default styling for desktop */
.next-batch-table {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

/* Button styles */
 .module-button-contact {
  padding: 1px 5px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-color: #0077B5;
  color: white;
  border: 1px solid  #0077B5;
  border-radius: 5px;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .next-batch-table {
      flex-direction: column; /* Stack buttons vertically */
      align-items: center; /* Center buttons */
      gap: 5px; /* Reduce spacing */
  }

  .module-button-contact {
      width: 90%; /* Make buttons wider for better touch experience */
      font-size: 14px; /* Reduce font size */
      padding: 1px 5px; /* Adjust padding */
  }
}


.modal-box{ font-family: 'Poppins', sans-serif; }
.show-modal{
    color: #fff;
    background: linear-gradient(to right, #33a3ff, #0675cf, #49a6fd);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 15px;
    margin: 200px auto 0;
    border: none;
    outline: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: block;
    transition: all 0.3s ease 0s;
}
.show-modal:hover,
.show-modal:focus{
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    outline: none;
}
.modal-dialog{
    width: 400px;
    margin: 70px auto 0;
}
.modal-dialog{ transform: scale(0.5); }
.modal-dialog{ transform: scale(1); }
.modal-dialog .modal-content{
    text-align: center;
    border: none;
}
.modal-content .close{
    color: #fff;
    background: linear-gradient(to right, #33a3ff, #0675cf, #4cd5ff);
    font-size: 25px;
    font-weight: 400;
    text-shadow: none;
    line-height: 27px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 1;
    position: absolute;
    left: auto;
    right: 8px;
    top: 8px;
    z-index: 1;
    transition: all 0.3s;
}
.modal-content .close:hover{
    color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.close:focus{ outline: none; }
.modal-body{ padding: 60px 40px 40px !important; }
.modal-body .title{
    color: #026fd4;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.modal-body .description{
    color: #9A9EA9;
    font-size: 16px;
    margin: 0 0 20px;
}
.modal-body .form-group{
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}
.modal-body .input-icon{
    color: #777;
    font-size: 18px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 20px;
}
.modal-body .form-control{
    font-size: 17px;
    height: 45px;
    width: 100%;
    padding: 6px 0 6px 50px;
    margin: 0 auto;
    border: 2px solid #eee;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
}
.form-control::placeholder{
    color: #AEAFB1;
}
.form-group.checkbox{
    width: 130px;
    margin-top: 0;
    display: inline-block;
}
.form-group.checkbox label{
    color: #9A9EA9;
    font-weight: normal;
}
.form-group.checkbox input[type=checkbox]{
    margin-left: 0;
}
.modal-body .forgot-pass{
    color: #7F7FD5;
    font-size: 13px;
    text-align: right;
    width: calc(100% - 135px);
    margin: 2px 0;
    display: inline-block;
    vertical-align: top;
    transition: all 0.3s ease 0s;
}
.forgot-pass:hover{
    color: #9A9EA9;
    text-decoration: underline;
}
.modal-content .modal-body .btn{
    color: #fff;
    background: linear-gradient(to right, #33a3ff, #0675cf, #4cd5ff);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 38px;
    width: 100%;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 5px;
    border: none;
    display: inline-block;
    transition: all 0.6s ease 0s;
}
.modal-content .modal-body .btn:hover{
    color: #fff;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.modal-content .modal-body .btn:focus{ outline: none; }
@media only screen and (max-width: 480px){
    .modal-dialog{ width: 95% !important; }
    .modal-content .modal-body{
        padding: 60px 20px 40px !important;
    }
}


/* //popup loader */.loader {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 4px solid rgba(0, 0, 0, 0.2);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* SIDE ICON */
/*  */


/* Main Icons Section */
.main-icons {
  position: fixed;
  bottom: 100px;
  left: -120px;
  z-index: 1000;
}

.main-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-icons .first li {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #ccc;
  padding: 5px 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s, box-shadow 0.3s;
}

.main-icons .first li:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.main-icons .first li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.main-icons .first li img {
  margin-left: 20px;
  height: 24px;
  width: 24px;
  object-fit: cover;
}
.main-icons .first li .img-fluid1 {
  margin-left: 33px;
  height: 37px;
  width: 24px;
  object-fit: cover;
}

.main-icons .first .color1 {
  background-color: #10274a;
}

.main-icons .first .color2 {
  background-color: #1bd741;
}
.main-icons .first .color3 {
  background-color: white;
  color:black;
}

.main-icons .first .color1,
.main-icons .first .color2,
.main-icons .first .color3
 {
  position: relative;
  transition: left 0.25s ease-in-out;
}

.main-icons .first .color1:hover,
.main-icons .first .color2:hover 
{
  left: 120px;
}

.main-icons .first .color3:hover 
{
  left: 120px;
}


.main-icons .first li p {
  margin: 0;
  padding-right: 10px;
}

.main-icons p {
  font-size: 12px;
  display: flex;
  justify-content: end;
  color: white;
}


/* scrool arrow */
.scroll-arrow {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 0px;
  right: 5px;
  background-color: #0077B5 !important; /* Default color */
  padding: 13px;
  border-radius: 9px;
  cursor: pointer;
  transition: background-color 1.3s ease; /* Smooth background color transition */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  z-index: 1000;
}



.image-div{
  display: none;
}

@media(max-width:320px){
  .image-div{
    display: block;
  }
}
.navbar-collapse{
  margin-left: 644px !important;
}

@media (max-width:768px){
  .navbar-collapse{
    margin-left: 0px !important;
  }
  
}.get-button-home1 {
  font-weight: 800;
  cursor: pointer;
  animation: pulse-i 2s infinite;
  color: #FDC30B;
  background: transparent;
  border: none; /* Removes the button's border */
  outline: none; /* Removes the outline */
  padding: 8px 15px; /* Optional: Add some padding if you want */
  text-decoration: none; /* Ensures the text doesn't get underlined if it's a link */
}

@keyframes pulse-i {
  0% {
    transform: scale(1);
    color: #FDC30B;
  }
  50% {
    transform: scale(1.1);
    color: white;
  }
  100% {
    transform: scale(1);
    color: #FDC30B;
  }
}

.p-tag:hover{
  color:black !important;
}




