:root {
    --primary-blue: #1F2D38;
    --accent-orange: #3A8125;
    --secondary-blue: #14365d;
    --text-dark: #222222;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .social-icons a {
    color: #ffffff;
    margin-left: 12px;
    transition: color 0.3s;
}

.top-bar .social-icons a:hover {
    color: var(--accent-orange);
}

.green-filter {
    filter: brightness(0) saturate(100%) invert(45%) sepia(45%) saturate(750%) hue-rotate(60deg) brightness(88%) contrast(88%);
}

#page {
    display: none;
}

#loading {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    background-image: url("../img/preloader.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px;
}

/*Whatsapp Boutton*/
.wa-ultimate-button1 {
  position: fixed;
  bottom: 30px;
  left: 45px;
  z-index: 100;
  perspective: 1200px;
  animation: fadeInUp 1.2s ease-out;
}

.wa-entry {
  position: relative;
  width: 65px;
  height: 65px;
  background: radial-gradient(circle, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  color: white;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 0 20px #25d366,
    0 0 60px rgba(37, 211, 102, 0.6),
    inset 0 0 15px #128c7e;
  transition: transform 0.3s ease;
  overflow: visible;
  animation: pulse 2.5s infinite ease-in-out;
}

.wa-entry:hover {
  transform: scale(1.08) rotateX(10deg);
}

.wa-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent);
  animation: glowPulse 3s ease-in-out infinite;
  filter: blur(12px);
  z-index: 0;
}

.wa-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgb(33 197 107);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 {
  width: 75px;
  height: 75px;
  animation: spin 8s linear infinite;
}

.ring2 {
  width: 120px;
  height: 120px;
  animation: spinReverse 12s linear infinite;
}

.wa-bubbles {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  animation: bubbles 4s linear infinite;
  box-shadow:
    0 0 4px #fff,
    0 -10px 0 0 rgba(255,255,255,0.3),
    0 -20px 0 0 rgba(255,255,255,0.2),
    0 -30px 0 0 rgba(255,255,255,0.1);
}

.wa-tooltip {
  position: absolute;
  bottom: 100%;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.4s ease;
  text-shadow: 0 0 4px #25d366;
}

.wa-entry:hover .wa-tooltip {
  opacity: 1;
  transform: scale(1);
}
.wa-entry:hover i{
  color: #fff
}
.wa-tooltip span {
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid #fff;
  white-space: nowrap;
  animation: typing 3s steps(25) 1s forwards, blink 0.8s step-end infinite;
  max-width: 0;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 20px #25d366,
      0 0 60px rgba(37, 211, 102, 0.5),
      inset 0 0 15px #128c7e;
  }
  50% {
    box-shadow:
      0 0 30px #25d366,
      0 0 80px rgba(37, 211, 102, 0.8),
      inset 0 0 25px #128c7e;
  }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes bubbles {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-50%) translateY(-50px);
    opacity: 0;
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes typing {
  to { max-width: 220px; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: white; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .call-to-action-6 {
        display: none !important;
    }
}


.services-nav {
    display: flex !important;
    align-items: center !important;
    position: relative;
}

.services-nav .services-link {
    display: inline-flex !important;
    align-items: center;
    padding-right: 3px !important;
}

.services-dropdown-btn {
    display: inline-flex !important;
    align-items: center;

    width: 16px;
    height: 30px;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: inherit;
    cursor: pointer;
}

.services-dropdown-btn::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
}

.services-dropdown-btn:focus,
.services-dropdown-btn:active {
    outline: none !important;
    box-shadow: none !important;
}

.services-nav .dropdown-menu {
    margin-top: 10px !important;
}



/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 0px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 100px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--primary-blue) !important;
    padding: 8px 16px !important;
    font-size: 13px;
    transition: color 0.3s;
}

.navbar-nav .dropdown-menu{
    position: absolute !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-orange) !important;
}

.navbar li.active a {
    color: var(--accent-orange) !important;
    font-weight: bold!important;
}

