* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.loader_bg {
  position: fixed;
  z-index: 9999999;
  background: #fff;
  width: 100%;
  height: 100%;
}

.loader {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 280px;
}

::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background: #015c19;
}

::-webkit-scrollbar-thumb:hover {
  background: #13079c;
}

/*  Simillar  */

section {
  padding: 100px 0;
}

.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}

.about,
.services,
.skills,
.projects,
.contact,
footer {
  font-family: "Poppins", sans-serif;
}
.aboutContainer {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}

section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  transform: translateX(-50%);
}

section .title::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  font-size: 20px;
  color: #036b0a;
  padding: 0 5px;
  transform: translateX(-50%);
}
/*  Navbar  */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 0px 0;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.2s ease;
}

.about-navbar{
  position: fixed;
  top: 0 !important;
}

.navbar a img {
  width: 26vw;
}
.navbar.sticky {
  padding: 0px 0;
  background: linear-gradient(45deg, #f5d906, #fff07d, #fff07d, #f5d906);
}

.max-width{
  width: 100%;
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

 .logo{
  width: 30%;
  padding-top: 10px;
} 

.menu{
  width: 70%;
}

/* Dropdown List */
.dropdown {
  position: relative;
}

.dropdown-list {
  display: none;
  position: absolute;
  background-color: #f5d906;
  min-width: 160px;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 99;
  border: 1px solid #ddd;
  border-radius: 10px; /* 👈 This adds rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

.dropdown-list li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-weight: normal;
}

.dropdown-list li a:hover {
 
}

/* Show dropdown on hover (for desktop) */
.dropdown:hover .dropdown-list {
  display: block;
}

/* Optional: Responsive support (toggle for mobile) */
@media (max-width: 768px) {
  .dropdown-list {
    position: static;
  }

  .dropdown.open .dropdown-list {
    display: block;
  }
}







/*  Nav Logo Span Linear-Gradient  */
.navbar .logo a span {
  background: rgb(17, 104, 4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.navbar.sticky .logo a span {
  color: #205a0d;
}

.navbar .menu li {
  list-style: none;
  display: inline-block;
}

.navbar .menu li a {
  display: block;
  color: #052886;
  font-size: 14px;
  font-family: 'Times New Roman';
  font-weight: bold;
  margin-left: 20px;
  position: relative; /* Needed for positioning the pseudo-element */
  padding-bottom: 5px; /* Space for the underline */
  transition: transform 0.3s ease, color 0.3s ease; /* Smooth color and scaling transitions */
}

/* Sliding underline with pseudo-element */
.navbar .menu li a::after {
  content: ''; /* Required for pseudo-element */
  position: absolute;
  bottom: 0; /* Position at the bottom of the link */
  left: 0;
  width: 0; /* Initially no underline */
  height: 1px; /* Thickness of the underline */
  background-color: #0f0691; /* Underline color */
  transition: width 0.5s ease-in-out; /* Smooth transition for underline */
}


/* Hover effects: text scaling, color change, and underline slide-in */
.navbar .menu li a:hover {
  color: #05540b; /* Change text color on hover */
  transform: scale(1.4); /* Scale the text */
}

/* On hover, expand the underline */
.navbar .menu li a:hover::after {
  width: 50%; /* Make the underline expand across the entire width */
}
/* new code above side */
/* new code above side */
.navbar.sticky .menu li a:hover {
  color: #05540b;
}
/* Right Navbar Icons */
/* Right Navbar Icons */
.navbar-right {
  list-style-type: none;
  display: flex;
}

.navbar-right li {
  margin-left: 20px;
}
.navbar-right li p{
  color: white;
}

.social-icon1 {
  color: rgb(76, 74, 223);
  font-size: 20px;
  text-decoration: none;
}

.social-icon1:hover {
  color: #0012b4;
}
.social-icon2 {
  color: rgb(113, 219, 92);
  font-size: 20px;
  text-decoration: none;
  font-weight:bolder;
}

.social-icon2:hover {
  color: #00b118;
}

/* Facebook and WhatsApp Icon Styling */
.fab {
  font-size: 24px;
}
@keyframes scaleIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Apply scaling animation */
.social-icon1 i, .social-icon2 i ,.news-ticker span{
  animation: scaleIcon 1s infinite ease-in-out;
}

/*  Menu Btn  */
.menu-btn {
  color: #0f0691;
  font-size: 23px;
  cursor: pointer;
  display: none;
}

.scroll-up-btn {
  position: fixed;
  height: 45px;
  width: 42px;
  background: #297903;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-up-btn.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}

.scroll-up-btn:hover {
  filter: brightness(90%);
}
/* For heading News Continuesly  */
/* News Ticker Styles */
.news-ticker {
  background-color: #003873;
  color: rgb(241, 241, 236);
  font-size: 16px;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  margin-top: 1px; /* Adjust space between navbar and ticker */
  width: 100%; /* Ensure it's full width */
}
.news-ticker span{
  font-weight: bold;
  color: #f5d906;
}

.news-ticker p {
  position: relative;
  animation: scroll-left 20s linear infinite; /* Scroll animation */
  margin: 0;
  font-family: serif;
  padding-left: 5%; /* Start off-screen to the right */
  font-weight: 500;
}

/* Scroll animation from right to left */
@keyframes scroll-left {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

/*  Home  */
.home {
  display: flex;
  background: url("Untitled\ \(1000\ x\ 500\ px\).png")
    no-repeat center;
  /* height: 60vh; */
  color: white;
  /* min-height: 800px; */
  background-size: cover;
  background-attachment: fixed;
  font-family: "Ubuntu", sans-serif;
  justify-content: space-around;
}

/*  Cureency Convrt  */

.container1 {
  background-color: #f5d906;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  /* margin-left: 2%; */
  margin-top: 10%;
  margin-bottom: 25%;
  width: 20%;
}

.container1 h1 {
  color: #003873;
  margin-bottom: 20px;
  font-size: 0.6cm;
  text-decoration: none;
}

.converter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#amount {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
#currency,
#toCurrency {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

#currency,
#fromCurrency {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.converter p{
  color: #015c19;
  font-weight: 600;
}

button {
  padding: 10px;
  background-color: #003873;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #015908;
}

#result {
  color: red;
  margin-top: 20px;
  font-size: 17px;
  font-weight: bold;
  font-family:'Franklin Gothic Medium';
}
/* add slider */

.slider {
  width: 45%;
  height: 350px; /* Adjust height as needed */
  /* overflow: hidden; */
  position: absolute;
  margin-left: -14%;
  margin-top: 10%;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire container */
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* Start with all images hidden */
  transition: opacity 1s ease; /* Smooth fade transition */
  margin-left: 10%;
}

.slider img.active {
  opacity: 1; /* Show the active image */
}
.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  object-fit: cover;
  font-weight: 900;
}

.slider #prevBtn {
  left: 10%;
}

.slider #nextBtn {
  right: -10%;
}

/*  Cureency information */
.container2 {
  background-color: #f5d906;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-left: 40%;
  margin-top: 10%;
  margin-bottom: 10%;
  width: 25%;
}
.container2 h1 {
  color: #003873;
  margin-bottom: 20px;
  font-size: 0.6cm;
  text-decoration: none;
}
.container2 p{
  text-align:justify;
  color: red;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.container2 p span{
  color: red;
  font-weight: 700;
}
h1 {
  margin-bottom: 20px;
}

table {
  width: 100% !important;
  border-collapse: collapse;
  border: none; /* Remove table border */
}

th,
td {
  padding: 10px;
  text-align: left;
  color: black; /* Ensure table text is black */
  border: none; /* Remove cell borders */
}

th {
  background-color: #f2f2f2;
  color: black; /* Ensure header text is black */
}

td img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

tbody tr:nth-child(odd) {
  background-color: yellow;
}

tbody tr:nth-child(even) {
  background-color: white;
}

.home .max-width {
  width: 100%;
  display: flex;
}

.home .max-width .row {
  margin-right: 0;
}

.home .home-content .text-1 {
  font-size: 27px;
}

.home .home-content .text-2 {
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
}

.home .home-content .text-3 {
  font-size: 40px;
  margin: 5px 0;
}

/* Linear Gradient */
.home .home-content .text-3 span {
  color: #fc9106;
  background: #fc9106;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.home .home-content a {
  display: inline-block;
  background: #fc9106;
  color: #fff;
  font-size: 25px;
  padding: 12px 36px;
  margin-top: 20px;
  font-weight: 400;
  border-radius: 6px;
  border: 2px solid #fc9106;
  transition: all 0.3s ease;
}

.home .home-content a:hover {
  color: #fc9106;
  background: none;
  animation: pulsate 1s ease-in-out;
}

/*  About  */
.about {
  background: radial-gradient(#e1efff, white);
}
.about .title::after {
  content: "—Who We Are ?—";
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.container {
  max-width: 800px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.about h2{
  color: #00254d;
}
.section {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.about p {
  margin-top: 20%;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
  font-weight: 500;
  font-size: 150%;
}

.text {
  flex: 1;
  padding: 20px;
}

.image {
  flex: 1;
  text-align: center;
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .home {
    flex-direction: column;
    align-items: center;
  }
  .subAbout {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
  }

  .slider {
    width: 80%;
    /* height:350px;  */
    /* overflow: hidden; */
    position: absolute;
    margin-left: -15%;
    margin-top: 10%;
  }

  .container2 {
    background-color: #f5d906;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 2%;
    margin-top: 70%;
    width: 80%;
    margin-bottom: 10%;
  }
  .container1 {
    width: 80%;
  }
  .logo a img {
    width: 200px;
  }
}

@media (max-width: 500px) {
  .slider {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
    height: 18rem;
  }
}

/* KYC CODE */
.kyc {
  background: radial-gradient(#e1efff, white);
}
.kyc .title::after {
  content: "—Identification—";
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.container {
  max-width: 800px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.kyc h2{
  color: #00254d;
}
.kyc h1{
  color: #00254d;
  font-size: 20px;
  
}
.section {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.kyc p {
  margin-top: 2%;
  font-family: "Gill Sans", "Gill Sans MT",
  Calibri, "Trebuchet MS", sans-serif;
  font-weight: 400;
  font-size: 120%;
}
.kyc ul  {
  margin-top: 1%;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
  font-weight: 100;
  font-size: 110%;
  margin-left: 5%;
}
.text {
  flex: 1;
  padding: 20px;
}

.image {
  flex: 1;
  text-align: center;
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .home {
    flex-direction: column;
    align-items: center;
  }
  .subAbout {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
  }

  .slider {
    width: 80%;
    /* height:350px;  */
    /* overflow: hidden; */
    position: absolute;
    margin-left: -15%;
    margin-top: 10%;
  }

  .container2 {
    background-color: #f5d906;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 2%;
    margin-top: 70%;
    width: 80%;
    margin-bottom: 10%;
  }
  .container1 {
    width: 80%;
  }
  .logo a img {
    width: 200px;
  }
}

@media (max-width: 500px) {
  .slider {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
    height: 18rem;
  }
}
/* AML CODE */
.aml {
  background: radial-gradient(#e1efff, white);
}
.aml .title::after {
  content: "—Stay safe always!—";
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.container {
  max-width: 800px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.section {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.aml h2{
  color: #00254d;
}
.aml p {
  margin-top: 10%;
  font-family: "Gill Sans", "Gill Sans MT",
  Calibri, "Trebuchet MS", sans-serif;
  font-weight: 400;
  font-size: 120%;
}
.aml ul  {
  margin-top: 2%;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
  font-weight: 300;
  font-size: 120%;
  margin-left: 5%;
}

.text {
  flex: 1;
  padding: 20px;
}

.image {
  flex: 1;
  text-align: center;
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .home {
    flex-direction: column;
    align-items: center;
  }
  .subAbout {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
  }

  .slider {
    width: 80%;
    /* height:350px;  */
    /* overflow: hidden; */
    position: absolute;
    margin-left: -15%;
    margin-top: 10%;
  }

  .container2 {
    background-color: #f5d906;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 2%;
    margin-top: 70%;
    width: 80%;
    margin-bottom: 10%;
  }
  .container1 {
    width: 80%;
  }
  .logo a img {
    width: 200px;
  }
}
/*  change slide for thiss mobile view ////////////////////////////////////// */
@media (max-width: 500px) {
  .slider {
    margin-top: 25% !important;
    margin-bottom: 80% !important;
    height: 20rem;
  }
  .navbar-right li {
    margin-left: 10px;
  }
  .news-ticker p {
    position: relative;
    animation: scroll-left 10s linear infinite; /* Scroll animation */
    margin: 0;
    padding-left: 5%; /* Start off-screen to the right */
  }
  
  /* Scroll animation from right to left */
  @keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-250%);
    }
  }
}


/* Fullscreen background */
    #promoPopup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      animation: fadeIn 0.6s ease;
    }

    /* Popup content box */
    #promoContent {
      position: relative;
      width: 200%;
      max-width: 900px;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      animation: zoomIn 0.5s ease;
    }

    #promoContent img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Fancy close button (pure CSS) */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 30px;
      height: 30px;
      cursor: pointer;
      z-index: 100;
    }

    .close-btn span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: #333;
      border-radius: 2px;
      transition: 0.3s;
    }

    .close-btn span:first-child {
      transform: rotate(45deg);
    }

    .close-btn span:last-child {
      transform: rotate(-45deg);
    }

    .close-btn:hover span:first-child {
      transform: rotate(50deg);
    }

    .close-btn:hover span:last-child {
      transform: rotate(-50deg);
    }

    /* Animations popup  */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.7);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }


/*  Service  */
.services,
.projects {
  color: #fff;
  background: #fefefb;
}

.services .title::before,
.projects .title::before {
  background: #fff;
}

.services .title::after,
.projects .title::after {
  background: #f8f7f5;
  content: "What We Provide ?";
}
/* this is for money exchange */
.services .serv-content .card {
  width: calc(50% - 20px);
  background: #003873;
  text-align: center;
  border-radius: 10px;
  padding: 50px 25px;
  cursor: pointer;
  transition: all 1s ease;
}

.services .serv-content .card:hover {
  background: url("jaz.png") no-repeat center;
}

.services .serv-content .card .box {
  transition: all 0.1s ease;
}

.services .serv-content .card:hover .box {
  transform: scale(0.1s);
}

.services .serv-content .card i {
  font-size: 50px;
  color: #888e8d;
  background: linear-gradient(
    135deg,
    #041d3d,
    #fff,
    crimson
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: color 0.3s ease;
}

.services .serv-content .card:hover i {
  color: #fff;
}

.services .serv-content .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}
/* this is for jazzcash */

.services .serv-content .card1 {
  width: calc(50% - 20px);
  background: #003873;
  text-align: center;
  border-radius: 10px;
  padding: 50px 25px;
  cursor: pointer;
  transition: all 1s ease;
}

.services .serv-content .card1:hover {
  background: url("cur.png") no-repeat center;
}

.services .serv-content .card1 .box {
  transition: all 0.1s ease;
}

.services .serv-content .card1:hover .box {
  transform: scale(0.1s);
}

.services .serv-content .card1 i {
  font-size: 50px;
  color: #888e8d;
  background: linear-gradient(
    135deg,
    #041d3d,
    #fff,
    crimson
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: color 0.3s ease;
}

.services .serv-content .card1:hover i {
  color: #fff;
}

.services .serv-content .card1 .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}

/* just check for about portion  */
@keyframes colorChange {
  0% {
    color: #333;
  }
  25% {
    color: #007bff;
  }
  50% {
    color: #28a745;
  }
  75% {
    color: #ffc107;
  }
  100% {
    color: #dc3545;
  }
}

h2 {
  color: #01060c;
}
h3 {
  color: #015c19;
  margin: 20px 0;
  text-align: center;
  margin-top: 10%;
  font-family: " Times, serif";
  font-weight: 900;
}
h1 {
  font-size: 2.5em;
  color: #f5d906;
  margin: 10px 0;
  text-align: center;
  text-decoration: underline;
}
.blocks-row,
.blocks-row1 {
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 20px;
  flex-wrap: wrap;
}
.blocks-row {
  align-items: center;
  justify-content: space-around;
}
.blocks-row1 {
  justify-content: flex-start;
}
.block {
  background-color: #fefefb;
  border: 1px solid #fefefb;
  border-radius: 10px;
  box-shadow: 0 4px 8px #fefefb;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  width: calc(
    33.333% - 40px
  ); /* Subtracting gap space */
  margin: 10px;
}
.block1 {
  background-color: #fefefb;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  width: calc(
    33.333% - 40px
  ); /* Subtracting gap space */
  margin: 10px;
}
.block:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.block:hover h3,
.block:hover p,
.block:hover h2,
.block:hover a {
  animation: colorChange 4s infinite;
}
.block1:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.block1:hover h3,
.block1:hover p,
.block1:hover h2,
.block1:hover a {
  animation: colorChange 4s infinite;
}
.block img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.block h3,
.block p,
.big-block h2,
.big-block p {
  transition: color 0.1s;
}
.block1 h3,
.block1 p,
.big-block h2,
.big-block p {
  transition: color 0.1s;
}
.block1 h1 {
  color: #052886;
  text-decoration: none;
}
.block h3 {
  font-size: 1.5em;
  margin: 10px 0;
  justify-content: center;
}
.block p {
  font-size: 0.9em;
  color: #666;
  justify-content: center;
}
.block1 h1 {
  margin: 10px 0;
  justify-content: left;
}
.block1 p {
  font-size: 0.9em;
  color: #666;
  justify-content: left;
}
.big-block h2 {
  font-size: 2em;
  color: #333;
  margin: 20px 0;
  justify-content: center;
}
.big-block p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  justify-content: center;
}
.animated-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2em;
  color: white;
  background-color: #052886;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s,
    transform 0.3s;
}
.animated-button {
  margin-top: 5%;
  justify-items: left;
}
.animated-button:hover {
  background-color: #0056b3;
  transform: translateY(-5px);
}

/*  Skills  */
.background-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("coin\ pic.jpg") no-repeat
    center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  width: 100%;
}

.center-content {
  display: flex;
  justify-content: space-around;
  width: 80%;
  max-width: 1200px;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* semi-transparent background */
  padding: 20px;
  border-radius: 10px;
  margin-right: 3%;
}

.stat-item {
  text-align: center;
  flex: 1;
  margin: 30px;
}

.number {
  font-size: 4vw;
  font-weight: bold;
}

.label {
  font-size: 2vw;
  margin-top: 5%;
  font-weight: 600;
  color: #f5d906;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
}

@media (max-width: 768px) {
  .center-content {
    flex-direction: column;
    align-items: center;
    height: 100%;
    /* margin-top: 50px;
    margin-bottom: 50px; */
  }

  .stat-item {
    /* margin-bottom: 20px; */
    margin: 0px;
  }
  .blocks-row,
  .blocks-row1 {
    flex-direction: column;
  }
  .block {
    width: 100%;
  }
  .info-section {
    flex-direction: column;
  }

  .number {
    font-size: 4rem;
  }

  .label {
    font-size: 2rem;
  }
}

/* Hierarchy Section */
/* Hierarchy Section */
/* Hierarchy Section */
/* Hierarchy Section */
/* Hierarchy Section */
/* Employee Container */



.profile {
  background: radial-gradient(#f6fd8d, rgb(255, 255, 255));
}

.profile .title::after {
  content: "—Driving Growth Together!—";
  text-overflow: ellipsis;
  display: -webkit-inline-box;
}
.profile h2{
  color: #00254d;
}
.profile p{
  font-weight: 100;
  color: rgb(134, 134, 134);
  font-size: 14px;
}
/* Employee Container */
.employee-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Flexible columns */
  gap: 20px;
  margin: 40px 15px;
  padding: 0;
  justify-items: center;
  animation: fadeInContainer 1s ease-out; /* Fade-in effect for container */
}

/* Employee Box Styling */
.employee-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  opacity: 0;
  transform: translateY(-100px); /* Start from above */
  animation: slideDown 0.7s ease-out forwards; /* Slide-down animation */
  transition: transform 0.3s ease, box-shadow 0.3s ease, font-size 0.3s ease; /* For hover effects */
  animation-delay: var(--animation-delay); /* Delay animation for each box */
}


