
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f1f5f9; /* Background color for the entire website, including individual sections */
  --default-color: #475569; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1e293b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2E4799; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d131f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid var(--bs-primary);
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    border-width: 1px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -400px;}
    50%   {right: -200px;}
    75%   {top: -200px;}
    100%  {top: -400px;}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0%   {left: 0px;}
    50%   {left: 70px;}
    100%  {left: 0px;}
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0%   {left: -240px;}
    50%   {left: -300px;}
    100%  {left: -240px;}
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }
}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -200px;}
    50%   {right: -100px;}
    75%   {top: -100px;}
    100%  {top: -200px;}
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
/* .about .text {
    position: relative;
} */

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item .service-img::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.service .service-item:hover .service-img::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content {
    position: relative;
}

.service .service-item .service-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
    height: 100%;
}

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
    transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after {
    height: 100%;
}

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: 8px solid var(--bs-primary);
}
/*** Project End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: var(--bs-primary) !important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  background-color: var(--background-color);
  overflow: hidden;
  padding-bottom: 60px;
}

.about .about-images-wrapper {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
  z-index: 1;
}

@media (max-width: 992px) {
  .about .about-images-wrapper {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}

.about .image-main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px -10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about .image-main:hover img {
  transform: scale(1.03);
}

.about .image-offset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 8px solid var(--background-color);
  z-index: 3;
  box-shadow: 0 15px 30px -5px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 992px) {
  .about .image-offset {
    display: none;
  }
}

.about .image-offset img {
  width: 100%;
  height: auto;
  display: block;
}

.about .experience-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 24px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 4;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  animation: float-badge 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .about .experience-badge {
    left: 20px;
    top: 20px;
    padding: 16px 20px;
  }
}

.about .experience-badge .years {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.about .experience-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.about .shape-pattern {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 200px;
  height: 200px;
  z-index: 1;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 85%) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.7;
}

@media (min-width: 1200px) {
  .about .about-content {
    padding-left: 40px;
  }
}

.about .section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 45px;
}

.about .section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
}

.about h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 1.75rem;
  }
}

.about .lead-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 16px;
  font-weight: 500;
}

.about .description {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.7;
}

.about .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .about .features-grid {
    grid-template-columns: 1fr;
  }
}

.about .feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-color);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .feature-card i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about .feature-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading-color);
}

.about .feature-card:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.about .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .stats-row {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}

.about .stat-box {
  display: flex;
  flex-direction: column;
}

.about .stat-box .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.2;
}

.about .stat-box .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about .action-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about .btn-primary-custom {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.about .btn-primary-custom:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.about .btn-primary-custom:hover i {
  transition: 0.3s;
  transform: translateX(4px);
}

.about .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about .contact-info .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
}

.about .contact-info .text {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
}

.about .contact-info .text span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.8rem;
}

.about .contact-info .text a {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .contact-info .text a:hover {
  color: var(--accent-color);
}

.about .contact-info:hover .icon-box {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0;
  background-color: var(--background-color);
  position: relative;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent);
  pointer-events: none;
}

.why-us .sidebar-content {
  position: sticky;
  top: 100px;
}

.why-us .sidebar-content .badge-wrapper {
  margin-bottom: 16px;
}

.why-us .sidebar-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
  color: var(--contrast-color);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us .sidebar-content .section-badge i {
  font-size: 14px;
}

.why-us .sidebar-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--heading-color);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .why-us .sidebar-content h2 {
    font-size: 28px;
  }
}

.why-us .sidebar-content .description {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
}

.why-us .sidebar-content .stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.why-us .sidebar-content .stat-cards .stat-card {
  background: var(--surface-color);
  padding: 20px 24px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.why-us .sidebar-content .stat-cards .stat-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.why-us .sidebar-content .stat-cards .stat-card .stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  min-width: 90px;
}

.why-us .sidebar-content .stat-cards .stat-card .stat-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.why-us .sidebar-content .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-us .sidebar-content .action-buttons .btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .sidebar-content .action-buttons .btn-main:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.why-us .sidebar-content .action-buttons .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .sidebar-content .action-buttons .btn-outline:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (min-width: 576px) {
  .why-us .sidebar-content .action-buttons {
    flex-direction: row;
  }
}

.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .why-us .features-grid {
    grid-template-columns: 1fr;
  }
}

.why-us .features-grid .feature-box {
  background: var(--surface-color);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-us .features-grid .feature-box:first-child {
  grid-column: span 2;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .why-us .features-grid .feature-box:first-child {
    grid-column: span 1;
    flex-direction: column;
  }
}

.why-us .features-grid .feature-box:first-child .feature-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.why-us .features-grid .feature-box:first-child .feature-icon i {
  font-size: 40px;
}

.why-us .features-grid .feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.why-us .features-grid .feature-box.highlight {
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 94%), color-mix(in srgb, var(--accent-color), transparent 98%));
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-us .features-grid .feature-box.highlight .feature-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  padding: 6px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(45deg);
}

.why-us .features-grid .feature-box .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #a855f7 40%));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-us .features-grid .feature-box .feature-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.why-us .features-grid .feature-box .feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.why-us .features-grid .feature-box .feature-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 16px;
}

.why-us .features-grid .feature-box .feature-content .feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.why-us .features-grid .feature-box .feature-content .feature-link:hover {
  gap: 12px;
}

.why-us .features-grid .feature-box .feature-content .feature-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.why-us .process-timeline {
  background: var(--surface-color);
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.why-us .process-timeline .timeline-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.why-us .process-timeline .timeline-title i {
  color: var(--accent-color);
  font-size: 20px;
}

.why-us .process-timeline .timeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 768px) {
  .why-us .process-timeline .timeline-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.why-us .process-timeline .timeline-steps .timeline-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-us .process-timeline .timeline-steps .timeline-step .step-marker {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.why-us .process-timeline .timeline-steps .timeline-step .step-info strong {
  display: block;
  font-size: 14px;
  color: var(--heading-color);
}

.why-us .process-timeline .timeline-steps .timeline-step .step-info span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.why-us .process-timeline .timeline-steps .timeline-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
  min-width: 20px;
  max-width: 60px;
}

@media (max-width: 768px) {
  .why-us .process-timeline .timeline-steps .timeline-connector {
    display: none;
  }
}

.why-us .capabilities-section .capabilities-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.why-us .capabilities-section .capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .why-us .capabilities-section .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

.why-us .capabilities-section .capabilities-grid .capability-card {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.why-us .capabilities-section .capabilities-grid .capability-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  background: var(--surface-color);
}

.why-us .capabilities-section .capabilities-grid .capability-card .capability-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-us .capabilities-section .capabilities-grid .capability-card .capability-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.why-us .capabilities-section .capabilities-grid .capability-card h6 {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.why-us .capabilities-section .capabilities-grid .capability-card p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

@media (max-width: 991px) {
  .why-us .sidebar-content {
    position: static;
    margin-bottom: 48px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* .testimonials {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  position: relative;
  overflow: hidden; */
  /* Left Sidebar */
  /* Testimonials Carousel */
  /* Swiper Pagination */
  /* Responsive Styles */
}

