@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500;1,600&amp;family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap');

/* Global Colors */
:root {
  --background-color: #f1f1f1;
  --default-color: #333333;
  --heading-color: #00194c;
  --accent-color: #0055FF;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #00194c;
  --nav-hover-color: #0055FF;
  --nav-mobile-background-color: #00194c;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #00194c;
  --nav-dropdown-hover-color: #0055FF;
}

/* Color Presets */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2f3b4c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #3e4a59;
  --contrast-color: #ffffff;
}


/* General Styling & Shared Classes */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans';
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: #0055FF;
  /* Subtle blue on hover */
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: 'Plus Jakarta Sans';
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #e74c3c;
  /* Red for error messages */
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #27ae60;
  /* Green for success message */
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Global Header */
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 7px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 0px;
}

.header .logo img {
  max-height: 73px;
  margin-right: 7px;
}

/*.header .logo h1 {*/
/*  font-size: 24px;*/
/*  margin: 0;*/
/*  font-weight: 500;*/
/*  color: var(--heading-color);*/
/*}*/

.header .btn-getstarted {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  margin: 0 0 0 30px;
  transition: all 0.3s ease;
}

.header .btn-getstarted:hover {
  background-color: color-mix(in srgb, var(--accent-color), rgb(0, 0, 0) 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

/* Hide the button on small screens (mobile devices) */
@media (max-width: 767px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 8px;
    margin-right: 17px;
    padding: -1px 5px 10px 15px;
  }

  .header .logo img {
    order: 1;
    max-height: 48px;
  }

  .header .btn-getstarted {
    order: 2;
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 10px;
    padding: 8px 9px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
  }

  .mobile-nav-toggle {
    order: 3;
    display: block;
    /* Show the mobile toggle button */
  }
}

/* Large screens (desktops) */
@media (min-width: 1200px) {

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 12px 15px;
  }

}


/* Medium screens (tablets) */
/*@media (max-width: 1199px) and (min-width: 768px) {*/
/*  .header .btn-getstarted {*/
/*    font-size: 16px;*/
/*    padding: 12px 24px;*/
/*  }*/
/*}*/


@media (min-width: 230px) and (max-width: 765px) {
  .header .btn-getstarted {
    display: none;
  }

  .features .nav-link {
    padding: 9px 15px;
  }

  .features .nav-link h4 {
    font-size: 15px;
  }

  .features .nav-tabs {
    padding: 2px;
  }

  .testimonials .testimonial-item p {
    font-size: 13px;
  }

  .testimonials .testimonial-item {
    padding: 7px;
  }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 34px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------*/


.float,
.phone {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 23px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.float {
    right: 10px;
    background-color: #25d366;
    color: white;
}

.phone {
    left: 10px;
    background-color: #1a2948;
    color: white;
}

.float:hover,
.phone:hover {
    background-color: #128c7e;
    box-shadow: 0 2px 10px rgba(93, 82, 82, 0.2);
}

.my-float {
    font-size: 28px;
}


/* Footer Styles */
.footer-bg,
.footer-bg-two {
  background: center/cover no-repeat;
}


.footer-top {
  padding: 100px 0 40px;
}

.footer-widget {
  margin-bottom: 40px;
  margin-left:20px;
}

.footer-widget .fw-title {
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--heading-color);
  position: relative;
  margin-top: 22px;
}

.footer-widget .fw-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 30px;
  height: 4px;
  border-radius: 4px;
  margin: auto;
  background: var(--accent-color);
}

.footer-info .list-wrap li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;

}

.footer-widget ul,
i {
  padding-left: 0rem;
  list-style: none;

}

.footer-info .list-wrap li:last-child {
  margin-bottom: 0;
}

.footer-info .list-wrap li .icon {
  font-size: 22px;
  color: var(--contrast-color);
  margin-right: 12px;
}

.footer-info .list-wrap li .content a,
.footer-info .list-wrap li .content p {
  color: var(--nav-color);
  margin-bottom: 0;
}



.footer-content p {
  margin-top: 25px;
}

.footer-info .list-wrap li .content a:hover {
  color: var(--accent-color);
}

