/********** Template CSS **********/
:root {
    --primary: #00B54D;
    --secondary: #00B54D;
    --light: #F7FAFF;
    --dark: #1D1D27;

}


body.index-page {
    font-family: 'Montserrat', sans-serif; /* Change this to your desired font */
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
/* Default styles for Home page */
/* ======= Default Navbar Styling (Laptop/Desktop) ======= */
.navbar {
    background-color: white !important; /* Black navbar */
    color: black;
    padding: 8px 0; /* Compact height */
    transition: all 0.3s ease-in-out;
}

/* Navbar Links */
.navbar-light .navbar-nav .nav-link {
    color: black !important;
    padding: 8px 15px;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important; /* Highlight active link */
}

/* Logo Styling */
.navbar-brand img {
    max-height: 50px;
    transition: max-height 0.3s ease-in-out;
}


 
/* Sticky Navbar */
.sticky-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: white !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Sticky Navbar Link Color */
.sticky-top .navbar-nav .nav-link {
    color: black !important;
}

/* Reduce logo size when sticky */
.sticky-top .navbar-brand img {
    max-height: 40px;
}

/* ======= Tablet View (Between 768px - 1024px) ======= */
@media (max-width: 1024px) {
    .navbar {
        padding: 8px 10px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 15px; /* Slightly smaller text */
        padding: 8px 12px;
    }

    .navbar-brand img {
        max-height: 45px;
    }
}

/* ======= Mobile View (Below 768px) ======= */
@media (max-width: 767px) {
    .navbar {
        padding: 6px 10px; /* More compact */
    }

    .navbar-toggler {
        background-color: white;
        color:#1D1D27;
        border: none;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .navbar-brand img {
        max-height: 40px;
    }
}

/* ======= Small Mobile View (Below 480px) ======= */
@media (max-width: 480px) {
    .navbar {
        padding: 5px 8px; /* Even smaller padding */
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 8px;
    }

    .navbar-brand img {
        max-height: 35px; /* Smaller logo for smaller screens */
    }
}

/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-dot.webp),
        url(../img/bg-dot.webp),
        url(../img/bg-round.webp),
        url(../img/bg-tree.webp),
        url(../img/bg-bottom-hero.webp);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 55% top -1px,
        left 45% bottom -1px,
        center bottom -1px;
    background-repeat: no-repeat;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    /* background:#00B54D; */
    background: #00B54D;
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}



/*** Testimonial ***/
.newsletter,
.testimonial {
    background:
        url(../img/bg-top.webp),
        url(../img/bg-bottom.webp);
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--light) !important;
    border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}


/*** Team ***/
.team-item {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.team-item::after {
    position: absolute;
    content: "";
    top: 3rem;
    right: 3rem;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item small {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover small {
    color: var(--light);
}


/*** Project Portfolio ***/

.portfolio-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center;
    gap: 40px;
    overflow: hidden; /* Hide any extra scrollbars */
}

.portfolio-item {
    flex: 1 1 30%; /* Ensure items take equal space */
    max-width: 380px;
    min-width: 300px;
    margin-bottom: 20px; /* Adjust spacing */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .portfolio-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .portfolio-container {
        flex-direction: column;
    }
    .portfolio-item {
        flex: 1 1 100%;
    }
}

/* Hide scrollbar for all browsers */
body {
    overflow: hidden; /* Prevent any scrolling */
}

body::-webkit-scrollbar {
    display: none;
}

/* Remove horizontal scrollbar but allow vertical scrolling */
html, body {
    overflow-x: hidden;
}



/* footer section start */

/* General Footer Styling */
.footer {
    background-size: contain;
    padding: 25px 0 15px 0; /* reduced vertical padding */
    margin-top: 0 !important;

}

/* Inner Container Padding */
.footer .container {
    padding: 5px 0 !important; /* reduce space inside the footer */
}

/* Text and Link Adjustments */
.footer p {
    font-size: 15px; /* smaller paragraph text */
    line-height: 1.5; /* tighter spacing */
    margin-bottom: 8px;
}

.footer h5 {
    font-size: 18px; /* smaller heading */
    margin-bottom: 10px;
}

/* Footer Links */
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 1px 0;
    text-align: left;
    color: white;
    font-weight: normal;
    transition: .3s;
    font-size: 15px;
}

.footer .btn.btn-link:hover {
    color: #25D366;
    letter-spacing: 0.5px;
    text-decoration: none;
}

/* Social Icons */
.footer .btn.btn-social {
    width: 35px; /* smaller icons */
    height: 35px;
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 35px;
    transition: .3s;
    font-size: 15px;
}

.footer .btn.btn-social:hover {
    color: #25D366;
}

/* Locations section spacing */
.footer .d-flex.gap-4 a {
    margin-right: 15px;
    padding: 6px 12px; /* smaller buttons */
    font-size: 13px;
}

/* Copyright */
.footer .copyright {
    padding: 8px 0; /* less padding */
}

.footer .copyright a {
    color: white !important;
    text-decoration: none;
    font-size: 13px;
}

.footer .copyright a:hover {
    text-decoration: underline;
}

    /* ===== CTA FOOTER SECTION ===== */
/* ================================
   CTA FOOTER SECTION
================================ */

/* Main CTA container */
.cta-footer {
  background: url("/img/cta-bg.webp") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 0, 40, 0.65);
  z-index: 1;
}