/* Slide-down Animation for Employee Box */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade-in animation for Employee Container */
@keyframes fadeInContainer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Hover Effects for Box, Image Size Growth, and Font Size Increase */
.employee-box:hover {
  transform: scale(1.1); /* Grow the entire box when hovered */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Add a shadow to indicate hover */
}

.employee-image img {
  width: 180px;
  height: 180px;
  border-radius: 5%;
  margin-bottom: 10px;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease; /* Smooth transition for size change */
}

/* Grow the image when hovering the employee box */
.employee-box:hover .employee-image img {
  transform: scale(1.2); /* Slight zoom effect for the image */
  width: 180px;  /* Increase image width */
  height: 180px; /* Increase image height */
}

.position {
  font-size: 25px;
  font-weight: bold;
  color: #130357;
  transition: font-size 0.3s ease; /* Smooth font size transition */
}
.department {
  text-align: left;
   text-decoration: underline;
  font-size: 25px;
  font-weight: bold;
  color: #444442;
  transition: font-size 0.3s ease; /* Smooth font size transition */
}

.name {
  font-weight: 600;
  font-size: 20px;
  color: #123f09;
  margin-top: 5px;
  opacity: 8.8;
  transition: font-size 0.3s ease, opacity 0.3s ease; /* Smooth font size and opacity transition */
}

