:root {
    --primary-color: #43664f;
    --secondary-color: #f5f3f0;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}
section {
    padding: 50px 0px;
}
h2.text-center {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 0px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #475e4d;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 1rem;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
a.navbar-brand img {
    width: 160px;
}
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #365340;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 102, 79, 0.3);
}
button.btn-primary-custom a {
    display: block;
}
.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/******************************hero section************************/
/* Video Background Styling */
section.hero-section{
    padding: 0px; 
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* cover entire hero section */
    z-index: 0;        /* behind all content */
    pointer-events: none; /* allow clicks through video */
}
.hero-section {
    position: relative;
    min-height: 105vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-heading {
    font-size: 60px;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: 1.5rem;
    color: #40644d;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    text-transform: capitalize;
    
}

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

.hero-description {
    font-size: 25px;
    margin-bottom: 2.5rem;
    color: #40644d;
    max-width: 80%;
    margin: 15px auto;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    margin-bottom: 3rem;
}

.btn-primary-custom, .custom-buttons button {
    background: #b18904;
    color: #fff; 
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s 
ease;
}

.btn-primary-custom:hover {
    background: #f5f3f0;
    transform: translateY(-2px);
    color: #40644d;
    box-shadow: rgb(0 0 0) 0px 6px 0px;
}
.help-section .custom-buttons button, section.why-offshore button.btn-primary-custom, section#why-choose button.btn-primary-custom, section.process-section button.btn-primary-custom, section#approach button.btn-primary-custom, section.inner-sec.blog button.btn-primary-custom{
    background-color: #b18904;
    color: #fff;
	border:1px solid #b18904;
}
section.why-offshore button.btn-primary-custom a, section#why-choose button.btn-primary-custom a, section.process-section button.btn-primary-custom a, section#approach button.btn-primary-custom a, section.inner-sec.blog button.btn-primary-custom a{
	color: #fff;
}
.help-section .custom-buttons button:hover, section.why-offshore button.btn-primary-custom:hover, section#why-choose button.btn-primary-custom:hover, section.process-section button.btn-primary-custom:hover, section#approach button.btn-primary-custom:hover, section.inner-sec.blog button.btn-primary-custom:hover, .btn-submit:hover{
    background-color: #fff;
    color: #40644d;
}
.help-section button.btn-primary-custom:hover a {
    color: #43664f;
}
section.why-offshore button.btn-primary-custom:hover a, section#why-choose button.btn-primary-custom:hover a, section.process-section button.btn-primary-custom:hover a, section#approach button.btn-primary-custom:hover a, section.inner-sec.blog button.btn-primary-custom:hover a, .btn-submit:hover{
	color: #1e4d38;
	
}
.btn-submit:hover{
	border:1px solid #b18904;	
}
/* Floating Testimonial Cards */
.testimonial-cards {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #2f4b39db;
    border-radius: 50px;
    width: 50%;
    margin: 0 auto 30px;
}

.testimonial-card {
    position: relative;
    padding: 10px;
    border-radius: 16px;
    opacity: 0;
    animation: fadeInCard 1s 
ease-out forwards;
    text-align: center;
}
/* Left Top Card - "IMPROVEMENT" */
.testimonial-card.card-left-top {
    animation-delay: 0.8s;
}

/* Left Bottom Card - "10x" */
.testimonial-card.card-left-bottom {
    animation-delay: 1.2s;
}

/* Right Top Card - "AWESOME" */
.testimonial-card.card-right-top {
    animation-delay: 1s;
}

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

.card-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #d946ef;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.card-text {
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}
.card-metric {
    font-size: 24px !important;
    font-weight: 700;
    color: #fff;
    margin: 0px;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    border-right: 1px solid #fff;
}
.testimonial-card:last-child{
    border-right: none;
}
.card-subtext {
    font-size: 0.85rem;
    color: #fff;
    margin: 0;
}
.logo-container {
    display: flex;
    gap: 20px;
}
.logo-container img {
    width: 120px;
    border-radius: 100%;
    height: 120px;
    object-fit: contain;
    text-align: center;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
}
.logo-section {
    z-index: 9;
}



.industry-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.industry-card.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #365340 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.industry-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.industry-card.active .industry-icon {
    color: var(--white);
}