.footer-link .list-wrap li a {
  color: var(--default-color);
  position: relative;
}

.footer-link .list-wrap li {
  margin-bottom: 10px;
}

.footer-link .list-wrap li a:hover {
  color: var(--contrast-color);
}

.footer-link .list-wrap li a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--contrast-color);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(.74, .72, .27, .24);
}

.footer-link .list-wrap li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer-newsletter form input {
  width: 100%;
  padding: 12px 22px;
  height: 46px;
  border-radius: 30px;
  background: #1E2E4E;
  color: var(--contrast-color);
  border: none;
}

.footer-newsletter form input::placeholder {
  color: var(--contrast-color);
}

.footer-newsletter form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 23px;
  height: 46px;
  border-radius: 30px;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
}

.footer-newsletter form button:hover {
  background: var(--heading-color);
}

.footer-social .list-wrap {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.footer-social .list-wrap li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A2948;
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 20px;
}

.footer-social .list-wrap li a:hover {
  background: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid #253352;
  padding: 48px 0;
}

.copyright-text p {
  font-size: 14px;
  color: #7c8db1;
}


.fw-logo img{
    max-height: 73px;
    margin-right: 7px;
    
  }

@media (max-width: 767px) {
 
.fw-logo img{
    max-height: 52px;
    
  }
  .footer-top-two .fw-logo {
    margin-bottom: 20px;
  }
}

/* Footer-two Styles */
.footer-top-two {
  padding: 54px 0 4px;
  background-color: var(--contrast-color);
}

.footer-top-two .footer-info .list-wrap li .icon {
  color: var(--accent-color);
}

.footer-top-two .footer-link .list-wrap li a {
  color: #555;
}

.footer-top-two .footer-link .list-wrap li a:hover {
  color: var(--accent-color);
}

.footer-top-two .footer-newsletter form input {
  background: #EEF1F5;
  color: #555;
}

.footer-bottom-two {
  border-top: 1px solid #EAEAEA;
  padding: 27px 0;
}


/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(0, 107, 143, 0.8);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 90px;
}


/**/
.certificate {
    position: relative;
    padding: 50px 120px;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Ensures the cards wrap on smaller screens */
}

.flip-card {
    background-color: transparent;
    width: 235px; /* Increased the width */
    height: 235px; /* Increased the height */
    perspective: 1000px;
    margin-bottom: 20px; /* Adds spacing between cards */
}


/**/

/* Style the call link */
.call-icon {
    display: inline-flex; /* Align the icon and text horizontally */
    align-items: center;  /* Vertically align the icon with the text */
    background-color: #0055FF; /* Green background for call button */
    color: #ffffff; /* White text color */
    font-size: 16px; /* Adjust font size */
    padding: 10px 33px; /* Padding for the button */
    border-radius: 22px; /* Rounded corners for the button */
    text-decoration: none; /* Remove underline */
    margin-top: 15px; /* Add some space from the text above */
    transition: background-color 0.3s; /* Smooth transition for background color on hover */
}

/* Style the icon inside the call link */
.call-icon i {
    margin-right: 8px; /* Space between icon and text */
    font-size: 18px; /* Icon size */
}

/* Hover effect for the call icon */
.call-icon:hover {
    background-color: #043391;
    color: #ffffff;/* Darker green on hover */
}

/* Active effect when the link is clicked */
.call-icon:active {
    background-color: #28a745; /* Even darker green when clicked */
}

