/********** Template CSS **********/
:root {
    --primary: #01313f;
    --secondary: #388d71;
    --light: #EEF9FF;
    --dark: #091E3E;
    --icons: #01313F;
    --btn: linear-gradient(135deg, #ffdc00 0%, #00762f 100%);
    --display-1: linear-gradient(to right, #000d3a, #00415e);
}

.featured-post {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.featured-post img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.featured-post:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Overlay panel */
.post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.8)
  );
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  z-index: 2;
}

.featured-post:hover .post-overlay {
  opacity: 1;
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.post-title a {
  color: #ffffff;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.post-author a {
  color: #64a58e;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.light-background {
  --background-color: #e6edf0;
  --surface-color: #ffffff;
}
.post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: #f2f2f2;
  padding: 1.5rem;
}
.img-fluid {
  /* width: 100%;
  height: 500px;
  object-fit: cover; */
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 16px;
  margin-bottom: 3px;
  background-color: #196f68;
  color: #ffffff;
  border-radius: 5px;
  transition: 0.3s;
}

.category:hover {
  background-color: #196f68;
  color: #ffffff;
}
.date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
h2#main-title {
  color: #ffffff;
}
.news-tabs .nav-tabs .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.post-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.tab-post {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.tab-post img {
  border-radius: 8px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.tab-post .post-content {
  padding-left: 1rem;
}

.tab-post .post-title a {
  color: #000d3a;
}
.tab-post .post-title {
  font-size: 0.9375rem;
  margin: 0.1rem 0;
  line-height: 1.4;
}
.post-author a {
  color: var(--accent-color);
  font-weight: 500;
}
.post-author {
  font-size: 0.8125rem;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
a.btn.btn-sm.btn-outline-light.btn-sm-square.rounded-circle.me-2 i {
    line-height: inherit;
}
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    color: #FFFFFF;
    background: var(--icons);
    border: none;

}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-outline-primary {
    color: #38bdf8;
    background: transparent;
    border: 2px solid #38bdf8;
}

.btn-outline-primary:hover {
    color: #FFFFFF;
    background: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.2);
}

.btn .btn-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}



/*** Navbar ***/


.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 20px 0;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.navbar-brand .logo {
    width: 30%;
}


.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-brand .logo {
        width: 100px;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgb(0 0 0 / 8%);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}




.min-vh-100 {
    min-height: 100vh !important;
}

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(132, 135, 138, 0.7); */
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
    .min-vh-100 {
        min-height: 70vh !important;
    }

}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #01313f;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service-item {
    background: white !important;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--icons);

    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-item:hover .service-icon::before {
    transform: translateX(100%);
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: scale(1.2);
}

.service-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #212529;
    transition: all 0.3s ease;
}