/* .testimonials::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials .testimonials-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.testimonials .testimonials-sidebar .avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar:first-child {
  margin-left: 0;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar:hover {
  transform: scale(1.1) translateY(-4px);
  z-index: 5;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  margin-left: -12px;
  border: 3px solid var(--surface-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  margin-bottom: 24px;
}

.testimonials .testimonials-sidebar .sidebar-content .satisfied-badge i {
  font-size: 12px;
}

.testimonials .testimonials-sidebar .sidebar-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.testimonials .testimonials-sidebar .sidebar-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all i {
  transition: transform 0.3s ease;
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover i {
  transform: translateX(5px);
}

.testimonials .testimonials-carousel {
  padding-bottom: 60px;
}

.testimonials .testimonials-carousel .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #9333ea 40%));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonials .testimonial-card:hover::before {
  opacity: 1;
}

.testimonials .testimonial-card:hover .quote-mark {
  transform: scale(1.15);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.testimonials .testimonial-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.testimonials .testimonial-card .card-top .stars {
  display: flex;
  gap: 4px;
}

.testimonials .testimonial-card .card-top .stars i {
  color: #f59e0b;
  font-size: 16px;
}

.testimonials .testimonial-card .card-top .quote-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.testimonials .testimonial-card .card-top .quote-mark i {
  font-size: 22px;
}

.testimonials .testimonial-card .testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 28px;
  position: relative;
}

.testimonials .testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .testimonial-card .author-info .author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.testimonials .testimonial-card .author-info .author-details h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px;
}

.testimonials .testimonial-card .author-info .author-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent-color);
}

@media (max-width: 1199px) {
  .testimonials .testimonials-sidebar {
    padding-right: 24px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 28px;
  }

  .testimonials .testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonials-sidebar {
    padding-right: 0;
    padding-bottom: 48px;
    text-align: center;
  }

  .testimonials .testimonials-sidebar .avatar-stack {
    justify-content: center;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 26px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {

  .testimonials .testimonials-sidebar .avatar-stack .avatar,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 42px;
    height: 42px;
  }

  .testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 24px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    font-size: 15px;
  }

  .testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
    padding: 12px 28px;
    font-size: 14px;
  }

  .testimonials .testimonial-card {
    padding: 24px;
  }

  .testimonials .testimonial-card .card-top .stars i {
    font-size: 14px;
  }

  .testimonials .testimonial-card .card-top .quote-mark {
    width: 40px;
    height: 40px;
  }

  .testimonials .testimonial-card .card-top .quote-mark i {
    font-size: 18px;
  }

  .testimonials .testimonial-card .testimonial-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .testimonials .testimonial-card .author-info {
    gap: 12px;
    padding-top: 16px;
  }

  .testimonials .testimonial-card .author-info .author-img {
    width: 46px;
    height: 46px;
  }

  .testimonials .testimonial-card .author-info .author-details h5 {
    font-size: 15px;
  }

  .testimonials .testimonial-card .author-info .author-details span {
    font-size: 13px;
  }

  .testimonials .testimonials-carousel {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {

  .testimonials::before,
  .testimonials::after {
    display: none;
  }

  .testimonials .testimonials-sidebar {
    padding-bottom: 40px;
  }

  .testimonials .testimonials-sidebar .avatar-stack {
    margin-bottom: 24px;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar:first-child,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count:first-child {
    margin-left: 0;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    font-size: 11px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 22px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    font-size: 14px;
  }

  .testimonials .testimonial-card {
    padding: 20px;
  }

  .testimonials .testimonial-card .card-top {
    margin-bottom: 20px;
  }

  .testimonials .testimonial-card .card-top .quote-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .testimonials .testimonial-card .card-top .quote-mark i {
    font-size: 16px;
  }

  .testimonials .testimonial-card .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-card .author-info .author-img {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .testimonials .testimonial-card .author-info .author-details h5 {
    font-size: 14px;
  }

  .testimonials .testimonial-card .author-info .author-details span {
    font-size: 12px;
  }

  .testimonials .testimonials-carousel {
    padding-bottom: 45px;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 26px;
  }
} */

 .testimonial{
            margin: 0 20px 40px;
        }
        .testimonial .testimonial-content{
            padding: 35px 25px 35px 50px;
            margin-bottom: 35px;
            background: #fff;
            position: relative;
        }
        .testimonial .testimonial-content:before{
            content: "";
            position: absolute;
            bottom: -30px;
            left: 0;
            border-top: 15px solid #718076;
            border-left: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }
        .testimonial .testimonial-content:after{
            content: "";
            position: absolute;
            bottom: -30px;
            right: 0;
            border-top: 15px solid #718076;
            border-right: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }
        .testimonial-content .testimonial-icon{
            width: 50px;
            height: 45px;
            background: #0CCA4A;
            text-align: center;
            font-size: 22px;
            color: #fff;
            line-height: 42px;
            position: absolute;
            top: 37px;
            left: -19px;
        }
        .testimonial-content .testimonial-icon:before{
            content: "";
            border-bottom: 16px solid #05A739;
            border-left: 18px solid transparent;
            position: absolute;
            top: -16px;
            left: 1px;
        }
        .testimonial .description{
            font-size: 15px;
            font-style: italic;
            color: #8a8a8a;
            line-height: 23px;
            margin: 0;
        }
        .testimonial .title{
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: #525252;
            text-transform: capitalize;
            letter-spacing: 1px;
            margin: 0 0 5px 0;
        }
        .testimonial .post{
            display: block;
            font-size: 14px;
            color: #0CCA4A;
        }
        .owl-theme .owl-controls{
            margin-top: 20px;
        }
        .owl-theme .owl-controls .owl-page span{
            background: #ccc;
            opacity: 1;
            transition: all 0.4s ease 0s;
        }
        .owl-theme .owl-controls .owl-page.active span,
        .owl-theme .owl-controls.clickable .owl-page:hover span{
            background: #0CCA4A;
        }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .info-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: var(--accent-color);
  border-radius: 24px;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.contact .info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, color-mix(in srgb, #000 15%, transparent) 100%);
  pointer-events: none;
}