/**/
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: var(--contrast-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.flip-card-front img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.flip-card-back {
    background-color: var(--heading-color);
    color: var(--contrast-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 10px;
    transform: rotateY(180deg);
    text-align: center;
}

.flip-card-back h3 {
    color: var(--contrast-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

.flip-card-back p {
    font-size: 14px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .flip-card {
        width: 315px; 
        height: 200px; 
        margin-bottom: 10px;
    }
    
    .certificate {
        padding: 50px;
    }

    .card-row {
        justify-content: center; 
    }

    .flip-card-inner {
        padding: 0px; 
    }
    
    .flip-card-front img {
        max-width: 50%;
    }

    .flip-card-back h3 {
        font-size: 16px;
    }

    .flip-card-back p {
        font-size: 12px; 
    }
}

@media (max-width: 480px) {
    .certificate {
        padding: 20px 0;
    }

    .card-container {
        padding: 0 10px; 
    }

    .flip-card {
        width: 150px; 
        height: 215px; 
    }

    .flip-card-front img {
        max-width: 80%; 
    }

    .card-row {
        justify-content: center; 
        gap: 15px; 
    }

    .flip-card-back h3 {
        font-size: 14px; /* Reduce heading font size */
    }

    .flip-card-back p {
        font-size: 10px; /* Reduce paragraph font size */
    }
}

/**/


/**/
/* Section: Services */

.section-services {
  font-family: "Poppins", sans-serif;
  color: #2e3b46;
  padding-top: 50px;
  padding-bottom: 80px;
  /*background-image:url(../img/service/bg3.png);*/
  background-image: url(../img/h2_blog_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;

}


.section-services .header-section {
  margin-bottom: 34px;
}

.section-services .header-section .title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 800;
  font-size: 40px;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.section-services .header-section .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: #4a6076;
  /* Muted grayish-blue */
  border-radius: 3px;
}

.section-services .header-section .description {
  font-size: 14px;
  color: #343f47;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
  z-index: 1;
  box-shadow: -7px 4px 16px 0px rgb(66 68 69);
}

.section-services .single-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}


.section-services .single-service .content {
  position: relative;
  z-index: 20;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #002d4d;
  /* Deep blue for circle */
  border: 6px solid #9aa3ab;
  /* Muted gray border */
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all 0.6s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: var(--contrast-color);
  font-size: 30px;
  transition: all .3s;
}

.section-services .single-service:hover .icon {
  background-color: #ffffff;
  color: var(--accent-color);
}

.section-services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 23px;
  transition: color .3s;
}

.section-services .single-service:hover .title {
  color: #ffffff;
}

.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color .3s;
}

.section-services .single-service:hover .description {
  color: #ffffff;
}

.section-services .single-service a {
  position: relative;
  font-size: 18px;
  color: #2e3b46;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}

.section-services .single-service:hover a {
  color: #ffffff;
}

.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: background-color .3s;
}

.section-services .single-service:hover a:after {
  background-color: #ffffff;
}

/* Remove the hover effect on the image */
.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  opacity: 1;
  /* Keep opacity constant, no hover effect */
}

/* Remove the hover effect on the image */
.single-service:hover .service-image {
  opacity: 1;
  /* No change on hover */
}

.single-service .content {
  position: relative;
  z-index: 10;
}





/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

@media (max-width: 425px) and (min-width: 320px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }

  .section-services {
    font-family: "Poppins", sans-serif;
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 30px;
  }

  .section-services .header-section .title {
    font-size: 33px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 36px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#sync1 .item {
  background: #0c83e7;
  padding: 80px 0;
  margin: 5px;
  color: #fff;
  border-radius: 3px;
  text-align: center;
}

#sync2 .item {
  background: #C9C9C9;
  padding: 10px 0;
  margin: 5px;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#sync2 .item h1 {
  font-size: 18px;
}

#sync2 .current .item {
  background: #0c83e7;
}


.owl-theme .owl-nav [class*='owl-'] {
  transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}

#sync1.owl-theme {
  position: relative;
}

/*#sync1.owl-theme .owl-prev,*/
/*#sync1.owl-theme .owl-next {*/
/*  width: 22px;*/
/*  height: 40px;*/
/*  margin-top: -20px;*/
/*  position: absolute;*/
/*  top: 50%;*/
/*}*/

/*#sync1.owl-theme .owl-prev {*/
/*  left: 10px;*/
/*}*/

/*#sync1.owl-theme .owl-next {*/
/*  right: 10px;*/
/*}*/

.ifrm {
  border: none;
  width: 100%;
  margin-top: 50px;
}

/* ------------------ */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 10px;
  
background: radial-gradient(circle at 100% 175%, #cad6ef 40%, rgba(128, 128, 133, 0.3) 80%, rgba(0, 0, 0, 0) 86%);


 /*background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--contrast-color), transparent 98%) 25%, transparent 50%);*/
pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), rgb(0, 0, 0) 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}