.service-item:hover h4 {
    color: var(--secondary);
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.service-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.service-item:hover ul li {
    color: #495057;
    transform: translateX(5px);
}

.service-item:hover ul li::before {
    color: #6f42c1;
}

/* Call Us Box */
.position-relative.bg-primary.rounded {
    background: var(--primary);
    padding: 2.5rem !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.position-relative.bg-primary.rounded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.position-relative.bg-primary.rounded:hover::before {
    transform: translateX(100%);
}

.position-relative.bg-primary.rounded:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.position-relative.bg-primary.rounded h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.position-relative.bg-primary.rounded p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.position-relative.bg-primary.rounded h2 {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

.position-relative.bg-primary.rounded:hover h2 {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .service-item {
        padding: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 1.75rem;
    }

    .service-item h4 {
        font-size: 1.1rem;
    }

    .service-item ul li {
        font-size: 0.9rem;
    }

    .position-relative.bg-primary.rounded {
        padding: 2rem !important;
    }

    .position-relative.bg-primary.rounded h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .service-item {
        margin-bottom: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-item h4 {
        font-size: 1rem;
    }

    .service-item ul li {
        font-size: 0.85rem;
    }

    .position-relative.bg-primary.rounded {
        padding: 1.5rem !important;
    }

    .position-relative.bg-primary.rounded h2 {
        font-size: 1.5rem;
    }
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}


.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        /* margin-top: -75px; */
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}



.whatsapp-btn i {
    color: #fff;
    padding: 10px;
    font-size: 25px;
}

.back-to-top i {
    color: #fff;
    /*padding: 10px;*/
    margin: auto;
    font-size: 25px;
}




.whatsapp-btn {
    position: fixed;
    right: 45px;
    bottom: 105px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/* Hero Section with Particle Background */
.hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.hero-section .badge-text {
    color: #028559 !important;

}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: url('../img/Your paragraph text (3).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .text-primary {
    color: #38bdf8 !important;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.hero-section .display-1 {
    font-size: 4.5rem;
    line-height: 1.2;
    background: var(--display-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-shadow: 0 0 20px rgba(56, 189, 248, 0.2); */
}

.hero-section .lead {
    color: #666666;
    font-size: 1.25rem;
    max-width: 600px;
}

.hero-section .btn-primary {
    background: var(--secondary);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px);
    color: white;
    background: var(--primary);
}

.hero-section .btn-outline-primary {
    border: 2px solid var(--primary);
    background: transparent;
    padding: 1rem 2.5rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
}

@media (max-width: 991.98px) {
    .hero-section .display-1 {
        font-size: 3.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-section .btn-primary,
    .hero-section .btn-outline-primary {
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section .display-1 {
        font-size: 2.5rem;
    }

    .hero-section .text-primary {
        font-size: 1rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .hero-buttons {
        display: block !important;
    }

    .hero-section .btn-primary,
    .hero-section .btn-outline-primary {
        margin: 0.5rem 0 !important;
    }

}

/* Hide background on mobile devices */
@media (max-width: 768px) {
    #particle-canvas {
        background-image: none;
    }
}

/* Facts Section Styles */
.fact-box {
    position: relative;
    padding: 40px 30px;
    margin: 15px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    min-height: 250px;
}

.fact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    transition: all 0.3s ease;
}

.fact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fact-box:hover::before {
    height: 8px;
}

.fact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    /* background: var(--icons); */
    color: #fff;
    font-size: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fact-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.fact-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.fact-box:hover .fact-icon {
    transform: perspective(400px) rotateY(180deg);
}

.fact-box:hover .fact-icon::after {
    opacity: 1;
}

.fact-box:hover .fact-icon i {
    transform: perspective(400px) rotateY(-180deg);
    animation: iconPulse 1s ease infinite;
}

@keyframes iconPulse {
    0% {
        transform: perspective(400px) rotateY(-180deg) scale(1);
    }

    50% {
        transform: perspective(400px) rotateY(-180deg) scale(1.2);
    }

    100% {
        transform: perspective(400px) rotateY(-180deg) scale(1);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.fact-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.fact-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive adjustments for facts section */
@media (max-width: 991.98px) {
    .fact-box {
        margin-bottom: 30px;
        padding: 30px 20px;
        min-height: 220px;
    }

    .fact-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
        margin-bottom: 20px;
    }

    .fact-content h5 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .fact-content p {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .fact-box {
        padding: 25px 15px;
        margin: 10px;
        min-height: 200px;
    }

    .fact-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .fact-content h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .fact-content p {
        font-size: 13px;
    }

    /* Add gap between fact boxes on mobile */
    .facts .row {
        gap: 20px;
    }

    .facts .col-lg-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .fact-box {
        padding: 20px 12px;
        margin: 8px;
        min-height: 180px;
    }

    .fact-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .fact-content h5 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .fact-content p {
        font-size: 12px;
    }

    /* Increase gap for smaller mobile devices */
    .facts .row {
        gap: 25px;
    }

    .facts .col-lg-4 {
        margin-bottom: 25px;
    }
}



/* aboute section */

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23e9ecef" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.custom-btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    margin-top: 1.2rem;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(41, 98, 185, 0.08);
    cursor: pointer;
    letter-spacing: 0.02em;
}

.custom-btn--solutions {
    border: 1px solid black;
    color: var(--secondary);
}

.custom-btn--solutions:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(41, 98, 185, 0.18);
}

.custom-btn--whatsapp {
    border: 1px solid black;
    color: var(--secondary)
}

.custom-btn--whatsapp:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.18);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    border-radius: 1rem;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
    z-index: 1;
}

.shape-1 {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #4ecdc4, #45b7af);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #ffd166, #ffd700);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.shape-5 {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff9ff3, #feca57);
    bottom: 40%;
    left: 35%;
    animation-delay: 3s;
}



.code-brackets {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.angle-brackets {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.curly-brackets {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.experience-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--icons);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    z-index: 1;
    transform: rotate(5deg);
    transition: all 0.3s ease;
}

.experience-box:hover {
    transform: rotate(0deg) scale(1.05);
}

.experience-content {
    position: relative;
    z-index: 1;
}

.experience-stars {
    margin-top: 0.5rem;
    color: #ffd700;
    font-size: 0.8rem;
}

.text-gradient {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--icons);
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: #00762f42;
    color: var(--primary);
}

.feature-icon i {
    display: inline-block;
    vertical-align: middle;
    line-height: inherit;
}

.feature-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.cta-section {
    background: white;
    padding: 1rem;
    border-radius: 0.6rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.contact-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), rgba(162, 155, 254, 0.03));
    padding: 0.8rem;
    border-radius: 0.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.08);
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(108, 92, 231, 0.15);
}