.contact .info-panel>* {
  position: relative;
  z-index: 1;
}

.contact .info-panel .panel-header {
  margin-bottom: 40px;
}

.contact .info-panel .panel-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.contact .info-panel .panel-header .section-badge i {
  font-size: 14px;
}

.contact .info-panel .panel-header h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--contrast-color);
  letter-spacing: -0.5px;
}

.contact .info-panel .panel-header p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

.contact .info-panel .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact .info-panel .method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact .info-panel .method-item:hover {
  background: color-mix(in srgb, var(--contrast-color) 18%, transparent);
  transform: translateX(8px);
}

.contact .info-panel .method-item .method-icon {
  width: 48px;
  height: 48px;
  background: var(--contrast-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .info-panel .method-item .method-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact .info-panel .method-item .method-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact .info-panel .method-item .method-details .method-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact .info-panel .method-item .method-details a,
.contact .info-panel .method-item .method-details span {
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact .info-panel .method-item .method-details a:hover,
.contact .info-panel .method-item .method-details span:hover {
  opacity: 0.8;
}

.contact .info-panel .stats-strip {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
  border-radius: 16px;
  margin-bottom: 32px;
}

.contact .info-panel .stats-strip .stat-item {
  flex: 1;
  text-align: center;
}

.contact .info-panel .stats-strip .stat-item .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.contact .info-panel .stats-strip .stat-item .stat-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact .info-panel .social-connect {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact .info-panel .social-connect>span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.contact .info-panel .social-connect .social-icons {
  display: flex;
  gap: 12px;
}

.contact .info-panel .social-connect .social-icons a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.contact .info-panel .social-connect .social-icons a:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-4px);
}

.contact .info-panel .social-connect .social-icons a i {
  font-size: 16px;
}

.contact .form-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 10%, transparent);
  height: 100%;
}