@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

#about h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgb(0 0 0 / 27%)
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }

  .features .nav-link h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .features .nav-tabs {
    padding: 6px;
  }

  .faq .faq-title {
    font-size: 1.5rem;
  }
}

/*-------------------------*/
.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: #00194c;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  /*display: flex; */
  flex-direction: column;
  justify-content: space-between;
  height: 325px;
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  /* Ensure the image is a perfect circle */
  border-radius: 50%;
  border: 6px solid var(--background-color);
  margin: 0 10px 15px 0;
  /* Adjust margin for spacing */
  align-self: center;
  /* Center the image */
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

.testimonial-bg-two {
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  /*opacity: 0.5;*/
  transition: 0.3s;
  /*filter: grayscale(100);*/
}

/*.clients .swiper-slide img:hover {*/
/*  filter: none;*/
/*  opacity: 1;*/
/*}*/

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}


/*--------------------------------------------------------------
# Counter Two
--------------------------------------------------------------*/
.counter-two {
  position: relative;
  display: block;
  background-color: var(--background-color); 
  padding: 70px 0;
  overflow: hidden;
  z-index: 1;
}

.counter-two_-shape-1 {
  position: absolute;
  top: -80px;
  left: 0;
  opacity: 0.08;
  z-index: -1;
}

.counter-two_-shape-1 img {
  width: auto;
}

.counter-two__point-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.counter-two__single {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.counter-two__single::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 4px;
  width: 2px;
  background-color: rgba(var(--accent-color), 0.1);
}

.counter-two__single:last-child::before {
  display: none;
}

.counter-two__icon {
  position: relative;
  display: inline-block;
}

.counter-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--accent-color); /* Accent color for icon */
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-two__single:hover .counter-two__icon span {
  transform: scale(0.9);
}

.counter-two__count {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  margin-top: 15px;
  justify-content: center;
}

.counter-two__count h3 {
  font-size: 60px;
  font-weight: 400;
  line-height: 60px !important;
  font-family: "Castoro", serif !important; 
  color: var(--heading-color); /* Heading color */
}

.counter-two__count span {
  font-size: 60px;
  font-weight: 400;
  line-height: 60px !important;
  font-family: "Castoro", serif !important;
  color: var(--heading-color); /* Heading color */
  top: 1px;
}

.counter-two__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: var(--default-color); /* Default text color */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.counter-two__single {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .counter-two__single:nth-child(2):before {
    display: none;
  }
}

@media only screen and (max-width: 767px) {

 .counter-two__single {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .counter-two__single:before {
    display: none;
  }}


/**/

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

/* .faq .faq-container .faq-item .faq-content ul, li {
  margin-bottom: 0;
  overflow: hidden;
} */
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: #002d4d;
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}


/**/

/* Basic styling for the contact form */
.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
  .contact .info-item {
      gap: 0.5rem;
      margin-left: -21px;
  }
  .contact .info-item .icon-box {
          width: 2.5rem;
    height: 2.5rem;
  }
  
}

/* Title of the form */
.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

/* Description or additional text in the form */
.contact .contact-form p {
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 2rem;
}

/* Floating labels, improved margin for spacing */
.contact-form .form-floating {
  margin-bottom: 15px;
}

/* Textarea minimum height */
.contact-form textarea {
  min-height: 160px;
}

/* Input and select field styles */
.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  /* border: 1px solid rgba(var(--default-color-rgb), 0.3); */
  border-radius: 0.5rem;
  background-color: rgba(var(--surface-color-rgb), 0.9);
  color: var(--default-color);
}

/* Focus state for form fields */
.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

/* Placeholder text styling */
.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: rgba(var(--default-color-rgb), 0.5);
  /* Lighter placeholder text */
}

/* Button styling */
.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* Smooth transition */
}

/* Button icon styling */
.contact .contact-form .btn i {
  font-size: 1.25rem;
}


/* Active state for button */
.contact .contact-form .btn:active {
  transform: translateY(0);
  /* Reset lift on click */
}