/* Increase the font size on hover */
.employee-box:hover .position {
  font-size: 20px; /* Increase the position font size */
}

.employee-box:hover .name {
  font-size: 18px; /* Increase the name font size */
  opacity: 1; /* Full opacity for the name on hover */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .employee-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Adjust for smaller screens */
  }

  .employee-box {
    padding: 15px;
  }

  h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .employee-container {
    grid-template-columns: 1fr;
  }

  .employee-image img {
    width: 120px; /* Adjust image size for mobile */
    height: 120px; /* Adjust image size for mobile */
  }
}

@media (max-width: 768px) {
  .home {
    flex-direction: column;
    align-items: center;
  }
  .subAbout {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
  }
}
/*  Branches  */
/*  Branches  */
/*  Branches  */
.branches {
  background-color: #f5d906;
}
.branches p{
  color: #003270;
  font-size:small;
}
.branches .title::after {
  content: "Where we are:click";
}
.branches .carousel .card {
  background: #f5d906;
  border-radius: 6px;
  padding: 25px 35px;
  text-align: center;
  overflow: hidden;
  transition: all 1s ease;
}

.branches .carousel .card:hover {
  background: #f5d906;
}

.branches .carousel .card .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
}

.branches .carousel .card:hover .box {
  transform: scale(1.05);
}