.contact .form-card .form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .form-card .form-card-header .header-icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .form-card .form-card-header .header-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.contact .form-card .form-card-header .header-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact .form-card .form-card-header .header-text p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.contact .form-card .php-email-form .input-group-custom label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper i {
  position: absolute;
  left: 18px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  transition: color 0.3s ease;
  z-index: 1;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper input,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
  width: 100%;
  height: 56px;
  padding: 16px 16px 16px 52px;
  font-size: 15px;
  color: var(--default-color);
  background: color-mix(in srgb, var(--default-color) 4%, transparent);
  border: 2px solid transparent;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper input::placeholder,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea::placeholder {
  color: color-mix(in srgb, var(--default-color) 40%, transparent);
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus {
  outline: none;
  background: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus+i,
.contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus~i,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus+i,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus~i {
  color: var(--accent-color);
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper {
  align-items: flex-start;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper i {
  top: 18px;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

.contact .form-card .php-email-form .form-actions {
  margin-top: 32px;
}

.contact .form-card .php-email-form .form-actions .btn-submit {
  width: 100%;
  height: 56px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact .form-card .php-email-form .form-actions .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, #000);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.contact .form-card .php-email-form .form-actions .btn-submit:hover i {
  transform: translateX(4px);
}

.contact .form-card .php-email-form .form-actions .btn-submit i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.contact .form-card .php-email-form .form-actions .secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.contact .form-card .php-email-form .form-actions .secure-note i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color) 70%, transparent);
}

.contact .form-card .php-email-form .form-actions .secure-note span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 992px) {
  .contact .info-panel {
    padding: 40px;
  }

  .contact .info-panel .panel-header h3 {
    font-size: 28px;
  }

  .contact .info-panel .stats-strip {
    gap: 16px;
    padding: 20px;
  }

  .contact .info-panel .stats-strip .stat-item .stat-number {
    font-size: 24px;
  }

  .contact .form-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact .info-panel {
    padding: 32px;
  }

  .contact .info-panel .panel-header {
    margin-bottom: 32px;
  }

  .contact .info-panel .panel-header h3 {
    font-size: 24px;
  }

  .contact .info-panel .contact-methods {
    margin-bottom: 32px;
  }

  .contact .info-panel .stats-strip {
    flex-direction: column;
    gap: 16px;
  }

  .contact .info-panel .stats-strip .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .contact .info-panel .stats-strip .stat-item .stat-number {
    margin-bottom: 0;
    order: 2;
  }

  .contact .info-panel .stats-strip .stat-item .stat-text {
    order: 1;
  }

  .contact .info-panel .social-connect {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .contact .form-card {
    padding: 32px 24px;
  }

  .contact .form-card .form-card-header {
    flex-direction: column;
    gap: 16px;
  }

  .contact .form-card .form-card-header .header-icon {
    width: 56px;
    height: 56px;
  }

  .contact .form-card .form-card-header .header-icon i {
    font-size: 24px;
  }

  .contact .form-card .form-card-header .header-text h4 {
    font-size: 22px;
  }

  .contact .form-card .php-email-form .input-group-custom .input-wrapper input,
  .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
    height: 52px;
    padding: 14px 14px 14px 48px;
  }

  .contact .form-card .php-email-form .form-actions .btn-submit {
    height: 52px;
  }
}

@media (max-width: 576px) {
  .contact .info-panel {
    padding: 24px;
  }

  .contact .info-panel .method-item {
    padding: 14px;
  }

  .contact .info-panel .method-item .method-icon {
    width: 44px;
    height: 44px;
  }

  .contact .info-panel .method-item .method-icon i {
    font-size: 18px;
  }

  .contact .form-card {
    padding: 24px 20px;
  }

  .contact .form-card .form-card-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .contact .form-card .php-email-form .input-group-custom .input-wrapper input,
  .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
    font-size: 16px;
  }
}

/* map start */
.responsive-map{
overflow: hidden;
padding-bottom:56.25%;
position:relative;
height:0;
}
.responsive-map iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}
/* map end */

/* Marquee stock exchange ticker start */
.ticker-container {
  width: 100%;
  overflow: hidden;
  background-color: #102147;
  padding: 12px 0;
  position: relative;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  left: 0;
}

.stock {
  display: inline-block;
  color: white;
  padding: 0 25px;
}

.stock-name {
  font-weight: bold;
  margin-right: 5px;
}

.positive {
  color: #4CAF50;
}

.negative {
  color: #F44336;
}
/* Marquee stock exchange ticker end */

/* banner content start */
.span{
  color: rgba(220, 219, 219, 0.3); /* Black text at 30% opacity */
}
/* banner content end */