.btn-quote {
    background-color: var(--primary-blue);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-quote:hover {
    background-color: #1a440e;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0 100px 0;
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-features-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {

    .hero-features-box {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        color: #fff;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-section {
        padding-bottom: 0px;
        padding-top:40px;
        position: relative;
        color: #fff;
        overflow: hidden;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;

        background: linear-gradient(90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0.9) 100%);

        z-index: 1;
        pointer-events: none;
    }

    .hero-title {
        font-size: 20px;
        font-weight: 900;
        /* color: #fff; */
        line-height: 1.15;
        margin-bottom: 24px;
    }
    .hero-subtitle {
        font-size: 1rem;
        color: var(--text-muted);
        margin-bottom: 17px;
        max-width: 550px;
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

    .hero-feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
        padding: 12px 15px;
    }

    .hero-feature-item img {
        flex-shrink: 0;
        margin-bottom: 5px !important;
        width: 35px;
        height: 35px;
    }

    .hero-feature-item span {
        font-size: 11px;
    }
}

.hero-feature-item {
    text-align: center;
    flex: 1;
}

.hero-feature-item i {
    font-size: 28px;
    color: var(--accent-orange);
    margin-bottom: 8px;
    display: block;
}

.hero-feature-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
}


/* =========================================
   MOBILE HERO FEATURES - BOX STYLE
========================================= */

.hero-features-mobile{
    display: none;
}


@media (max-width: 767px) {

    /* Hide desktop feature box */
    .hero-features-desktop {
        display: none !important;
    }

    /* Mobile feature container */
    .hero-features-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 15px;
        background: #f8f8f8;
        box-sizing: border-box;
    }

    /* Individual box */
    .hero-features-mobile .hero-feature-item {
        width: 100%;
        min-height: 110px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;

        padding: 18px 15px;
        gap: 8px;

        background: #ffffff;
        border: 1px solid #e1e1e1;
        border-radius: 12px;

        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

        box-sizing: border-box;
    }

    /* Icon */
    .hero-features-mobile .hero-feature-item img {
        width: 42px;
        height: 42px;
        object-fit: contain;
        display: block;
        margin: 0 !important;
    }

    /* Feature name */
    .hero-features-mobile .hero-feature-item span {
        display: block;
        width: 100%;

        font-size: 11px;
        font-weight: 700;
        line-height: 1.3;

        color: var(--primary-blue);
        text-transform: uppercase;
        text-align: center;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .hero-features-mobile {
        gap: 10px;
        padding: 12px;
    }

    .hero-features-mobile .hero-feature-item {
        min-height: 100px;
        padding: 15px 10px;
        border-radius: 10px;
    }

    .hero-features-mobile .hero-feature-item img {
        width: 36px;
        height: 36px;
    }

    .hero-features-mobile .hero-feature-item span {
        font-size: 10px;
    }
}


.btn-primary-custom {
    background-color: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background-color: #1a440e;
    color: #ffffff;
}

.hero-img-container {
    position: relative;
}

.hero-img-container img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(11, 34, 57, 0.2);
    width: 100%;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-tag {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-heading span {
    color: var(--accent-orange);
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.mission-vision-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.mission-vision-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-orange);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: #7dc3871f;
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.mission-vision-card h5 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.mission-vision-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Solutions Section */
/* .solutions-section {
    padding: 100px 0;
    position: relative;
    color: #ffffff;
}

.overlay {
    position: absolute;
    background: linear-gradient(90deg, rgba(11, 34, 57, 0.67) 100%, rgba(255, 255, 255, 0.02) 79%);
} */
.solutions-section {
    padding: 100px 0;
    position: relative;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(31, 45, 56, 0.67) 100%, rgba(255, 255, 255, 0.02) 79%);
    z-index: 1;
}

.solutions-section .container {
    position: relative;
    z-index: 2;
}

.solutions-section .section-tag {
    color: var(--accent-orange);
}

.solutions-section .section-heading {
    color: #ffffff;
}

.solution-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-card:hover img {
    filter: brightness(0) invert(1);
}


.solution-card-icon {
    width: 70px;
    height: 70px;
    background: #7dc3871f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--accent-orange);
    font-size: 32px;
    transition: all 0.3s;
}