.branches .carousel .card .text {
  font-size: 25px;
  font-weight: 900;
  margin: 10px 0 7px 0;
  color: #05540b;
  text-decoration: underline;
}

.branches .carousel .card img {
  height: 300px;
  width: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #888c8d;
  transition: all 0.1s ease;
}

.branches .carousel .card:hover img {
  border-color: #fff;
  border-radius: 5%;
  border: 0px;
}
.branches .carousel .card:hover .text {
  font-size: 25px;
  font-weight: 900;
  margin: 10px 0 7px 0;
  color: #003873;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  height: 13px;
  width: 13px;
  margin: 0 5px;
  outline: none !important;
  border-radius: 50%;
  border: 2px solid #888c8d !important;
  transition: all 0.1s ease;
}

.owl-dot.active {
  width: 35px;
  border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
  background: #00254d !important;
}

/*  Contact  */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.text-center {
  text-align: center;
}
/* .py-5 {
    padding: 3rem 0;
} */
/* .border {
    border-width: 1px;
    border-style: solid;
    /* border-color: #ccc; */
/* } */
.section-padding {
  padding: 60px 0;
}
.section-title h5 {
  font-size: 16px;
  color: #052886;
  margin-bottom: 10px;
}
.section-title h3 {
  font-size: 36px;
  margin-bottom: 30px;
}
.section-title h3 span {
  color: #052886;
}
.single-address {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 300px; /* Fixed width for each block */
  margin: 10px;
}
.single-address:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.single-address-icon {
  font-size: 40px;
  color: #052886;
  margin-bottom: 20px;
}
.single-address h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.single-address p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}
.single-address-link a {
  color: #052886;
  text-decoration: none;
  font-size: 16px;
}
.single-address-link a:hover {
  text-decoration: underline;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fa-brands {
  color: #fff;
}

.fa-solid {
  color: #fff;
}
/*  Carrers Page  */
/*  Carrers Page  */
.header {
  text-align: center;
  padding: 50px 20px;
  background-color: #f5d906;
  color: white;
  animation: fadeInDown 1s ease-in-out;
}

.header h1 {
  margin: 0;
  font-size: 36px;
  margin-top: 8%;
  color: rgb(2, 84, 2);
}

.header p {
  font-size: 18px;
  margin-top: 10px;
  color: rgb(3, 3, 103);
}

.careers-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}