/* White floating splash animation */
.cta-footer::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.08), transparent 50%);
  animation: splashMove 18s linear infinite;
  z-index: 2;
}

/* Splash animation */
@keyframes splashMove {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(90px, -70px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Keep content above overlays */
.cta-footer .container {
  position: relative;
  z-index: 3;
}

/* ================================
   CTA TEXT STYLES
================================ */

.cta-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.cta-title span {
  color: #00B54D; /* Brand green */
}

.cta-text {
  color: #ddd;
  font-size: 16px;
  max-width: 650px;
}

/* ================================
   CTA BUTTON
================================ */

.cta-btn {
  background: #ffffff;
  color: #000;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #00B54D;
  color: #000;
  transform: translateY(-3px);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-text {
    font-size: 15px;
  }
}

/* ================================
   FOOTER GAP FIX
================================ */



/* Footer end  */
/* ===== Floating WhatsApp Button ===== */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary, #25D366);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 25%; /* square look */
  border: 2px solid #25D366;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 1);
  transition: 0.3s ease-in-out;
  z-index: 1000;
  box-sizing: border-box;
}

.btn-whatsapp img {
  width: 30px;
  height: 30px;
}

.btn-whatsapp:hover {
  background-color: #25D366;
  transform: scale(1.1);
}

/* ===== Floating Instagram Button ===== */
.btn-instagram {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #E4405F;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 25%;
  border: 2px solid #E4405F;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 1);
  transition: 0.3s ease-in-out;
  z-index: 1000;
  box-sizing: border-box;
}

.btn-instagram img {
  width: 30px;
  height: 30px;
}

.btn-instagram:hover {
  background-color: #E4405F;
  transform: scale(1.1);
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) saturate(100%) invert(55%) sepia(90%) saturate(450%) hue-rotate(110deg) brightness(100%) contrast(95%);
}

/* Ensure the arrows are positioned at the bottom */
.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
/* about us overlapping images */
/* Ensure the main image is responsive */
.main-img {
    width: 60%;  /* Adjust size to make it balanced */
    max-width: 300px; /* Prevent it from becoming too big */
}