.solution-card:hover .solution-card-icon {
    background: var(--accent-orange);
    color: #ffffff;
}

.solution-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Choose Us & Counters */
.why-choose-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.counter-box-wrapper {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    height: 100%;
}

.counter-box-wrapper:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.1);
}

.counter-icon {
    font-size: 36px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.counter-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.08);
}

.project-body {
    padding: 20px;
    background: #ffffff;
}

.project-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0;
}

/* Testimonial & Contact Form Section */
/* .testimonial-contact-section {
    padding: 3px 0;
    background: linear-gradient(90deg, var(--primary-blue) 50%, var(--bg-light) 50%);
}

@media (max-width: 991px) {
    .testimonial-contact-section {
        background: var(--primary-blue);
    }
}

.testimonial-box {
    color: #ffffff;
    padding-right: 40px;
}

.testimonial-box .quote-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.testimonial-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #e2e8f0;
}

.testimonial-client {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1rem;
}

.contact-form-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-form-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-form-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
} */

/* =========================================
   TESTIMONIAL + CONTACT SECTION
========================================= */

.testimonial-contact-section {
    position: relative;
    padding: 35px 0;
    background: #f5f6f8;
    overflow: hidden;
}

/* Blue left side */
.testimonial-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background: var(--primary-blue);
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    z-index: 0;
}

.testimonial-contact-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-contact-section .row {
    min-height: 180px;
}


/* =========================================
   TESTIMONIAL
========================================= */

.testimonial-box {
    color: #ffffff;
    padding: 5px 70px 5px 0;
}

.testimonial-box .section-tag {
    display: block;
    margin-bottom: 8px;
}

.testimonial-box .quote-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 5px;
    line-height: 1;
}

.testimonial-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e2e8f0;
}

.testimonial-client {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1rem;
}


/* Dots */

.testimonial-box .badge {
    width: 7px;
    height: 7px;
    padding: 0 !important;
}

.testimonial-box .d-flex {
    margin-top: 15px !important;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {
    background: transparent;
    border-radius: 0;
    padding: 5px 0 5px 15px;
    box-shadow: none;
}

.contact-form-box .section-tag {
    display: block;
    margin-bottom: 5px;
}

.contact-form-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-form-box p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}


/* =========================================
   FORM
========================================= */

.contact-form-box form {
    margin: 0;
}

.contact-form-box .row {
    min-height: auto;
}

.contact-form-box .mb-3 {
    margin-bottom: 8px !important;
}

.contact-form-box .mb-4 {
    margin-bottom: 8px !important;
}

.contact-form-box .input-group {
    margin: 0;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    padding: 8px 10px;
    border-radius: 3px;
    border: 1px solid #bfc3c8;
    font-size: 0.95rem;
    margin-bottom: 0;
    height: 34px;
}

.contact-form-box textarea.form-control {
    height: 70px !important;
    min-height: 70px !important;
    resize: none;
    padding: 8px 10px;
    line-height: 1.4;
}