.career-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  margin: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transform: translateY(100px);
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards;
}

.career-card h2 {
  font-size: 24px;
  margin-top: 0;
}

.career-card .underline {
  width: 50px;
  height: 3px;
  background-color: #f5d906;
  margin: 10px 0;
  animation: slideInLeft 0.5s ease-in-out;
}

.career-card p {
  font-size: 16px;
  margin: 20px 0;
}

.career-card a {
  background-color: #fcec6e;
  color: rgb(7, 1, 1);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: infinite;
}

.career-card a:hover {
  background-color: #f5d906;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    width: 0;
  }
  to {
    width: 50px;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.info-section {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background-image: url("footr\ background.jpg"); /* Replace with your local image file */
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  width: 100%;
}

.column {
  flex: 1;
  margin: 0 10px;
  padding: 20px;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Semi-transparent background for better text readability */
  border-radius: 1px;
  position: relative;
  align-items: center;
}

.column1 {
  flex: 1;
  margin: 0 10px;
  padding: 20px;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Semi-transparent background for better text readability */
  border-radius: 1px;
  position: relative;
  align-items: center;
}
.column1 h3 {
  color: white;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
  text-align: left;
}
.column1 p {
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
  color: rgb(204, 204, 204);
}

.info-section h2 {
  color: white;
  margin-top: 0;
  position: relative;
  padding-bottom: 10px;
  font-size: 24px;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
  text-decoration: underline;
}

.heading-line {
  width: 0;
  height: 3px;
  background-color: #e5eff5;
  position: absolute;
  bottom: -2px; /* Position the line just below the heading */
  left: 0;
  transition: width 0.3s ease;
}

.info-section h2:hover + .heading-line {
  width: 50%; /* Line grows to 50% of the heading's width on hover */
  color: white;
}

.info-section p {
  margin-top: 30px;
  font-size: medium;
  font-weight: 600;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
}

.info-section a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  padding: 10px 0;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
  font-weight: 900;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
}