/* Overlapping image */
.overlap-img {
    width: 100%;
    max-width: 200px;
    position: absolute;
    top: 75%; 
    left: 65%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Media Query for Tablets */
@media (max-width: 768px) {
    .main-img {
        width: 80%; /* Slightly bigger for better visibility */
        max-width: 250px;
    }
    
    .overlap-img {
        width: 50%;
        max-width: 120px;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Media Query for Mobile Screens */
@media (max-width: 480px) {
    .main-img {
        width: 90%;
        max-width: 220px;
    }
    
    .overlap-img {
        width: 100%;
        max-width:150px;
        top: 70%;
        left: 70%;
        transform: translate(-50%, -50%);
    }
     /* Add More Space Below Images */
     .image-container {
        margin-bottom: 50px; 
    }
    
    /* Add Padding to Content */
    .carousel-inner {
        padding-top: 20px; 
    }

}


/* index page nav bar and sliding code */
/* Navbar Over Slider */
.navbar {
    z-index: 1000; /* Keeps navbar above the slider */
}

/* Logo Styling */
.custom-logo {
    height: 60px;
}



/* Hero Content Overlay */
.custom-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

/* Dropdown Styling */
.custom-dropdown {
    background-color:#FFF;
    border: 1px solid #00B54D;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    color: #FFF; /* Ensures text is white */
    z-index: 10; /* Ensures button is clickable */
    padding: 20px;
    pointer-events: auto !important;
}

.carousel-caption h1 {
    color: #FFF; /* Ensures heading text is white */
    font-size: 2rem;
    font-weight: bold;
}

.carousel-caption p {
    color:#000 !important; /* Ensures paragraph text is white */
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .carousel-caption {
        max-width: 80%;
        left: 10%;
        padding: 15px;
        z-index: 10; /* Ensures button is clickable */
        pointer-events: auto !important;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}


/* Navbar in Mobile */
@media (max-width: 991px) {
    .navbar {
        background-color: white !important; /* White background on mobile */
        padding: 10px 15px;
    }

    .navbar-toggler {
        border: none;
        color: black;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        color: black !important; /* Ensures readability */
    }

    .custom-logo {
        height: 50px; /* Smaller logo for mobile */
        width:200px !important ;
    }
    body.index-page .navbar-light .navbar-nav .nav-link {
        color:black !important;
    }
}

/* Call to Experts block */
.call-experts {
  display: flex;
  align-items: center;
}

.call-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8f9fa; /* light background */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  position: relative;
  transition: 0.3s;
}

.call-btn:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.call-btn .chat-icon {
  position: absolute;
  top: 7px;
  right: 12px;
  font-size: 12px;
}

.call-info {
  display: flex;
  flex-direction: column;
}

.call-info span {
  font-size: 14px;
  color: var(--bs-secondary);
}

.call-number {
  font-weight: bold;
  font-size: 15px;
  color: var(--bs-dark);
  text-decoration: none;
}

.call-number:hover {
  color: var(--bs-primary);
}


/* Background Slider Mobile */
@media (max-width: 768px) {
    .custom-hero-carousel .carousel-item {
        height: 60vh; /* Reduce height for mobile */
    }

    .custom-slider-img {
        height: 100%;
        object-fit: cover;
    }

    /* Center Hero Content on Mobile */
    .custom-hero-content {
        text-align: center;
        padding: 20px;
        color:#000;
         
    }

    .custom-hero-content h1 {
        font-size: 22px; /* Reduce heading size */
    }

    .custom-hero-content p {
        font-size: 14px;
    }

    .custom-hero-content .btn {
        display: block;
        width: 100%; /* Full width button */
        margin-top: 10px;
    }
}


/* Centering the Heading */
.heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
}

/* Styling for H1 */
.styled-heading {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Underline SVG */
.underline-svg {
    width: 100%;
    max-width: 800px;
}

/* Animation for Drawing Effect */
.underline-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 5s ease forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Laptop View (Larger Screens) */
@media (min-width: 1024px) {
    .styled-heading {
        font-size: 50px; /* Bigger for laptops */
    }

    .underline-svg {
        width: 50%;
        max-width: 350px;
    }
}

/* Tablet View */
@media (max-width: 1024px) and (min-width: 768px) {
    .styled-heading {
        font-size: 36px;
    }

    .underline-svg {
        width: 60%;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .styled-heading {
        font-size: 28px;
    }

    .underline-svg {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .styled-heading {
        font-size: 24px;
    }

    .underline-svg {
        width: 90%;
    }
}
 /* 3D Rotating Globe */
 .globe-container {
    position: relative;
    width: 500px;
    height: 300px;
    perspective: 1000px;
}

.globe {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: spin 6s linear infinite;
    margin-top: 60px;
}

.globe img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    backface-visibility: hidden;
    margin-top: 60px;
}

/* Front side of the globe */
.front {
    transform: rotateY(0deg);
}

/* Back side of the globe */
.back {
    transform: rotateY(180deg);
}

/* Keyframes for rotation */
@keyframes spin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/* index page Creating a successful css */
.responsive-text {
    word-wrap: break-word;
    white-space: normal;
    padding-left: 10px;
    padding-right: 10px;
}


/* smm page benefits of smm */

.custom-bg {
    background-color: #00B54D !important;
    color: white !important;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
    /* Target only the column that contains Benefits of SMM */
    .container .row > .col-md-6:first-child {
        
        margin-left: 0px; /* Reset the left margin */
        margin-right:180px;
        margin-bottom: 20px; /* Optional: Adds space below */
    }

    /* Reset list margin and padding */
    .container .row > .col-md-6:first-child ul {
        margin-left: 0; /* Reset the left margin for the list */
        padding: 0; /* Reset padding for mobile view */
    }

    /* Center the individual list items */
    .container .row > .col-md-6:first-child .custom-bg {
        margin: 0 auto; /* Center the individual list items */
    }
}




/* index page cookies styles */

.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;  /* Moves it to the left side */
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 300px;
    z-index: 1000;
}

.cookie-container p {
    margin: 0 0 10px;
    font-size: 14px;
}

.cookie-container a {
    color: #00B54D;
    text-decoration: underline;
}

.cookie-btn {
    background: #00B54D;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: #00903A;
}

.decline {
    background: red;
}

.decline:hover {
    background: darkred;
}

/* image style for index page header image */
@keyframes rotateImage {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-on-hover {
    transition: transform 0.1s ease-in-out;
}

.rotate-on-hover {
    animation: rotateImage 15s linear infinite;
}


/* Button Styling */
#scheduleBtn,
#downloadBrowser {
    display: inline-block;
    font-size: 16px;
    padding: 12px 20px;
    transition: transform 0.3s ease-in-out;
    border-radius: 5px;
    font-weight: bold; /* Bold for both buttons */
    margin-right: 10px; /* Space between buttons */
}

/* Arrow animation - only for #scheduleBtn */
#scheduleBtn::after {
    content: " →";
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}

#scheduleBtn:hover::after {
    transform: translateX(5px);
}

/* Tablet view */
@media (max-width: 1024px) {
    #scheduleBtn,
    #downloadBrowser {
        font-size: 15px;
        padding: 11px 18px;
    }

    #scheduleBtn::after {
        font-size: 19px;
    }
}