.contact-form-box textarea+.input-group-text {
    height: 70px !important;
    min-height: 70px !important;
    padding: 8px 9px !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contact-form-box textarea+.input-group-text i {
    margin-top: 2px;
}

.contact-form-box .input-group .form-control {
    border-radius: 3px 0 0 3px;
}

.contact-form-box .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 2px rgba(242, 101, 34, 0.12);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-form-box .btn-primary-custom {
    width: 100%;
    border: 0;
    border-radius: 3px;
    padding: 9px 15px;
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-form-box .btn-primary-custom:hover {
    background: #1a440e;
    transform: translateY(-1px);
}


/* =========================================
   DESKTOP FORM ALIGNMENT
========================================= */

@media (min-width: 992px) {

    .testimonial-contact-section .col-lg-6:first-child {
        width: 44%;
    }

    .testimonial-contact-section .col-lg-6:last-child {
        width: 56%;
    }

}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 991px) {

    .testimonial-contact-section {
        background: var(--primary-blue);
        padding: 45px 0;
    }

    .testimonial-contact-section::before {
        display: none;
    }

    .testimonial-box {
        padding: 0 0 30px;
    }

    .contact-form-box {
        background: #ffffff;
        padding: 25px;
        border-radius: 8px;
    }

}

@media (max-width: 575px) {

    .contact-form-box {
        padding: 20px;
    }

    .testimonial-box p {
        font-size: 1rem;
    }

}

.testimonial-carousel .testimonial-item {
    padding-right: 50px;
}

.testimonial-carousel .owl-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dot {
    width: 8px;
    height: 8px;
    padding: 0 !important;
    border: 0;
    border-radius: 50%;
    background: #777 !important;
}

.testimonial-carousel .owl-dot.active {
    background: var(--accent-orange) !important;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.industry-item {
    padding: 20px 8px;
    transition: all 0.3s;
}

.industry-item:hover {
    border-color: var(--accent-orange);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.industry-item i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.industry-item:hover img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(45%) saturate(750%) hue-rotate(60deg) brightness(88%) contrast(88%);
}

.industry-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.industry-item {
    padding: 15px 8px;
    min-height: 70px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-right: 1px solid #e5e5e5;

    transition: all 0.3s;
}

.industries-section .row>div:last-child .industry-item {
    border-right: none;
}

.industry-item i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s;
}

.industry-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 80px 0 30px 0;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer p {
    color: #b0c4de;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #b0c4de;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--accent-orange);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 60px;
    font-size: 0.9rem;
    color: #b0c4de;
}

.footer-bottom a {
    color: #b0c4de;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-orange);
}


/* About-Us Page */

/* Page Header Banner */
.page-header {
    /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%); */
    position: relative;
    color: #ffffff !important;
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.page-header h1 span {
    color: var(--accent-orange);
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: #b0c4de;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--accent-orange);
}

/* Common Section Styling */
.section-tag {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* 1. Company Introduction */
.intro-section {
    padding: 100px 0;
    background: #fff;
}

.intro-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 2. Our Story */
.story-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.story-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 3. What We Do */
.what-we-do-section {
    padding: 100px 0;
    background: #fff;
}

.service-box-about {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
    height: 100%;
}

.service-box-about:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-box-about i {
    font-size: 40px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: block;
}

.service-box-about h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-box-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 4. Why Choose Us */
.why-section {
    padding: 100px 0;
    /* background: var(--primary-blue); */
    color: #fff;
    position: relative;
    z-index: 4;
}

.why-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(31 45 56 / 90%) 100%, rgba(255, 255, 255, 0.02) 79%);
    z-index: -7;
}