.info-section a span {
  margin-right: 10px;
  font-size: 18px;
}

.info-section a:hover {
  color: #f5d906;
}
/*  Footer  */
footer {
   display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  background: #f5d906;
  padding: 6px 16px;
  color: #024455;
  text-align: center;
}

footer span a {
  color: #003270;
  text-decoration: none;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
}

footer p span {
  text-align: center;
  color: #031c9a;
  text-decoration: none;
  font-family: "Gill Sans", "Gill Sans MT",
    Calibri, "Trebuchet MS", sans-serif;
}
footer span a:hover {
  text-decoration: underline;
}

/*  Media Query  */
@keyframes pulsate {
  0% {
    box-shadow: 0 0 25px #888e8d, 0 0 50px #1e3551;
  }
}

@media (max-width: 1104px) {
  .about .about-content .left img {
    height: 350px;
    width: 350px;
  }
  section .title::after {
    bottom: -8px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .subAbout {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
  }
  .social-menu ul li a {
    left: 114px;
  }

  .home {
    flex-direction: column;
    align-items: center;
  }

  .slider {
    width: 80%;
    /* height:350px;  */
    /* overflow: hidden; */
    position: absolute;
    margin-left: -15%;
    margin-top: 10%;
  }

  .container2 {
    background-color: #f5d906;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 2%;
    margin-top: 70%;
    width: 80%;
    margin-bottom: 10%;
  }
  .container1 {
    width: 80%;
  }
}

@media (max-width: 947px) {
  .menu-btn {
    display: block;
    /* z-index: 999; */
  }
  .navbar a img {
    width: 10vw;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: #111;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }

  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }
  .home .home-content .text-2 {
    font-size: 70px;
  }
  .home .home-content .text-3 {
    font-size: 35px;
  }
  .home .home-content a {
    font-size: 23px;
    padding: 10px 30px;
  }
  .max-width {
    max-width: 930px;
  }
  .about .about-content .column {
    width: 100%;
  }
  .about .about-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  .about .about-content .right {
    flex: 100%;
  }
  .services .serv-content .card {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .skills .skills-content .column,
  .contact .contact-content .column {
    width: 100%;
    margin-bottom: 35px;
  }
}

@media (max-width: 690px) {
  .max-width {
    padding: 0 23px;
  }
  .home .home-content .text-2 {
    font-size: 60px;
  }
  .home .home-content .text-3 {
    font-size: 32px;
  }
  .home .home-content a {
    font-size: 20px;
  }
  .services .serv-content .card {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .home .home-content .text-2 {
    font-size: 50px;
  }
  .home .home-content .text-3 {
    font-size: 27px;
  }
  .about .about-content .right .text,
  .skills .skills-content .left .text {
    font-size: 19px;
  }
  .contact .right form .fields {
    flex-direction: column;
  }
  .contact .right form .name,
  .contact .right form .email {
    margin: 0;
  }
  .right form .error-box {
    width: 150px;
  }
  .scroll-up-btn {
    right: 15px;
    bottom: 15px;
    height: 38px;
    width: 35px;
    font-size: 23px;
    line-height: 38px;
  }
  
.logo{
  width: 70%;
}

}