/* Small tablet / large phones */
@media (max-width: 768px) {
    #scheduleBtn,
    #downloadBrowser {
        font-size: 14px;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
        margin-right: 0; /* Remove margin when stacked */
        margin-bottom: 10px; /* Add vertical space */
    }

    #scheduleBtn::after {
        font-size: 18px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    #scheduleBtn,
    #downloadBrowser {
        font-size: 13px;
        padding: 8px 12px;
    }

    #scheduleBtn::after {
        font-size: 16px;
    }
}




/* services boxes in index.html pages */

.service-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px; /* Space between boxes */
    flex-wrap: wrap; /* Ensures wrapping on small screens */
    margin-top: 30px;
    position: relative;
}

/* Styling for each service box */
.service-box {
    flex: 1;
    max-width: 250px;
    min-height: 220px; /* Ensures same height */
    border: 2px solid #25D366;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Step-wise offset layout */
.service-box:nth-child(2) { margin-top: 30px; }
.service-box:nth-child(3) { margin-top: 60px; }
.service-box:nth-child(4) { margin-top: 90px; }

/* Responsive Design */
@media (max-width: 992px) { /* Tablets */
    .service-container {
        justify-content: center;
    }
    .service-box {
        max-width: 300px;
    }
    .service-box:nth-child(n) { margin-top: 0; } /* Reset steps */
}

@media (max-width: 768px) { /* Mobile */
    .service-container {
        flex-direction: column;
        align-items: center;
    }
    .service-box {
        width: 90%;
        max-width: 350px;
        min-height: auto;
    }
    .service-box:nth-child(n) { margin-top: 10px; } /* Small space between stacked boxes */
}



.btn-outline-light {
    color:var(--primary) !important; /* Ensures text/icons are white */
    background-color: white;
}

 /* FAQ box styling */
 /* Remove Bootstrap's default arrow */
.accordion-button::after {
  display: none !important;
}

/* Base button styles */
.accordion-button {
  position: relative;
  padding-left: 2.5rem; /* space for +/− */
  font-weight: 500;
  background-color: #ffffff !important; /* collapsed: white */
  color: #000000 !important; /* text color */
  border-radius: 12px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Icon: + on left side */
.accordion-button::before {
  content: '+';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #000000;
  transition: all 0.3s ease;
}

/* When accordion is expanded (open) */
.accordion-button:not(.collapsed) {
  background-color: #ffffff !important; /* open: black */
  color: #000000 !important;
}

/* Icon changes to − when open */
.accordion-button:not(.collapsed)::before {
  content: '−';
  color: #ffffff;
}

/* Accordion body (content area) */
.accordion-body {
  background-color: #f9f9f9;
  padding: 1rem 2.5rem;
  border-radius: 0 0 12px 12px;
  color: #333;
}

 .why-choose-us {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}



.why-choose-us .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.left-content {
  flex: 1 1 40%;
}

.left-content .tag {
  background: var(--primary);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.left-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #101357;
  line-height: 1.4;
  margin-bottom: 20px;
}

.left-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.explore-btn {
  background:var(--primary);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.explore-btn:hover {

  color: #ffffff;
 
}

.right-features {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-box {
  background: #fff;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}


.feature-icon {
  font-size: 32px;
  color: #25D366;
  margin-bottom: 16px;
}

.feature-box h3 {
  font-size: 18px;
  color: #101357;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

.read-link {
  color: #25D366;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}


.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/* google my business page css */

/* 🌿 Section Styling */
.gmb-section {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 5px; /* ↓ Reduced gap between sections */
}

/* Full width for better content flow */
.gmb-section .col-md-11 {
  max-width: 100%;
  flex: 0 0 100%;
}

/* Headings — default black, green on hover */
.gmb-section h2.text-black {
  color: #000;
  text-align: left;
  margin-bottom: 10px;
  transition: color 0.3s ease, margin 0.3s ease;
  cursor: pointer;
}

/* Hover effect — green and tighter spacing */
.gmb-section h2.text-black:hover {
  color: #00B54D !important;
  margin-bottom: 8px;
}

/* Paragraphs */
.gmb-section p {
  text-align: justify;
  margin-bottom: 10px;
}

/* Lists */
.gmb-section ul.fs-6 {
  margin-top: 5px;
  padding-left: 20px;
  font-size: 14px;
}

.gmb-section ul.fs-6 li {
  margin-bottom: 5px;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .gmb-section {
    font-size: 14px;
    line-height: 1.6;
    padding: 12px 8px;
  }

  .gmb-section h2.text-success {
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
  }

  .gmb-section p {
    text-align: left;
  }

  .gmb-section ul.fs-6 {
    font-size: 13px;
    padding-left: 18px;
  }

  .gmb-section ul.fs-6 li {
    margin-bottom: 4px;
  }
}



.hover-heading:hover {
  color: #FF7A00; /* change to black on hover */
}


.fixed-img {
  width: 100%;
  height: 300px; /* 🔹 Fixed height for all slides */
  object-fit: cover; /* 🔹 Crops images evenly */
  border-radius: 6px; /* Optional smooth corners */
}

/* 🔸 Responsive adjustment for mobile */
@media (max-width: 768px) {
  .fixed-img {
    height: 250px; /* smaller height for mobile screens */
  }
}

h1,
h2 {
  transition: color 0.3s ease, transform 0.3s ease;
}

h1:hover,
h2:hover {
  color: #00B54D;
  transform: translateX(3px);
}