.contact-info h5 {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
}

.contact-info h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-info h4 a {
    color: #6c5ce7;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-info h4 a:hover {
    color: #a29bfe;
}

.contact-pulse {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 5px;
    height: 5px;
    background: #6c5ce7;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.button-group {
    display: flex;
    gap: 0.5rem;
}

.btn-gradient,
.btn-outline-gradient {
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-gradient {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border: none;
    color: white;
    box-shadow: 0 2px 6px rgba(108, 92, 231, 0.15);
}

.btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(108, 92, 231, 0.2);
}

.btn-outline-gradient {
    border: 1px solid #6c5ce7;
    color: #6c5ce7;
    background: white;
}

.btn-outline-gradient:hover {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(108, 92, 231, 0.15);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

@media (max-width: 991.98px) {
    .cta-section {
        padding: 0.8rem;
    }

    .contact-box {
        padding: 0.7rem;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .button-group {
        flex-direction: column;
        gap: 0.4rem;
    }

    .btn-gradient,
    .btn-outline-gradient {
        width: 100%;
        padding: 0.4rem 0.7rem;
    }
}

/* Floating Shapes Animation */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-10px, -10px) rotate(5deg);
    }

    50% {
        transform: translate(0, -20px) rotate(0deg);
    }

    75% {
        transform: translate(10px, -10px) rotate(-5deg);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-15px, 15px) rotate(10deg);
    }
}

@keyframes float-medium {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, -15px) rotate(-10deg);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.3;
        transform: scale(1);
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
    z-index: 1;
}

.shape-1 {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #4ecdc4, #45b7af);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #ffd166, #ffd700);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.shape-5 {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff9ff3, #feca57);
    bottom: 40%;
    left: 35%;
    animation-delay: 3s;
}

.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tech-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-family: monospace;
    font-size: 1.5rem;
    animation: fadeInOut 4s ease-in-out infinite;
    z-index: 1;
}