.why-section .section-heading {
    color: #fff;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #7dc3871f;
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.why-content h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.why-content p {
    color: #b0c4de;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 5. Mission & Vision */
.mission-vision-section {
    padding: 100px 0;
    background: #fff;
}

.mv-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 50px 40px;
    border-left: 6px solid var(--accent-orange);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.mv-card h3 {
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 6. Core Values */
.values-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.value-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 101, 34, 0.1);
}

.value-icon {
    font-size: 40px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.value-card h5 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 7. Achievements / Numbers */
.counters-section {
    padding: 90px 0;
    background: var(--primary-blue);
    color: #fff;
    text-align: center;
}

.counter-box {
    padding: 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.counter-label1 {
    font-size: 1rem;
    font-weight: 600;
    color: #b0c4de;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 8. Quality & Certifications */
.quality-section {
    padding: 100px 0;
    background: #fff;
}

.quality-badge-box {
    background: #fff;
    border: 2px dashed #dcdcdc;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.quality-badge-box i {
    font-size: 50px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

/* 9. Team / Founder */
.team-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    height: 420px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-body {
    padding: 25px;
}

.team-body h5 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-body span {
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.team-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 10. Industries We Serve */
.industries-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.industry-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 25px 15px;
    transition: all 0.3s;
    height: 100%;
}

.industry-card:hover {
    border-color: var(--accent-orange);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.industry-card i {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
    transition: color 0.3s;
}

.industry-card:hover img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(45%) saturate(750%) hue-rotate(60deg) brightness(88%) contrast(88%);
}

.industry-card h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 1rem;
}

/* 11. Testimonials (Auto Slider) */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.testimonial-item-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
    text-align: left;
}

.testimonial-item-card .quote-icon {
    font-size: 40px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.testimonial-item-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info h5 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2px;
    font-size: 1rem;
}

.client-info span {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
}

/* 12. Awards / Milestones */
.milestones-section {
    padding: 100px 0;
    background: #fff;
}

.milestone-item {
    border-left: 3px solid var(--accent-orange);
    padding-left: 25px;
    margin-bottom: 40px;
    position: relative;
}

.milestone-year {
    font-weight: 800;
    color: var(--accent-orange);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.milestone-title {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.milestone-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 13. FAQ (Auto Collapse) */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.accordion-button {
    font-weight: 700;
    color: var(--primary-blue);
    background-color: #fff;
    padding: 20px;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: #fff;
    color: var(--text-muted);
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 14. CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: #fff;
    padding: 40px 0;
    /* text-align: center; */
}

.cta-section h2 {
    font-weight: 900;
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta-section p {
    color: #b0c4de;
    font-size: 14px;
    /* max-width: 650px; */
    margin: 0 auto 35px auto;
}

.btn-cta {
    background-color: var(--accent-orange);
    color: #fff;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: #1a440e;
    color: #fff;
}


/* Services Page */
/* Common Section Styling */
.section-tag {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Services Psychology Section */
.psychology-banner {
    background: #7dc3871f;
    border-left: 5px solid var(--accent-orange);
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.psychology-banner h4 {
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.psychology-banner p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Services Grid Section */
.services-main-section {
    padding: 80px 0;
    background: #fff;
}

.service-detail-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(11, 34, 57, 0.1);
}

.service-detail-card:hover img {
    filter: brightness(0) invert(1);
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: #7dc3871f;
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-detail-card:hover .service-icon-box {
    background: var(--accent-orange);
    color: #fff;
}

.service-detail-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.btn-service-learn {
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-service-learn:hover {
    background-color: var(--accent-orange);
    color: #fff;
}

/* Process Workflow Section */
.workflow-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.workflow-step-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
}

.workflow-step-card:hover {

    box-shadow: 0 20px 40px rgba(11, 34, 57, 0.1);
}

.workflow-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(11, 34, 57, 0.05);
}

.workflow-icon {
    font-size: 40px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.workflow-step-card h5 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.workflow-step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* FAQ Conversion Section */
.faq-services-section {
    padding: 100px 0;
    background: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeaea;
}

.accordion-button {
    font-weight: 700;
    color: var(--primary-blue);
    background-color: #fcfcfc;
    padding: 20px;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: #fff;
    color: var(--text-muted);
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why-Us page */
/* Core Why Us Section */
.why-features-section {
    padding: 100px 0;
    background: #fff;
}

.why-feature-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
}

.why-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(242, 101, 34, 0.1);
}

.why-feature-icon {
    width: 70px;
    height: 70px;
    background: #7dc3871f;
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.why-feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.comparison-table-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.table th {
    background: var(--primary-blue);
    color: #fff;
    padding: 20px;
    font-weight: 700;
}

.table td {
    padding: 20px;
    vertical-align: middle;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 767px) {

    .comparison-section {
        padding: 60px 0;
    }

    .comparison-section .text-center {
        margin-bottom: 30px !important;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        border-radius: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table-wrapper .table {
        min-width: 700px;
        margin-bottom: 0;
    }

    .comparison-table-wrapper .table th {
        padding: 14px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .comparison-table-wrapper .table td {
        padding: 14px 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    .comparison-table-wrapper .table td strong {
        font-size: 13px;
    }

    .comparison-table-wrapper .table td i {
        font-size: 16px !important;
        vertical-align: middle;
    }

    /* Hide scrollbar but keep scrolling */
    .comparison-table-wrapper::-webkit-scrollbar {
        height: 4px;
    }

    .comparison-table-wrapper::-webkit-scrollbar-thumb {
        background: var(--accent-orange);
        border-radius: 10px;
    }

    .comparison-table-wrapper::-webkit-scrollbar-track {
        background: #eee;
    }
}

@media (max-width: 480px) {

    .comparison-section {
        padding: 50px 0;
    }

    .comparison-table-wrapper .table {
        min-width: 650px;
    }

    .comparison-table-wrapper .table th,
    .comparison-table-wrapper .table td {
        padding: 12px 10px;
        font-size: 12px;
    }
}

/* blog page */

/* Visitor Psychology Trust Banner */
.psychology-trust-bar {
    background: rgba(11, 34, 57, 0.03);
    border-left: 5px solid var(--accent-orange);
    padding: 24px 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.psychology-trust-bar h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.psychology-trust-bar p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* Blog Grid Section */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 34, 57, 0.12);
    border-color: var(--accent-orange);
}

.blog-img-holder {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-holder img {
    transform: scale(1.08);
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.btn-read-more:hover {
    color: var(--accent-orange);
}

/* Sidebar & Newsletter */
.sidebar-widget {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eaeaea;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h6 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
    line-height: 1.3;
}

.recent-post-info a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.recent-post-info a:hover {
    color: var(--accent-orange);
}

.recent-post-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* Blog Details Page */
/* Blog Post Content Styling */
.blog-single-section {
    padding: 80px 0;
    background: #fff;
}

.blog-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
    max-height: 500px;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-body h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-top: 35px;
    margin-bottom: 20px;
}

.blog-content-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 25px;
    margin-bottom: 15px;
}

.blog-content-body p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-content-body ul {
    margin-bottom: 25px;
    color: var(--text-muted);
}

.blog-content-body ul li {
    margin-bottom: 10px;
    font-size: 1.02rem;
    line-height: 1.6;
}

/* Highlight Callout Box */
.expert-highlight-box {
    background: #7dc3871f;
    border-left: 5px solid var(--accent-orange);
    padding: 24px 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.expert-highlight-box h5 {
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.expert-highlight-box p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    margin: 35px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeaea;
}

.comparison-table th {
    background: var(--primary-blue);
    color: #fff;
    padding: 16px;
    font-weight: 700;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #eaeaea;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-light);
}

@media (max-width: 767px) {

    .comparison-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 25px 0;
        border-radius: 8px;
    }

    .comparison-table table {
        min-width: 700px;
    }

    .comparison-table th {
        padding: 13px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .comparison-table td {
        padding: 13px 12px;
        font-size: 12px;
        line-height: 1.5;
        min-width: 180px;
    }

    .comparison-table td:first-child {
        min-width: 170px;
    }

    .comparison-table th:first-child {
        min-width: 170px;
    }

    /* Mobile scrollbar */
    .comparison-table::-webkit-scrollbar {
        height: 4px;
    }

    .comparison-table::-webkit-scrollbar-track {
        background: #eeeeee;
    }

    .comparison-table::-webkit-scrollbar-thumb {
        background: var(--accent-orange);
        border-radius: 10px;
    }
}

@media (max-width: 480px) {

    .comparison-table {
        margin: 20px 0;
    }

    .comparison-table table {
        min-width: 650px;
    }

    .comparison-table th {
        padding: 11px 10px;
        font-size: 12px;
    }

    .comparison-table td {
        padding: 11px 10px;
        font-size: 11.5px;
    }
}

/* Author Box */
.author-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
    border: 1px solid #eaeaea;
}

.author-avatar {
    width: 102px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 88%;
    height: 69%;
    object-fit: cover;
}

.author-info h5 {
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eaeaea;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h6 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
    line-height: 1.3;
}

.recent-post-info a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.recent-post-info a:hover {
    color: var(--accent-orange);
}

.recent-post-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Contact Us */

/* Contact Section */
.contact-main-section {
    padding: 100px 0;
    background: #fff;
}

.contact-info-card {
    background: var(--bg-light);
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: #7dc3871f;
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-card a:hover {
    color: var(--accent-orange);
}

/* Form Styling */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

/* Input Group */
.input-group {
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
}

/* Inputs */
.input-group .form-control,
.input-group .form-select {
    padding: 14px 18px;
    border-radius: 8px 0 0 8px;
    border: 1px solid #dcdcdc;
    font-size: 0.95rem;
    margin-bottom: 0 !important;
    height: 48px;
}

/* Icon box */
.input-group .input-group-text {
    width: 38px;
    min-width: 38px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-left: 0;
    border-radius: 0 8px 8px 0;
}

/* Icon */
.input-group .input-group-text i {
    font-size: 14px;
    line-height: 1;
    color: #687789;
}

/* Select */
.input-group .form-select {
    padding-right: 15px;
}

/* Textarea */
.contact-form-wrapper textarea.form-control {
    height: auto;
    min-height: 126px;
    border-radius: 8px 0 0 8px;
}

/* Textarea icon */
.input-group textarea+.input-group-text {
    height: auto;
    min-height: 126px;
    align-items: flex-start;
    padding-top: 16px;
}

/* Focus */
.input-group .form-control:focus,
.input-group .form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
    z-index: 2;
}

/* Submit Button */
.btn-submit-form {
    background-color: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-submit-form:hover {
    background-color: #1a440e;
    color: #ffffff;
}

/* Map Section */
.map-section {
    padding: 0 0 100px 0;
    background: #fff;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================
   SERVICE DETAILS
========================================= */

.service-details-section {
    padding: 70px 0;
    background: #fff;
}

.service-details-content {
    padding-right: 25px;
}

.service-details-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details-content h1 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
    color: #1f2d38;
    margin-bottom: 20px;
}

.service-details-content h2 {
    position: relative;
    font-size: 23px;
    font-weight: 750;
    color: #1f2d38;
    margin-top: 35px;
    margin-bottom: 15px;
}

.service-details-content h2::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #3a8125;
    margin-top: 10px;
}

.service-details-content p {
    color: #68757d;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 17px;
}


/* =========================================
   BENEFITS
========================================= */

.service-benefits {
    list-style: none;
    padding: 5px 0;
    margin: 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #59666e;
    font-size: 13px;
    padding: 8px 0;
}

.service-benefits li i {
    color: #3a8125;
    font-size: 12px;
}


/* =========================================
   OTHER SERVICES
========================================= */

.other-services-box {
    background: #f6f8f9;
    border: 1px solid #e5e9eb;
    border-radius: 6px;
    padding: 25px;
    position: sticky;
    top: 100px;
}

.other-services-title {
    border-bottom: 1px solid #dfe4e6;
    padding-bottom: 18px;
    margin-bottom: 5px;
}

.other-services-title span {
    display: block;
    color: #3a8125;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.other-services-title h3 {
    color: #1f2d38;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}


/* Service links */

.other-service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #1f2d38;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 16px 5px;
    border-bottom: 1px solid #e1e6e8;
    transition: all .3s ease;
}

.other-service-list a:last-child {
    border-bottom: 0;
}

.other-service-list a span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.other-service-list a span i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf5e7;
    color: #3a8125;
    border-radius: 50%;
    font-size: 13px;
    flex-shrink: 0;
}

.other-service-list a > i {
    color: #9aa5ab;
    font-size: 11px;
    transition: .3s ease;
}

.other-service-list a:hover {
    color: #3a8125;
    padding-left: 10px;
}

.other-service-list a:hover > i {
    color: #3a8125;
    transform: translateX(3px);
}


/* =========================================
   CONTACT BOX
========================================= */

.service-contact-box {
    margin-top: 25px;
    padding: 30px 25px;
    background: #1f2d38;
    border-radius: 6px;
    text-align: center;
}

.service-contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3a8125;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
}

.service-contact-box h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-contact-box p {
    color: #b9c3c8;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-contact-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3a8125;
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    transition: .3s ease;
}

.service-contact-box a:hover {
    background: #4b9a31;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .service-details-section {
        padding: 55px 0;
    }

    .service-details-content {
        padding-right: 0;
    }

    .service-details-image {
        height: 380px;
    }

    .other-services-box {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {

    .service-details-section {
        padding: 40px 0;
    }

    .service-details-image {
        height: 260px;
        margin-bottom: 25px;
    }

    .service-details-content h1 {
        font-size: 27px;
    }

    .service-details-content h2 {
        font-size: 21px;
    }

    .service-details-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .other-services-box {
        padding: 20px;
    }
}
