:root {
    --bs-primary: rgba(0, 54, 41, 1);
    --bs-secondary: rgb(251, 251, 251);
    --bs-light: rgba(236, 238, 233, 1);
    --bs-dark: #212529;


}

/* Apply your custom colors */
.bg-primary {
    background-color: var(--bs-primary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.text-light {
    color: var(--bs-light) !important;
}

.border-primary {
    border-color: rgb(18, 80, 65) !important;
}


/* Override Bootstrap's .btn-primary */
.btn-primary {
    background-color: var(--bs-light) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
    transition: 0.3s ease;
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;

}

.btn-primary:hover,
.btn-primary:focus {
    background-color: rgb(210, 212, 207) !important;


}

.text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

h1 {
    font-size: 32px;
    font-weight: 500;
}

.text-xxs {
    font-size: 14px;
}

.rounded-top-5 {
    border-top-left-radius: 3rem !important;
    border-top-right-radius: 3rem !important;
}




/* ==============================
   Base Page Styling
   ============================== */
body {
    font-family: 'Montserrat', sans-serif;


    margin: 0;
    padding: 0;
    overflow-x: hidden;
}



/* =============================
   Hero Section
   ============================= */
.hero-section {
  background: 
    linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent),
    url('../images/banner.png') center/cover no-repeat;

    height: 100dvh;
    position: relative;
    overflow: hidden;
    max-height: 100dvh;
}
.hero-logo {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
  border-radius: 12px;
  padding: 4px;
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8)); 
  
}




.hero-section::before {
    content: "";
    position: absolute;
    top: -25%;
    right: -25%;
    width: 70%;
    height: 150%;
    background-color: var(--bs-primary);
    border-top-left-radius: 100%;
    border-bottom-left-radius: 100%;
    z-index: 0;

}



.hero-text {
    color: #fff;
}

.hero-form {
    border-radius: 1rem;
}

.form-control {
    border: none;
    border-bottom: 1px solid var(--bs-primary);
    border-radius: 0;
    background: transparent;
    padding: 4px 4px;
    font-size: 16px;
}

.form-control:focus {
    border-bottom: 1px solid var(--bs-primary);
    box-shadow: none;
    outline: none;
}


/* =============================
   Why Perfomigo Section
   ============================= */
.why-section {}

.why-box {
    padding: 1rem;
    transition: all 0.3s ease;
}

.why-box:hover {
    background: var(--bs-light);
    border-radius: 20px;

}
.why-section img{
  max-width: 80px;
 
}

/* =============================
   Services Section (Accordion)
   ============================= */
.services-section {}

.our-service-para {
    max-width: 700px;
}



/* Ensure accordion column doesn't affect image height */
.services-section .row {
    align-items: stretch !important;
    /* both columns same height */
}

/* Keep image column centered with fixed alignment */
.services-section .col-lg-6.text-center {

    align-items: center;
    justify-content: center;
}

/* Make sure the image never resizes on accordion toggle */
.services-section .col-lg-6.text-center img {
    max-width: 100%;
    height: auto;
    transition: none;
    /* remove any smooth scaling effect */
}

/* Accordion styling */
.service-accordion .accordion-item {
    border: none;
    background-color: #0a5c46;
    color: #fff;
    transition: all 0.3s ease;
}

.service-accordion .accordion-button {

    box-shadow: none;
}

.service-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-primary);
    color: white !important;
}
.service-accordion .accordion-header img{
    width: 30px;
  
}


.service-accordion .accordion-body {
    background-color: var(--bg-primary);
    color: #fff;
    max-width: 500px;
    padding-top: 0;
       padding-left: 50px;
}

.service-accordion ul li i {
    color: #fff;
}

/* Hover effect */
.service-accordion .accordion-item:hover {
    transform: translateY(-4px);
}

/* Custom accordion icon (plus/minus) */
/* Custom accordion icon using images */
.service-accordion .accordion-button::after {
    content: "";
    background-image: url("../images/minus-icon.png") !important;
    background-repeat: no-repeat;

    background-position: center;
    width: 28px;
    height: 28px;
    transition: all 0.3s ease !important;
}

/* When accordion is open */
.service-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("../images/plus-icon.png") !important;


}

/* Hide active icons by default */
.accordion-button .icon-active {
    display: none;
}

/* When accordion is open (not collapsed), show active icon */
.accordion-button:not(.collapsed) .icon-active {
    display: inline;
}

/* When accordion is open, hide default icon */
.accordion-button:not(.collapsed) .icon-default {
    display: none;
}

/* Optional: Smooth transition for better UX */
.accordion-button img {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* .service-right img{
    max-height: 1000px;
  } */





/* =============================
   What You Gain Section
   ============================= */
.gain-section {}

.gain-section ul li {
    margin-bottom: 0.75rem;
}
.list-unstyled.lh-lg li {
  display: flex;
  align-items: flex-start;
  gap: 8px; /* space between icon and text */
  line-height: 1.6;
}

.list-unstyled.lh-lg li img {
  width: 20px; /* adjust size as needed */
  flex-shrink: 0; /* prevents icon from resizing */
  margin-top: 4px; /* aligns vertically with text */
}



/* =============================
   Trusted Brands Section
   ============================= */
.brands-section {}

.brands-section img {
    max-height: 60px;
    opacity: 0.9;
    mix-blend-mode: multiply;
    /* removes white backgrounds */
    transition: all 0.3s ease;
    margin-top: 30px;
}

.brands-section img:hover {
    opacity: 1;
    transform: scale(1.05);
    mix-blend-mode: multiply;
    /* removes white backgrounds */
    /* restores natural colors on hover */
}


/* =============================
 client says section
 =============================  */

.client-card {
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.quote-close {
    transform: scaleX(-1);
    display: inline-block;
}


/* =============================
 FAQ  section
 =============================  */
.faq-accordion .accordion-item {
    border: none;
    background-color: var(--bs-light);
    color: var(--bs-primary);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button {
    background-color: var(--bs-light);

    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bs-light);
    color: var(--bg-primary) !important;
}



.faq-accordion .accordion-body {
    background-color: var(--bg-light);
    color: var(--bs-primary);
    padding-top: 0;
    max-width: 500px;
}

.faq-accordion ul li i {
    color: var(--bs-primary);
}

/* Hover effect */
.faq-accordion .accordion-item:hover {
    transform: translateY(-4px);
}

/* Custom accordion icon using images */
.faq-accordion .accordion-button::after {
    content: "";
    background-image: url("../images/accordian-icon.png") !important;
    background-repeat: no-repeat;

    background-position: center;
    width: 28px;
    height: 28px;
    transition: all 0.3s ease !important;
}




/* =============================
   Floating Contact Icon
   ============================= */
.floating-contact-icon {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.floating-contact-icon img {
    max-width: 40px;
  
}

.floating-contact-icon.show {
    opacity: 1;
    visibility: visible;
}

.floating-contact-icon:hover {

    transform: scale(1.04);
}