.code-brackets {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.angle-brackets {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.curly-brackets {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Feature Boxes */
.bg-primary.rounded {
    background: var(--icons);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
}

.bg-primary.rounded:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.bg-primary.rounded i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.bg-primary.rounded:hover i {
    transform: scale(1.2);
}

/* Feature Content */
.col-12.wow.zoomIn {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.col-12.wow.zoomIn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.col-12.wow.zoomIn h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
    transition: color 0.3s ease;
}

.col-12.wow.zoomIn:hover h4 {
    color: var(--secondary);
}

.col-12.wow.zoomIn p {
    color: #6c757d;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.col-12.wow.zoomIn:hover p {
    color: #495057;
}

/* Image Container */
.position-relative.h-100 {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.position-relative.h-100:hover {
    transform: translateY(-5px);
}

.position-relative.h-100 img {
    transition: transform 0.3s ease;
}

.position-relative.h-100:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .col-12.wow.zoomIn {
        padding: 1.5rem;
    }

    .bg-primary.rounded i {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .col-12.wow.zoomIn {
        margin-bottom: 1.5rem;
    }

    .col-12.wow.zoomIn h4 {
        font-size: 1.1rem;
    }

    .col-12.wow.zoomIn p {
        font-size: 0.9rem;
    }
}

/* Quote Section Modern Styles */
.quote-info-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.title-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary) !important;
    color: white;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.info-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    border-color: var(--secondary);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--icons);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(95, 95, 95, 0.3);
}

.card-icon i {
    font-size: 1.25rem;
    color: white;
}

.card-content h5 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.card-content p {
    margin: 0;
    color: #6c757d;
}

.contact-card .card-content p a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card .card-content p a:hover {
    color: #6f42c1;
}

.quote-form-section {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.quote-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary) !important;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: #6c757d;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-floating>.form-control {
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 0.75rem;
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
}

.form-floating>.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-floating>label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary) !important;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
    background: var(--secondary) !important;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {

    .quote-info-section,
    .quote-form-section {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        margin-bottom: 1rem;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary) !important;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}




.client-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.2);
}

.client-logo:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for larger logos */
@media (max-width: 991.98px) {
    .client-logo {
        width: 120px;
        height: 120px;
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .client-logo {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(13, 110, 253, 0.1);
    font-family: serif;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
}

.client-role {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Owl Carousel Customization */
.testimonial-carousel .owl-dots {
    margin-top: 2rem;
    text-align: center;
}

.testimonial-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(13, 110, 253, 0.2) !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary) !important;
    transform: scale(1.2);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 40px;
    height: 40px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--secondary) !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .client-logo {
        width: 80px;
        height: 80px;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        margin: 0.5rem;
    }

    .testimonial-carousel .owl-nav {
        display: none;
    }
}

.blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(74, 144, 226, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--secondary);
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--secondary);
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .blog-image {
        height: 200px;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
}

#footer {
    background-color: #196F68 !important;
}

#top-bar {
    background-color: #196F68 !important;
}

/* Features Grid Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--icons);
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: #00762f42;
    color: var(--primary);
}

.feature-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Responsive adjustments for features grid */
@media (max-width: 991.98px) {
    .features-grid {
        gap: 1.25rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2rem;
    }

    .feature-item h5 {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.75rem;
    }

    .feature-item h5 {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .features-grid {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    .feature-item h5 {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.75rem;
    }

}


    .custom-alert {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 300px;
    max-width: 90%;
    transition: top 0.5s ease-in-out;
    opacity: 0;
}

.custom-alert.show {
    top: 20px;
    opacity: 1;
}

.alert-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
}

.alert-icon {
    margin-right: 15px;
    font-size: 24px;
}

.alert-message {
    flex-grow: 1;
    font-size: 16px;
}

.alert-close {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.alert-close:hover {
    color: #333;
}

.custom-alert.success .alert-content {
    border-left: 4px solid #28a745;
}

.custom-alert.success .alert-icon {
    color: #28a745;
}

.custom-alert.error .alert-content {
    border-left: 4px solid #dc3545;
}

.custom-alert.error .alert-icon {
    color: #dc3545;
}



/* contact section map */
.map {
    width: 600px;
    height: 343px;
}


@media screen and (max-width: 575.98px) {
    .map {
        width: 314px;
        height: 250px;
    }
}

/* Success and Error Messages */
.success-message,
.error-message {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    animation: slideIn 0.5s ease-out;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
}

.success-icon,
.error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.success-icon {
    color: #28a745;
}

.error-icon {
    color: #dc3545;
}

.success-message h4,
.error-message h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.success-message p,
.error-message p {
    font-size: 16px;
    margin: 0;
    color: #6c757d;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form Feedback Container */
#formFeedback {
    margin-top: 20px;
    padding: 0;
    border: none;
    background: transparent;
}

#formFeedback .success-message,
#formFeedback .error-message {
    margin: 0;
}