/* Mobile responsive button, full width on smaller screens */
@media (max-width: 768px) {
  .contact .contact-form {
    padding: 1.5rem;
    /* Adjust padding for smaller screens */
  }

  .contact .contact-form .btn {
    width: 100%;
    /* Full width button on mobile */
  }
}

.bg-contact {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  
}

.bg-contact h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.bg-contact i {
  color: var(--accent-color);
}

.bg-contact2 {
  background-color: var(--surface-color);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .sub-service h3 {
  background-color: var(--heading-color);
  padding: 13px;
  text-align: center;
  color: var(--contrast-color);
  margin-bottom: 40px;
}

.service-details .sub-service h4 {
  background-color: var(--heading-color);
  padding: 13px;
  text-align: center;
  color: var(--contrast-color);
  margin-bottom: 40px;
}

.service-details .right-colomn {
  background-color: #ecf4fb;
  margin-bottom: 20px;
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--heading-color);
}

/* Active link styling */
.service-details .services-list a.active {
  color: var(--contrast-color);
  /* Text color for the active link */
  background-color: var(--heading-color);
  /* Background color for the active link */
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
  /* Icon color when link is active */
}

/* Hover effect */
/*.service-details .services-list a:hover {*/
/*  background-color: var(--heading-color);*/
/*  color: var(--contrast-color);*/
/*}*/

.service-details .services-list a.active,
.service-details .services-list a:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
}

.service-details .services-list a:hover i {
  color: var(--contrast-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--haeding-color);
}

.service-details .download-catalog a:hover {
  color: var(--heading-color);
}

.service-details .help-box {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 17px;
  text-align: justify;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ol {
  list-style: none;
}

.service-details ol li {
  padding: 17px;
  text-transform: none;
  align-items: center;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* Title Style for Contact Section */
.inner-contact-info .title {
  margin-bottom: 30px;
  position: relative;
  font-weight: 800;
  font-size: 36px;
  color: var(--default-color);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

.inner-contact-info .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 4px;
}

/* Inner Contact Info Styling */
.inner-contact-info {
  padding-left: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.contact-info-item {
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.6s;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .list-wrap li {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

.contact-info-item .list-wrap li:last-child {
  margin-bottom: 0;
}

/* Image Section Styling */
.inner-contact-img img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness for Contact Section */
@media (max-width: 991px) {
  .inner-contact-info {
    padding-left: 20px;
  }

  .inner-contact-img img {
    width: 100%;
    height: auto;
  }

  .inner-contact-info .title {
    font-size: 30px;
  }

  .contact-info-item .list-wrap li {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .inner-contact-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /*.row {*/
  /*  flex-direction: column-reverse;*/
  /*}*/

  .col-lg-6 {
    width: 100%;
  }

  .inner-contact-info {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Choose Us Section */

.why-choose-us {
  background: url('') no-repeat center center;
  background-size: cover;
  padding: 80px 20px;
  color: white;
  text-align: center;
  animation: fadeIn 2s ease-out;
}

/* Fade In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  animation: slideIn 1.5s ease-out;
}

.feature {
  background-color: rgba(4, 15, 96, 0.6);
  border-radius: 8px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(4, 15, 96, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.feature i {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Slide In Animation */
@keyframes slideIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .features {
    flex-direction: column;
    gap: 20px;
  }
}


.page-title {
  color: var(--default-color);
  padding: 200px 0 80px 0;
  /*margin-bottom: 0px;*/
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.page-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 36, 57, 1);
  opacity: 0.8;
  z-index: -1;
}

.page-title h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--contrast-color);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
  color: var(--accent-color);
  /* Ensures breadcrumb items match contrast color */
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: var(--contrast-color)
    /* Improved color mix for separator */
}

.page-title .breadcrumbs li {
  display: inline;
  margin-right: 10px;
}

.page-title .breadcrumbs li a {
  color: #fff;
  /* Ensures breadcrumb links are white */
  text-decoration: none;
  /* Removes underline from breadcrumb links */
}


/* About Section */
#about {
  padding: 60px 0;
  background-color: #fff;
}

#about .section_title_all h3 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
}

#about .section_title_all p {
  color: #6c757d;
  font-size: 18px;
  line-height: 1.6;
}

#about .vertical_content_manage {
  margin-top: 50px;
}