.industry-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.industry-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.industry-card.active p {
    color: rgba(255, 255, 255, 0.9);
}
.indus-sec {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 30px;
}

/* Problems Section */
.problems-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5340 100%);
    padding: 50px 0;
    color: var(--white);
}

.problems-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.problems-content .lead-text {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.problem-item {
    display: flex;
    align-items: start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.problem-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.problem-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.problem-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0;
}

.problems-image {
    position: relative;
}

.problems-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.problem-box {
    display: flex;
    gap: 20px;
    max-width: 1500px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Help Section */
.help-section {
    padding: 80px 0;
position: relative;
    z-index: 1;
}

.help-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.help-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.help-image {
    position: relative;
}

.help-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Process Section */
.process-section {
    background-color: #fff;
    color: #2d5340;
    position: relative;
    z-index: 1;
}

.process-section h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 80px;
    font-size: 2.5rem;
}

/* Wave line behind circles */
.process-line {
    position: absolute;
    top: 80px;
    left: 49%;
    transform: translateX(-50%);
    width: 77%;
    z-index: 1;
}

.process-line svg {
    width: 100%;
    height: 220px;
}

.process-line path {
    fill: none;
    stroke: #2d5340;
    stroke-width: 2;
    stroke-dasharray: 6 8;
    opacity: 0.4;
}

/* Steps Grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-step {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Circle Design */
.process-circle {
    width: 100px;
    height: 100px;
    background-color: #2d5340;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s ease;
    position: relative;
    overflow: visible;
}

/* Dotted border animation */
.process-circle::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dotted #2d5340;
    opacity: 0;
    transform: rotate(0deg);
    transition: all 0.5s ease;
}

/* Hover entire step triggers rotation */
.process-step:hover .process-circle {
    background-color: #fff;
    color: #2d5340;
    transform: scale(1.1) rotate(360deg);
}