#about .about_header_main {
  padding: 20px;
}

#about .about_icon_box p {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
}

#about .about_heading {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

#about .about_content_box_all {
  margin-bottom: 30px;
}

#about .about_detail {
  text-align: center;
}

#about .about_icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

#about .about_heading,
.about_detail h5 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

#about .about_content_box_all p {
  color: #6c757d;
  font-size: 16px;
}

#about .img_about img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


/* ----------------ABOUT PAGE STYLING------------------ */

/* About Section - Layout Styling */
.about_section .row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Detail Box - Text Content */
.about_section .detail-box {
  padding-right: 30px;
  animation: fadeIn 1.5s ease-out;
}

.about-img-eight {
    position: relative;
    text-align: center;
    padding-bottom: 90px;
}

/* Image Styling - Oval/rounded Shape */
.about_section .about-img-eight img:nth-child(1) {
  width: 80%;
  height: auto;
  border-radius: 100px 0 0 0;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  /*animation: fadeInImage 2s forwards;*/
}

.about_section .about-img-eight img:nth-child(2){
    border-radius: 0 50px 0 0;
    border: 8px solid var(--contrast-color);
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 60%;
    height: auto;
    z-index: 2;
}

/* Detail Text Styling */
.about_section .detail-box p {
  color: #333;
  /* Darker color for text */
  font-size: 16px;
  line-height: 1.8;
  /* Improved readability */
  margin-top: 15px;
  font-family: Arial, sans-serif;
  /* Ensures consistent font */
  opacity: 0;
  animation: fadeInText 2s forwards 0.5s;
  /* Text fade-in animation with delay */
}

/* Styling for Heading */
.about_section .heading_container h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInText 2s forwards 1s;
  /* Fade-in animation with delay */
}

.about-points i {
  color: var(--accent-color);
  font-size: 1.25rem;
  padding-right: 1rem;
}

/* Optional: Enhancing Mobile Responsiveness */
@media (max-width: 767px) {
  .about_section .detail-box p {
    font-size: 14px;
  }

  .about_section .heading_container h2 {
    font-size: 30px;
  }

  .about_section .about-img-eight img {
    width: 90%;
  }
}


/* Optional: Styling the rounded image */
.rounded-img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Styling the points section */
.about_section ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

/* Layout Padding - Background Image */
.layout_padding {
  background-image: url(../img/inner_counter_shape.png);
  background-repeat: no-repeat;
  background-color: #d8e9f1;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: parallaxEffect 5s linear infinite;
}

/* About Content Inner - Flex Layout */
.about-content-inner {
  display: flex;
  flex-direction: column;
  /* Stack the items vertically on small screens */
  margin-top: 20px;
  /* Space between content and the heading */
}

.about-content-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-content-inner li {
  display: flex;
  align-items: center;
  /* Align items vertically in the center */
  margin-bottom: 20px;
  /* Add space between list items */
}

.about-content-inner .icon {
  width: 60px;
  /* Adjust the width for the icon */
  height: 60px;
  /* Adjust the height for the icon */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 30px;
  border-radius: 50%;
  /* Make the icon container circular */
  margin-right: 20px;
  /* Space between icon and content */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Add subtle shadow around the icon */
  opacity: 0;
  animation: fadeInIcon 2s forwards 1.5s;
  /* Fade-in effect for icon */
}

.about-content-inner .content {
  flex: 1;
  /* Allow content to take up the remaining space */
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  /* Rounded corners for the content box */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  /* Shadow effect for content */
  transition: box-shadow 0.3s ease;
  /* Smooth transition for hover effect */
}

.about-content-inner .content:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  /* Darker shadow on hover */
}

.about-content-inner .content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.about-content-inner .content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Icon Fade-in Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInImage {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInIcon {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes parallaxEffect {
  0% {
    background-position-x: 0;
  }

  50% {
    background-position-x: 50%;
  }

  100% {
    background-position-x: 0;
  }
}



/**/