.process-step:hover .process-circle::before {
    opacity: 1;
    animation: rotateBorder 2s linear infinite;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Text styling */
.process-step h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.process-step:nth-child(3) {
    margin-top: -70px;
}
.process-step p {
    max-width: 250px;
    margin: 0 auto;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
       .process-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }
}
/* FAQ Section */
.faq-section {
    background-color: #35513f;
    position: relative;
    z-index: 1;
}
section.faq-section::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    background: #f5f3f0;
    height: 100%;
    clear: both;
    content: "";
    z-index: -1;
}
.accordion-button {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.8;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Contact Form */
.contact-section {
    padding: 0px;
    background-color: var(--secondary-color);
}

.contact-form {
    padding: 0px 30px;
}
.contact-form form{
    margin-top: 30px;
}
.form-control {
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(67, 102, 79, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.site-footer {
    background: linear-gradient(180deg, #184033 0%, #133927 60%);
    color: #dbeadd;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    padding: 30px 0px;
  }

  .footer-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  }

  .footer-heading {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
  }
.lead-sm {
    font-size: 20px;
    width: 45%;
    margin: 15px auto;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
    display: flex
;
    gap: 30px;
    justify-content: center;
}
  .social-btn {
    display: inline-grid;
    place-items:center;
    width:38px;
    height:38px;
    border-radius:50%;
    background: rgba(255,255,255,0.04);
    color: #e9f7ee;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
  }
  .social-btn:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); }

  .footer-list a {
    display: inline-block;
    color: #d2e7d6;
    text-decoration: none;
    padding: 4px 0;
    transition: color .12s ease, transform .12s ease;
  }
  .footer-list a:hover { color: #ffffff; transform: translateX(4px); }

  .footer-divider {
    border-color: rgba(255,255,255,0.04);
  }
.text-decoration-underline {
    text-decoration: underline !important;
    color: #fff;
}
  /* small screen tweaks */
  @media (max-width: 767.98px) {
    .footer-logo { width: 100px; }
    .lead-sm { font-size: 0.9rem; }
  }

  /* accessibility: focus outline for keyboard users */
  .social-btn:focus, .footer-list a:focus, .btn:focus {
    outline: 3px solid rgba(255,255,255,0.12);
    outline-offset: 2px;
  }
img.footer-logo {
    filter: invert(1);
    margin-bottom: 10px;
    width: 13%;
}
.top-foot {
    text-align: center;
}
/**********************service section****************************/
.service-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.service-title {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}
.service-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}
.even-row {
    background-color: #f5f3f0;
    padding: 30px;
    border-left: 5px solid #27ae60;
    border-radius: 30px;
    margin-top: 50px;
}
.odd-row {
    background-color: #f5f3f0;
    padding: 30px;
    border-left: 5px solid #3498db;
     border-radius: 30px;
    margin-top: 50px;
}

/**************************video***************************/
.blue-shape-left video {
    width: 350px;
    position: absolute;
    left: 0;
    top: -50px;
    z-index: -1;
}


section.problems-section .hero-buttons {
    margin-bottom: 0px;
}


/**********************************inner offshore***********************/
.problem-box.problem-box-inner {
    display: flex;
    gap: 20px;
     max-width: 100%;
    flex-wrap: unset;
    justify-content: center;
}
.case-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    margin: 20px 0px;
    border-radius: 10px;
}
.case-box h5 a {
    color: #fff;
    text-decoration: none;
    line-height: 27px;
    cursor: pointer;
}
.indus-sec.inner-indus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
section.inner-sec {
    position: relative;
}
.inner-banner h1 {
    font-weight: 700;
    font-size: 61px;
    color: #fff;
    width: 80%;
    margin: 0 auto;
}
.benefit-box {
  background: #fff;
  transition: all 0.3s ease;
}
.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.icon-box {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.inner-banner h5 {
    padding-top: 20px;
}
.banner-img.text-center {
    position: relative;
    margin: 50px auto 0px;
}
section.inner-sec::before{
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: #1e4d38;
    clear: both;
    content: '';
    z-index: -1;
}
.banner-img.text-center img {
    height: 600px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}
.inner-sec .hero-video {
    position: absolute;
    top: -106px;
    left: -10%;
    width: 59%;
    height: 73%;
    object-fit: contain;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.inner-sec .btn-primary-custom,.inner-sec .custom-buttons button {
    background: #fff;
    color: #1e4d38;
}


  /* ===== Feature Cards ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

       .feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 21px;
}

        /* ===== Icon Cards ===== */
        .icon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

       .icon-card {
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s 
ease;
    border-top: 4px solid transparent;
}

        .icon-card:hover {
            border-top-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .icon-card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .icon-card h4 {
            color: var(--primary);
            font-size: 15px;
            font-weight: 600;
        }


.features-grid.service-2 .feature-card {
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s  ease;
    text-align: center;
}
.features-grid.service-2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}


/************************blog********************/
section.inner-sec.blog::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #1e4d38;
    clear: both;
    content: '';
    z-index: -1;
}
        /* ===== Blog Layout ===== */
        .blog-content {
            padding: 60px 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        /* ===== Featured Post ===== */
        .featured-post {
            grid-column: 1 / -1;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            margin-bottom: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .featured-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .featured-image {
            position: relative;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .featured-post:hover .featured-image img {
            transform: scale(1.1);
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-gradient);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .featured-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .post-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .featured-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .featured-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s;
        }

        .read-more:hover {
            gap: 1rem;
        }

        /* ===== Blog Cards ===== */
        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-card-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }

        .category-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .blog-card-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card-content h3 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.3rem;
            line-height: 1.4;
        }

        .blog-card-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .author-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--accent-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .post-date {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .read-time {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* ===== Sidebar ===== */
        .blog-layout {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }

        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .sidebar-widget {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .popular-post {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .popular-post-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .popular-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .popular-post-content h4 {
            font-size: 0.95rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .popular-post-content span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            padding: 8px 16px;
            background: var(--light);
            color: var(--text-dark);
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s;
        }

      .tag:hover {
    background: var(--accent);
    color: #294c3b;
}

        .newsletter-form input {
            width: 100%;
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .newsletter-form button {
            width: 100%;
            padding: 12px;
            background: var(--accent-gradient);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(63, 167, 150, 0.3);
        }

        /* ===== Pagination ===== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 4rem;
        }

        .page-btn {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            color: var(--text-dark);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .page-btn:hover,
        .page-btn.active {
            background: var(--accent-gradient);
            color: #000;
            transform: translateY(-2px);
        }
 .audit-feature {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .audit-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .audit-feature i {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .share-buttons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin: 5px;
            color: white;
            transition: transform 0.3s ease;
                text-decoration: none;
        }

        .share-buttons a:hover {
            transform: scale(1.1);
        }

        .share-facebook { background: #1877f2; }
        .share-twitter { background: #1da1f2; }
        .share-linkedin { background: #0a66c2; }
        .share-email { background: #ea4335; }


/************************contact*************************/
 .contact-section {
            padding: 80px 0;
        }

        .contact-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        
        }

        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-control.is-invalid {
            border-color: #dc3545;
        }

        .form-control.is-valid {
            border-color: var(--success-color);
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .btn-submit {
            background: #b18904;
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-submit:hover {
                transform: translateY(-2px);
    box-shadow: rgb(0 0 0) 0px 6px 0px;
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .contact-info-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: white;
        }

        .contact-info-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .contact-info-card p {
            color: var(--text-light);
            margin-bottom: 0;
            font-size: 15px;
        }
 .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
        }

        .social-facebook { background: #1877f2; }
        .social-twitter { background: #1da1f2; }
        .social-linkedin { background: #0a66c2; }
        .social-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.contact-info-card.text-center a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
}
a.page-numbers {
    color: green;
}
html {
     margin: 0px !important;
}
ul.dropdown-menu li {
    line-height: 50px;
    border-bottom: 1px solid #fff;
    padding-left: 14px;
}
ul.dropdown-menu li:last-child{
	border-bottom: none;
}
ul.dropdown-menu {
    background: #1e4d38;
    width: 330px;
}
ul.dropdown-menu2 li{
    line-height: 50px;
    border-bottom: 1px solid #f5f5f5;
    list-style: none;
padding: 0px 0px 0px 20px;
}
ul.navbar-nav li a{
    color: #fff;
    text-decoration: none;
	display: block;
}
ul.dropdown-menu2 li:hover{
    background-color: #fff;

}
ul.dropdown-menu2 li:hover a{
    color: #2f4b39;
}
i.fal.fa-angle-down {
    font-size: 20px !important;
    font-weight: 500;
}
.fa-angle-down:before {
    content: "\f107";
    top: 28px;
    position: absolute;
}
.contact-info-card.text-center{
    color: #000;
}
.contact-info-card.text-center .social-links a{
    color: #fff;
}
a.nav-link.insta-btn {
    background-color:#b18904;
    color: white;
    padding: 12px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    width: 150px;
    text-align: center;
	    transition: all 0.3s 
ease;
	border: 1px solid #b18904;
}
a.nav-link.insta-btn:hover {
    transform: translateY(-2px);
    color: #2d5340;
    box-shadow: rgb(0 0 0) 0px 6px 0px;
    background: #fff;
}
section.thank-you h1 {
    font-size: 65px;
}
section.thank-you {
    padding: 80px 0px;
    text-align: center;
}
button.btn-primary-custom a{
    color: #fff;
}

.popular-post-content h4 a {
    color: #153c2d;
}
.err-bg{
    background-color: #dfedfc;
    
}
.err-bg button.btn-primary-custom a{
    color: #fff;
}
button.btn-primary-custom a {
    text-decoration: none;
}
.btn-primary-custom:hover a{
     color: #2f4b39;
}
button.btn-primary-custom.btn2 a{
    color:  #2f4b39;
}
button.btn-primary-custom a {
    color: #fff;
	padding: 1rem 2.5rem;
}
.help-section button.btn-primary-custom a {
    color: #fff;
}









@media (max-width: 575.98px) {
	ul.navbar-nav {
    text-align: left;
    justify-content: flex-start;
    align-items: self-start !important;
    padding-top: 20px;
}
	.hero-content {
    padding-top: 10px;
}
	    a.nav-link.insta-btn {
        margin: 10px 0px;
    }
	.navbar-nav .nav-link{
		font-size: 18px;
	}
.indus-sec {
    grid-template-columns: 100%;
}
    .blue-shape-left video {
display: none;
}
        .problems-section, .industries-section, .help-section, .process-section, .testimonials-section, .faq-section, .contact-section {
        padding: 30px 0;
    }
    .process-section h2 {
    margin-bottom: 20px;
}
    .process-step:nth-child(3) {
    margin-top: 0;
}
    section.faq-section::before {
        top: 46%;
        width: 100%;
        height: 55%;
    }
    img.footer-logo {
    width: 50%;
}
    .lead-sm {
    width: 100%;
}
    .site-footer .col-6 {
    flex: 0 0 auto;
    width: 100%;
}
    .list-unstyled {
    gap: 10px;
    flex-direction: column;
    text-align: center;
}
    .logo-container {
    gap: 5px;
}
    .logo-container img {
    width: 80px;
    height: 80px;
}
    .hero-content .btn-primary-custom, .btn-outline-custom {
        width: 80%;
    }
    .testimonial-cards {
    width: 80%;
    flex-direction: column;
		gap: 15px;
		padding-bottom: 20px;
}
	.logo-section{
		margin-bottom: 20px;
	}
        .testimonial-card {
        border-right: none;
        justify-content: center;
        padding: 5px;
			gap: 0px;
        flex-direction: column;
    }
        .hero-content h1 {
        font-size: 30px;
        width: 100%;
        line-height: 35px;
    }
        .hero-content p {
        font-size: 20px;
        font-weight: 600;
        line-height: 25px;
    }
    h2{
        font-size: 30px;
    }
    .inner-banner h1 {
    font-size: 35px;
    width: 100%;
    }
    .inner-sec .hero-video{
        display: none;
    }
    .inner-banner h5 {
    padding-top: 20px;
    font-size: 17px;
    line-height: 22px;
}
    section {
    padding: 30px 0px;
}
    .problem-box.problem-box-inner {
    flex-direction: column;
}
    .indus-sec.inner-indus {
    grid-template-columns: 100%;
}
    .features-grid.service-2 {
        grid-template-columns: 100%;
    gap: 2rem;
}
    body.wp-singular.page-template.page-template-in-depth-digital-audit section.faq-section::before {
        top: 31% !important;
        width: 100%;
        height: 69%;
    }
    .blog-layout {
    grid-template-columns: 100%;
}
    .featured-post{
        grid-template-columns: 100%;
    }
    .featured-content {
    padding: 20px;
}
.fa-angle-down:before {
    content: "\f107";
    top: 85px;
    position: absolute;
}
a.nav-link.insta-btn {
    margin-bottom: 20px;
}
		p.card-metric {
    font-size: 35px !important;
}
		.card-metric {
    font-size: 35px !important;
}
	.industry-icon {
    font-size: 50px;
}
	.help-content {
    text-align: center;
}
	.testimonial-card.card-left-bottom {
    padding-top: 15px;
}
}


@media (min-width: 576px) and (max-width: 767.98px) {
	.testimonial-card.card-left-bottom {
    padding-top: 15px;
}
	.help-content {
    text-align: center;
}
	ul.navbar-nav {
    text-align: left;
    justify-content: flex-start;
    align-items: self-start !important;
    padding-top: 20px;
}
	    a.nav-link.insta-btn {
        margin: 10px 0px;
    }
	.navbar-nav .nav-link{
		font-size: 18px;
	}
 .indus-sec {
    grid-template-columns: 100%;
}
    .blue-shape-left video {
display: none;
}
        .problems-section, .industries-section, .help-section, .process-section, .testimonials-section, .faq-section, .contact-section {
        padding: 30px 0;
    }
    .process-section h2 {
    margin-bottom: 20px;
}
    .process-step:nth-child(3) {
    margin-top: 0;
}
        section.faq-section::before {
        top: 41%;
        width: 100%;
        height: 60%;
    }
    img.footer-logo {
    width: 30%;
}
    .lead-sm {
    width: 100%;
}
    .site-footer .col-6 {
    flex: 0 0 auto;
    width: 100%;
}
    .list-unstyled {
    gap: 10px;
    flex-direction: column;
    text-align: center;
}
    .logo-container {
    gap: 5px;
}
    .logo-container img {
    width: 80px;
    height: 80px;
}
    .hero-content .btn-primary-custom, .btn-outline-custom {
        width: 50%;
    }
       .testimonial-cards {
        width: 45%;
        flex-direction: column;
    }
    .testimonial-card{
        border-right: none;
        justify-content: center;
        padding: 5px;
    }
          .hero-content h1 {
        font-size: 42px;
        width: 100%;
        line-height: 55px;
    }
        .hero-content p {
        font-size: 20px;
        font-weight: 600;
        line-height: 25px;
    }
    h2{
        font-size: 30px;
    }
    .inner-banner h1 {
    font-size: 35px;
    width: 100%;
    }
    .inner-sec .hero-video{
        display: none;
    }
    .inner-banner h5 {
    padding-top: 20px;
    font-size: 13px;
    line-height: 22px;
}
    section {
    padding: 30px 0px;
}
    .problem-box.problem-box-inner {
    flex-direction: column;
}
      .indus-sec.inner-indus {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid.service-2 {
        grid-template-columns: 100%;
    gap: 2rem;
}
    body.wp-singular.page-template.page-template-in-depth-digital-audit section.faq-section::before {
        top: 31% !important;
        width: 100%;
        height: 69%;
    }
     .blog-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-post{
        grid-template-columns: 100%;
    }
    .featured-content {
    padding: 20px;
}
.fa-angle-down:before {
    content: "\f107";
    top: 85px;
    position: absolute;
}
a.nav-link.insta-btn {
    margin-bottom: 20px;
}
    .help-content {
    text-align: center;
}
        .container, .container-sm {
         max-width: 100%;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.icon-card-icon img {
    width: 40%;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	ul.navbar-nav {
    text-align: left;
    justify-content: flex-start;
    align-items: self-start !important;
    padding-top: 20px;
}
	    a.nav-link.insta-btn {
        margin: 10px 0px;
    }
	.navbar-nav .nav-link{
		font-size: 18px;
	}
    .indus-sec {
        grid-template-columns: repeat(2, 1fr);
    }
    .blue-shape-left video {
display: none;
}
        .problems-section, .industries-section, .help-section, .process-section, .testimonials-section, .faq-section, .contact-section {
        padding: 30px 0;
    }
    .process-section h2 {
    margin-bottom: 20px;
}
    .process-step:nth-child(3) {
    margin-top: 0;
}
        section.faq-section::before {
        top: 42%;
        width: 100%;
        height: 60%;
    }
    img.footer-logo {
    width: 30%;
}
    .lead-sm {
    width: 100%;
}
    .site-footer .col-6 {
    flex: 0 0 auto;
    width: 100%;
}
    .list-unstyled {
    gap: 10px;
    flex-direction: row;
    text-align: center;
}
    .logo-container {
    gap: 5px;
}.top-foot {
    padding-top: 20px;
}
    .logo-container img {
    width: 80px;
    height: 80px;
}
    .hero-content .btn-primary-custom, .btn-outline-custom {
        width: 50%;
    }
       .testimonial-cards {
        width: 45%;
        flex-direction: column;
		   gap: 5px;
    }
    .testimonial-card{
        border-right: none;
        justify-content: center;
        padding: 5px;
    }
          .hero-content h1 {
        font-size: 42px;
        width: 100%;
        line-height: 55px;
    }
        .hero-content p {
        font-size: 20px;
        font-weight: 600;
        line-height: 25px;
    }
    h2{
        font-size: 30px;
    }
    .inner-banner h1 {
    font-size: 35px;
    width: 100%;
    }
    .inner-sec .hero-video{
        display: none;
    }
     .inner-banner h5 {
        padding-top: 20px;
        font-size: 20px;
        line-height: 28px;
    }
    section {
    padding: 30px 0px;
}
    .problem-box.problem-box-inner {
    flex-direction: column;
}
      .indus-sec.inner-indus {
        grid-template-columns: repeat(2, 1fr);
    }
       .features-grid.service-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    body.wp-singular.page-template.page-template-in-depth-digital-audit section.faq-section::before {
        top: 31% !important;
        width: 100%;
        height: 69%;
    }
     .blog-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-post{
        grid-template-columns: 100%;
    }
    .featured-content {
    padding: 20px;
}
.fa-angle-down:before {
    content: "\f107";
    top: 85px;
    position: absolute;
}
a.nav-link.insta-btn {
    margin-bottom: 20px;
}
    .help-content {
    text-align: center;
}
        .container, .container-sm {
         max-width: 100%;
    }
	.faq-section .col-md-6, footer.site-footer .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }
}


@media (min-width: 992px) and (max-width: 1199.98px) {
    .indus-sec {
        grid-template-columns: repeat(2, 1fr);
    }
	.faq-section {
    background-color: #f5f5f5;
}
	section.faq-section h2.section-title.text-white {
    color: #2d5340 !important;
}
	section.faq-section::before{
		display: none;
	}
    .blue-shape-left video {
display: none;
}
        .problems-section, .industries-section, .help-section, .process-section, .testimonials-section, .faq-section, .contact-section {
        padding: 30px 0;
    }
    .process-section h2 {
    margin-bottom: 20px;
}
    .process-step:nth-child(3) {
    margin-top: 0;
}
        section.faq-section::before {
        top: 42%;
        width: 100%;
        height: 60%;
    }
    img.footer-logo {
    width: 30%;
}
    .lead-sm {
    width: 100%;
}
    .site-footer .col-6 {
    flex: 0 0 auto;
    width: 100%;
}
    .list-unstyled {
    gap: 10px;
    flex-direction: row;
    text-align: center;
}
    .logo-container {
    gap: 5px;
}.top-foot {
    padding-top: 20px;
}
    .logo-container img {
    width: 80px;
    height: 80px;
}
    .hero-content .btn-primary-custom, .btn-outline-custom {
        width: 50%;
    }
       .testimonial-cards {
        width: 45%;
        flex-direction: column;
		   gap: 5px;
    }
    .testimonial-card{
        border-right: none;
        justify-content: center;
        padding: 5px;
    }
          .hero-content h1 {
        font-size: 42px;
        width: 100%;
        line-height: 55px;
    }
        .hero-content p {
        font-size: 20px;
        font-weight: 600;
        line-height: 25px;
    }
    h2{
        font-size: 30px;
    }
    .inner-banner h1 {
    font-size: 35px;
    width: 100%;
    }
    .inner-sec .hero-video{
        display: none;
    }
     .inner-banner h5 {
        padding-top: 20px;
        font-size: 20px;
        line-height: 28px;
    }
    section {
    padding: 30px 0px;
}
    .problem-box.problem-box-inner {
    flex-direction: column;
}
      .indus-sec.inner-indus {
        grid-template-columns: repeat(2, 1fr);
    }
       .features-grid.service-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    body.wp-singular.page-template.page-template-in-depth-digital-audit section.faq-section::before {
        top: 31% !important;
        width: 100%;
        height: 69%;
    }
     .blog-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-post{
        grid-template-columns: 100%;
    }
    .featured-content {
    padding: 20px;
}
.fa-angle-down:before {
    content: "\f107";
    top: 85px;
    position: absolute;
}
a.nav-link.insta-btn {
    margin-bottom: 20px;
}
    .help-content {
    text-align: center;
}
        .container, .container-sm {
         max-width: 100%;
    }
	.faq-section .col-md-6, footer.site-footer .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }
	.testimonial-cards {
    width: 75%;
}
}


@media (min-width: 1200px) {
     .navbar-expand-lg .navbar-collapse {
        display: flex !important
;
        flex-basis: auto;
        justify-content: end;
    }
}

.feature-icon img {
    width: 80px;
}

@media (min-width:320px) and (max-width: 424px)  {
	.help-content {
    text-align: center;
}
	.industry-icon {
    font-size: 50px;
}
	.card-metric {
    font-size: 35px !important;
}
	ul.navbar-nav {
    text-align: left;
    justify-content: flex-start;
    align-items: self-start !important;
    padding-top: 20px;
}
	    a.nav-link.insta-btn {
        margin: 10px 0px;
    }
	.navbar-nav .nav-link{
		font-size: 18px;
	}
	    .testimonial-card {
        border-right: none;
        justify-content: center;
        padding: 5px;
			flex-direction: column;
    }
	p.card-metric {
    font-size: 35px !important;
}
.indus-sec {
    grid-template-columns: 100%;
}
    .blue-shape-left video {
display: none;
}
        .problems-section, .industries-section, .help-section, .process-section, .testimonials-section, .faq-section, .contact-section {
        padding: 30px 0;
    }
    .process-section h2 {
    margin-bottom: 20px;
}
    .process-step:nth-child(3) {
    margin-top: 0;
}
    section.faq-section::before {
        top: 46%;
        width: 100%;
        height: 55%;
    }
    img.footer-logo {
    width: 50%;
}
    .lead-sm {
    width: 100%;
}
    .site-footer .col-6 {
    flex: 0 0 auto;
    width: 100%;
}
    .list-unstyled {
    gap: 10px;
    flex-direction: column;
    text-align: center;
}
    .logo-container {
    gap: 5px;
}

	.hero-buttons{
		margin-bottom: 20px;
	}
	.logo-section {
    z-index: 9;
    padding-bottom: 20px;
}
       .hero-content .btn-primary-custom, .btn-outline-custom {
        width: 90%;
    }
      .testimonial-cards {
        width: 80%;
        flex-direction: column;
        padding-bottom: 10px;
    }
    .testimonial-card{
        border-right: none;
        justify-content: center;
        padding: 5px;
    }
        .hero-content h1 {
        font-size: 30px;
        width: 100%;
        line-height: 35px;
    }
        .hero-content p {
        font-size: 20px;
        font-weight: 600;
        line-height: 25px;
    }
    h2{
        font-size: 30px;
    }
    .inner-banner h1 {
    font-size: 35px;
    width: 100%;
    }
    .inner-sec .hero-video{
        display: none;
    }
    .inner-banner h5 {
    padding-top: 20px;
    font-size: 13px;
    line-height: 22px;
}
    section {
    padding: 30px 0px;
}
    .problem-box.problem-box-inner {
    flex-direction: column;
}
    .indus-sec.inner-indus {
    grid-template-columns: 100%;
}
    .features-grid.service-2 {
        grid-template-columns: 100%;
    gap: 2rem;
}
    body.wp-singular.page-template.page-template-in-depth-digital-audit section.faq-section::before {
        top: 31% !important;
        width: 100%;
        height: 69%;
    }
    .blog-layout {
    grid-template-columns: 100%;
}
    .featured-post{
        grid-template-columns: 100%;
    }
    .featured-content {
    padding: 20px;
}
.fa-angle-down:before {
    content: "\f107";
    top: 85px;
    position: absolute;
}
a.nav-link.insta-btn {
    margin-bottom: 20px;
	width: 100%;
}
	.hero-content {
    padding-top: 20px;
}
	.testimonial-card{
		gap: 0px;
	}
	.testimonial-card.card-left-bottom {
    padding-top: 15px;
}
}

.help-image.partner2 img {
    height: 400px;
    object-fit: contain;
    background: none;
    box-shadow: none;
    border-radius: 10px;
    overflow: hidden;
    border: 5px inset #2d5340;
    width: 400px;
    float: right;
    padding: 10px;
}
p {
    font-size: 17px !important;
    /* color: #000; */
}
.nav-link:focus-visible {
    outline: 0;
    box-shadow:none;
}
.footer-list a{
	font-size: 17px;
}
ul.navbar-nav li a {
    font-size: 17px;
}

.problem-item {
    width: calc(50% - 10px);
}



@media (max-width: 767px) {
	   .help-image.partner2 img {
    height: auto !important;
    width: 100% !important;
	} 
	.contact-form {
position: relative;
        background: #f5f3f1;
}
section.faq-section::before {
    position: relative;
}
.contact-form {
        padding: 30px;
    }
section.hero-section {
    background: #ded4c4;
}
.hero-content
 {
    position: relative;
    z-index: 1;
}
} 

@media (max-width: 575px) {
    .process-steps {
        grid-template-columns: repeat(1, 1fr);
    }
	.problem-item {
    width: calc(100% - 10px);
}
.logo-container img {
    padding: 5px;
}
}

@media (max-width: 360px) {
    .logo-container img {
        width: 70px;
        height: 70px;
    }
}



.page-id-1135 button.btn-primary-custom a {
    color: #1e4d38 !important;
    padding: 1rem 2.5rem;
}
