:root {
    --olive: #708238;
    --olive-light: #8ba046;
    --white: #ffffff;
    --black: #0d0e0b;
    --gray: #f8f9f5;
    --text-muted: #6b6b6b;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
body {
    font-family: 'Urbanist', sans-serif; 
    background: var(--white); 
    color: var(--black); 
    line-height: 1.6; 
    overflow-x: hidden; 
}
        /* .container { max-width: 1280px; margin: 0 auto; padding: 0 25px; } */
h1, h2, h3 { 
    font-family: 'Bricolage Grotesque', sans-serif; 
}

        /* HEADER & NAV */
nav { 
    height: 85px; 
    display: flex; 
    align-items: center; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    transition: var(--transition); 
    background: transparent; 
}
nav.scrolled {
     background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); height: 75px; border-bottom: 1px solid rgba(0,0,0,0.05); }
        .nav-container { display: flex; width: 100%; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.6rem; font-weight: 800; text-decoration: none; color: var(--black); z-index: 1001; }
        .logo span { color: var(--olive); }
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
            margin: 0;
        }
        .nav-menu li a { text-decoration: none; color: var(--black); font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
        .nav-menu li a:hover { color: var(--olive); }
        .menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; z-index: 1001; color: var(--black); }

        

        .btn-sm {
            background: var(--olive);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            display: inline-block;
            font-size: 15px;
        }
        .btn-sm:hover { background: var(--black); }

        /* HERO */
        .hero { padding: 180px 0 100px; background: radial-gradient(circle at top right, #eef2e6, transparent 45%); }
        .hero-flex { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
        .hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 0.95; margin-bottom: 25px; letter-spacing: -2px; }
        .hero-img {
    width: 100%;
    /* border-radius: 40px; */
    /* box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1); */
    /* border: 10px solid white; */
    transition: .6s;
}
        .hero-btn { background: var(--black); color: white; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 800; display: inline-block; transition: var(--transition); }
        .hero-btn:hover { background: var(--olive); transform: translateY(-5px); }

        /* MILESTONES */
        .milestones { padding: 80px 0; background: var(--olive); color: var(--white); text-align: center; border-radius: 40px; margin: 40px 20px; }
        .milestone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .milestone-item h2 { font-size: 3.5rem; font-weight: 900; }

        /* BRANDS */
        .brands-marquee { padding: 60px 0; background: var(--white); overflow: hidden; white-space: nowrap; border-bottom: 1px solid #eee; }
        .marquee-content { display: inline-flex; animation: scroll 25s linear infinite; gap: 80px; align-items: center; }
        .marquee-content i { font-size: 3rem; color: #cbd5e0; filter: grayscale(1); transition: 0.3s; }
        @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* INDIA EDGE */
        .india-edge {
            padding: 100px 0;
            background: var(--black);
            color: white;
            border-radius: 0;
        }
        .edge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
        .edge-card { padding: 45px; background: #1a1c16; border-radius: 30px; border: 1px solid #333; transition: var(--transition); text-align: center; }
        .edge-card:hover { border-color: var(--olive); transform: translateY(-12px); }
        .edge-card i { font-size: 3rem; color: var(--olive); margin-bottom: 25px; }

        /* WORK STYLE */
        .lifecycle-visual { display: flex; justify-content: center; gap: 40px; margin: 30px 0 0 0; flex-wrap: wrap; }
        .step-circle { width: 200px; height: 200px; border: 2px dashed var(--olive); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: white; padding: 25px; text-align: center; transition: var(--transition); }
        .step-circle:hover { background: var(--olive); color: white; border-style: solid; }
        .step-circle i { font-size: 2rem; color: var(--olive); margin-bottom: 10px; }

        /* MARKET FUNNEL */
        .funnel-sec { padding: 120px 0; background: var(--gray); text-align: center; border-radius: 60px; }
        .funnel-wrapper { position: relative; max-width: 850px; margin: 60px auto; display: flex; flex-direction: column; align-items: center; }
        .funnel-step { margin-bottom: 15px; padding: 25px; color: white; font-weight: 800; border-radius: 20px; transition: var(--transition); width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .step-01 { width: 100%; background: #4a5725; }
        .step-02 { width: 85%; background: #5d6d2e; }
        .step-03 { width: 70%; background: #708238; }
        .step-04 { width: 55%; background: #8ba046; }

        /* --- FLYWHEEL SECTION STYLES --- */
        .flywheel-section { padding: 100px 0; text-align: center; background: var(--white); }
        .flywheel-container { position: relative; width: 350px; height: 350px; margin: 80px auto; border-radius: 50%; border: 2px dashed var(--olive); display: flex; align-items: center; justify-content: center; animation: rotateFlywheel 25s linear infinite; }
        .flywheel-container:hover { animation-play-state: paused; }
        @keyframes rotateFlywheel { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        
        .fly-node { position: absolute; width: 100px; height: 100px; background: var(--white); border: 2px solid var(--olive); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; animation: counterRotate 25s linear infinite; box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
        @keyframes counterRotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
        
        .fly-node i { color: var(--olive); font-size: 1.3rem; margin-bottom: 5px; }
        .fly-node span { font-size: 0.75rem; font-weight: 800; color: var(--black); text-transform: uppercase; }
        .n-1 { top: -50px; } .n-2 { right: -50px; } .n-3 { bottom: -50px; } .n-4 { left: -50px; }
        .fly-center { width: 140px; height: 140px; background: var(--olive); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; font-weight: 800; font-size: 1.2rem; z-index: 2; box-shadow: 0 0 30px rgba(112, 130, 56, 0.4); }

        .compounding-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 60px; }
        .comp-item { border-left: 4px solid var(--olive); padding-left: 25px; text-align: left; transition: 0.3s; }
        .comp-item:hover { background: var(--gray); padding-top: 10px; padding-bottom: 10px; }
        .comp-item h4 { font-size: 1.25rem; margin-bottom: 8px; color: var(--black); }

        /* SERVICES */
        .services { padding: 120px 0; }
        .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .service-card { background: var(--white); padding: 50px 40px; border-radius: 35px; border: 1px solid #f0f0f0; transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; min-height: 480px; }
        .service-card:hover { border-color: var(--olive); transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.05); }
        .s-icon { width: 65px; height: 65px; background: var(--gray); color: var(--olive); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 25px; }
        .btn-service { margin-top: 25px; text-decoration: none; color: var(--olive); font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; transition: var(--transition); border-top: 1px solid #eee; padding-top: 20px; }

        /* TESTIMONIALS */
        .testimonials { padding: 100px 0; background: var(--white); text-align: center; }
        .testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
        .testi-card { background: var(--gray); padding: 40px; border-radius: 25px; text-align: left; border-left: 6px solid var(--olive); }
        .testi-author { font-weight: 800; color: var(--olive); margin-top: 15px; display: block; }

        /* GMB & FOOTER */
        .gmb-section { padding: 100px 0; background: var(--gray); border-radius: 60px; }
        .gmb-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .gmb-btn { background: white; color: var(--black); padding: 15px 30px; border-radius: 50px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; font-weight: 800; border: 1px solid #ddd; transition: 0.3s; }
        footer { background: var(--black); color: white; padding: 100px 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
        .footer-logo { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; display: block; color: white; text-decoration: none; }
        .footer-logo span { color: var(--olive); }
        .footer-col h4 { color: var(--olive); margin-bottom: 25px; font-size: 1.2rem; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #888; text-decoration: none; transition: 0.3s; }
        .footer-bottom { margin-top: 80px; border-top: 1px solid #222; padding-top: 40px; text-align: center; color: #444; font-size: 0.9rem; }

        /* FAQ */
        .faq-item { background: var(--gray); padding: 25px; border-radius: 20px; margin-bottom: 15px; cursor: pointer; }
        .faq-item.active { background: white; border: 1px solid var(--olive); }
        .faq-item p { display: none; margin-top: 15px; color: var(--text-muted); }
        .faq-item.active p { display: block; }

        @media (max-width: 1024px) {
            .hero-flex, .edge-grid, .service-grid, .milestone-grid, .testi-grid, .gmb-flex, .footer-grid { grid-template-columns: 1fr; }
            .hero-flex img { order: -1; }
            .flywheel-container { width: 280px; height: 280px; margin: 60px auto; }
            .fly-node { width: 85px; height: 85px; }
            .fly-center { width: 110px; height: 110px; font-size: 1rem; }
        }


.cursor-dot {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999999;
  }

  .cursor-circle {
    width: 22px;
    height: 22px;
    border: 2px solid #000;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.1s linear;
    z-index: 9999999;
  }

  /* Hover effect for links & buttons */
  .cursor-hover {
    width: 35px;
    height: 35px;
    border-color: red;
    transform: translate(-50%, -50%) scale(1.2);
  }

  /* cursor end */

/* service section start */
.service_icon img {
}

.service_icon {
    width: 89px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    padding: 17px 17px;
    border: dashed 1px #70823885;
    transition: 0.9s;
}

.servicebox {
    border-radius: 40px;
    border: dashed 2px #708238;
    background: #70823812;
    padding: 25px 10px;
    text-align: center;
    transition: 0.5s;
    margin-top: 10px;
}

.servicebox:hover {
    transform: translateY(-8px);
}

.service_content h3 {
    font-weight: 400;
    font-size: 18px;
}

.service_content a {
    font-weight: 600;
    color: #708238;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    font-size: 18px;
}

.service_content a i.fa {
    font-size: 13px;
}

.servicebox:hover .service_icon {
    transform: rotateY(360deg);
}

.section_title h2 {
    text-align: center;
    line-height: normal;
}

.owl-dots.disabled {
    /* display: block !important; */
}

.owl-nav.disabled {
    /* display: block !important; */
}
.section_padding {
    padding: 80px 0;
}
.more_service {
    text-align: center;
    background: #f5f6f1;
    border-radius: 54px;
    border: dashed 2px var(--olive);
    margin-top: 30px;
    padding: 20px 30px;
    /* display: inline-block; */
}

.more_service ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.more_service ul li {font-size: 16px;font-weight: 600 !important;font-size: 17px;}

.more_service ul li a {
    font-size: 17px;
    font-weight: 600;
    color: var(--olive);
    text-decoration: none;
}

/* service section end */

/* counter start */
.counter_section {
    background: #708238;
    padding: 60px 60px;
    border-radius: 32px;
}
.milestone-item img {
    width: 50px;
}
.milestone-item {
    text-align: center;
}
h2.counter {
    color: #fff;
    margin-bottom: 0;
    margin-top: 14px;
}
.milestone-item p {
    color: #fff;
    font-size: 19px !important;
    margin: 0;
}
/* counter end */

/* marquee start */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #f5f6f1;
  border: 1px solid #ddd;
  padding: 12px 0;
  position: relative;
}

.marquee-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 50s linear infinite;
}

.marquee-inner span {
  font-size: 37px;
  font-weight: 600;
  padding-right: 50px;
  color: #000;
  line-height: 34px;
  display: flex !important;
  align-items: center;
}
.start_style_marquee {
    font-size: 72px !important;
    position: relative;
    top: 15px;
    line-height: normal !important;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.nave_btn {
    color: #fff !important;
    padding: 14px 40px;
}
/* marquee end */

.work-section {
    background: #fff;
    border: 0;
}
.work-section span img {
    width: 75px;
}

.work-section .marquee-inners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.work-section .marquee-inners span {
    background: #fff;
    border: solid 1px #e7e7e7;
    padding: 20px 20PX;
    border-radius: 12px;
    width: 11%;
    text-align: center;
    transition: .5s;
}

.work-section .marquee-inners span:hover {transform: translateY(-10px);/* cursor: pointer !important; */}

/* about section start */
.about-content .section_title h2 {
    text-align: left;
}

.about-img img {
    border-radius: 12px;

}
.about-content p {
    font-size: 18px !important;
    margin-bottom: 6px;
}
.section_title h2{
    font-size: 3rem; 
    margin-bottom: 20px;
}
/* about section end */

/* faq section start */
.faq_box {
    background: #f5f6f1;
    border: dashed 2px gray;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.faq_icon img {
    width: 90px;
}

.faq_box_content h3 {margin: 0;}
.faq_box_content p a {
    color: #708238;
    font-weight: 600;
    font-size: 18px;
}
/* faq section end */

/* testimonails start */
.review_img {
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial_slide .section_title h2 {
    text-align: left;
}

.review_star i {
    color: #708238;
    display: inline-block;
}

.revie_content p {
    font-size: 17px;
    /* line-height: normal; */
}

.review_client {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.client_name h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.owl-dots {
  text-align: center;
  margin-top: 15px;
}
.owl-dot {
  display: inline-block;
  margin: 5px;
}
.owl-dot span {background: #dadada;width: 9px;height: 9px;display: inline-block;border-radius: 50%;}
button.owl-dot {
    margin: 0 3px;
}
button.owl-dot.active span {
    background: #708238;
}
.testimonial_slide .owl-nav {
    display: none;
}
/* testimonials end */



/* footer start */
.social_media_footer ul {list-style: none;margin: 0;padding: 0;}

.social_media_footer ul li {
    display: inline-block;
    padding-right: 7px;
}

.social_media_footer ul li a {
    text-decoration: none;
    font-size: 16px;
    width: 33px;
    height: 33px;
    border: solid 1px #ffffff94;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: normal;
    color: #ffffffe0;
    transition: .5s;
}

.social_media_footer ul li a i {
}

.social_media_footer ul li:hover a {
    color: #708238;
    border-color: #708238;
    transform: scale(1.1);
}

.footer_list h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 38px;
}

.footer_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_list ul li {
    padding-bottom: 12px;
}

.footer_list ul li a {
    text-decoration: none;
    color: #fff;
    letter-spacing: normal !important;
}

.contact_information li a i.fa {
    border: solid 1px #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

.contact_information li {
    position: relative;
    padding-left: 43px;
    padding-bottom: -7px !important;
}

.contact_information li:nth-child(2) {
    padding-bottom: 30px !important;
}

.contact_information li a {
}

.brand_log_footer img {
    margin-bottom: 15px;
    width: 180px;
}
.copy_footer {
    background: #0d0e0b;
    padding: 20px 0;
    border-top: solid 1px #ffffff17;
}

.copy_content p {
    color: #fff;
    margin: 0;
}

.policy ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.policy ul li {display: inline-block;padding-right: 10px;}

.policy ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}

.policy ul li a:hover {
    color: #708238;
}
.textLeft h2 {
    text-align: left;
    margin-bottom: 5px;
}
.googleset {
    background: white; padding: 40px; border-radius: 30px; border: 1px solid #ddd; text-align: center;
}
/* footer end */

/* call start */
.call-back-1 {
    left: 10px;
    position: fixed;
    bottom: 50px;
    z-index: +9999;
    animation-name: mover1;
    -webkit-animation: mover1 1s infinite alternate;
    animation: mover1 1s infinite alternate;
    animation: mover1 1s infinite alternate;
}

.call-back-1 img {
    width: 50px;
    margin-bottom: 5px;
    display: block;
    margin-left: 0 !important;

}

@-webkit-keyframes mover1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}
.about-img img {
    width: 100%;
}
/* call end */

.best_service_all_mobile {
    display: none;
}


/* about us page start */
.about-hero {
    padding: 120px 0 80px;
    background: var(--black);
    color: white;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    text-align: center;
    margin-top: 65px;
}
nav#navbar {
    background: #fff;
}
[data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1);
}
.about-hero h1 {
    font-size: 55px;
    margin-bottom: 0;
}
.about-hero p {
    color: var(--olive-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}
.inner_header {
    height: 85px;
    display: flex;
    align-items: center;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.about_page .about-img {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    /* height: 600px; */
    box-shadow: 30px 30px 0px var(--gray);
}
.about_page .about-content {
    padding-left: 60px;
}

.about-content h4 {font-weight: 600;}

/* mission vision section start */
.philosophy {
    background: #ffffff;
    border-radius: 12px;
    border: solid 1px #70823824;
    padding: 40px 40px;
    /* transform: translate(10px, 10px); */
    opacity: 1;
}

.values-sec {
    background: var(--gray);
}

.philosophy i {font-size: 38px;color: var(--olive);}

.philosophy h3 {
    font-size: 18px;
    margin-top: 14px;
}
.philosophy img {width: 70px;}
.philosophy p {
    margin-bottom: 0;
}
.values-sec .row {
    row-gap: 25px;
}
/* mission vision sectiob end */

/* about form start */
.about_form {
    padding: 50px 40px;
    border: solid 1px #7082384d;
    border-radius: 18px;
}
form .form-group input {
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 600;
    color: gray;
}
form button {
    background: var(--olive) !important;
    height: 55px;
    width: 100%;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 17px !important;
    border-radius: 8px !important;
}
form .form-group input:focus {border-color: #70823840;box-shadow: 0 0 0 .25rem #70823840;}
form button:hover {
    background: #000 !important;
}
/* about form end */

.slide_brand_logo {
    display: none;
}

/* about us page end */


/* contact start */
.contact_form input, .contact_form textarea {
    width: 100%;
    padding: 10px 13px !important;
    font-weight: 600 !important;
    color: #000 !important;
    border: solid 1px #d5d5d5 !important;
    border-radius: 4px !important;
}
.contact_form textarea {
    height: 150px;
}
    .contact_form input::placeholder, .contact_form textarea::placeholder {
    color: #8d8d8d;
}
.contact_form button {
    width: initial !important;
    padding: 12px 50px !important;
    border: 0 !important;
    border-radius: 4px !important;
}
.info-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: solid 1px #e7e7e7;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.info-box i {
    font-size: 21px;
    border: solid 1px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--olive) !important;
}
.info-box h4 {margin-bottom: 0;font-size: 18px;font-weight: 600;}
.info-box p {
    color: #000 !important;
}
.details-col {
    padding-left: 40px;
}
.info-box a {
    color: #000;
    text-decoration: none;
}
.m_contact_heading {
    display: none;
}
/* contact end */


/* modal popup start */
.modal_form select {
    height: 55px;
    font-weight: 600;
    color: #707275;
    padding: 10px 20px !important;
}

.modal_form form button {
    border: 0;
    border-radius: 4px !important;
}

.modal_form select, .modal_form input {
    border-radius: 6px !important;
}

.modal_form .col-sm-12 {
    padding: 0 8px;
}

.modal-content button.btn-close {
    position: absolute;
    right: 10px;
    font-size: 11px !important;
    top: 10px;
    z-index: 9;
}

.modal-body {
    padding: 30px 30px;
}
.enquiry_modal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
/* modal popup end */


/* seo page start */
/* service for seo start */
.inner_icon_box {
    border: solid 1px #e7e7e7;
    border-radius: 12px;
    padding: 15px 10px;
    width: 12%;
    text-align: center;
    background: #fff;
}

.icon_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.inner_icon_box img {
    width: 75px;
}

.inner_icon_box span {
    font-weight: 600;
    display: inline-block;
    padding-top: 6px;
}
.bg_color {
    background: var(--gray);
}
/* service for seo end */

/* faq section start */
.faq_section .accordion-item {
    border: 0;
    margin-bottom: 18px;
}

.faq_section .accordion-item button.accordion-button {
    background: var(--olive);
    /* border: dashed 2px var(--olive); */
    border-radius: 6px !important;
    padding: 22px 20px;
    color: #ffffff;
    font-size: 18px;
}

.faq_section .accordion-collapse {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: solid 3px var(--olive);
    background: var(--gray);
    margin-top: 6px;
}
/* faq section end */
/* seo page end */

/* dropdown header start */
li.dropdown {
    position: relative;
}
ul.dropdown_list {
    display: none;
    position: absolute;
    top: 27px;
    left: 0;
    background: #fff;
    padding: 10px 0px 0 0;
    list-style: none;
    border-radius: 9px;
    width: 200px !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
}
li.dropdown:hover ul.dropdown_list {
    display: block;
}
ul.dropdown_list li {
    padding: 7px 10px 7px 15px;
    border-bottom: solid 1px var(--gray);
    transition: 0.6s;
}
ul.dropdown_list li:hover {
    background: var(--gray);
    padding-left: 20px;
}
ul.dropdown_list li a {
    width: 100%;
    display: block;
}
li.dropdown i.fa {
    padding=;
    padding-left: 3px;
    color: #000;
    font-weight: 600;
}
ul.nav-menu li {
    border-bottom: solid 2px transparent;
    transition: .6s;
}
ul.nav-menu li:hover {border-bottom: solid 2px var(--olive);}
.logo img {
    width: 140px;
}

/* dropdown header end */

/* hamberger start */
.menu-icon {
    width: 30px;
    cursor: pointer;
    display: none;
}

.menu-icon span {
    display: block;
    height: 3px;
    background: #000;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* OPEN → CLOSE */
.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* hamberger end */
/* hero banner start */
.herro_img:hover {
    /* padding-left: 10px; */
    transform: translateX(60px);
}

.herro_img {
    transition: .6s;
    overflow: hidden;
    width: 100%;
    border-radius: 40px;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
}

.herro_img:hover img.hero-img {
    transform: scale(1.08);
}
/* hero banner end */


/*case study start*/
.case_img img {
    width: 100%;
    transition: .7s;
}
.case_study_box {
    border: dashed 2px var(--olive);
    padding: 10px 10px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ddd;
}
.case_content h2 {
    color: #000;
}
.case_content a {
    text-decoration: none;
}
.case_img {
    overflow: hidden;
    border-radius: 12px;
    border: solid 1px #f7f7f7;
}
.case_study_box:hover img {
    transform: scale(1.05);
}
.case_content a {
    font-size: 19px;
    color: #000;
    padding-top: 20px !important;
    display: inline-block;
}
.tab_head ul.nav.nav-pills {
    justify-content: center;
    gap: 5px;
}
.tab_head a.nav-link.active {
    background: var(--olive);
}
.tab_head a.nav-link {
    background: #70823829;
    border-radius: 50px;
    padding: 12px 40px;
    display: inline-block;
    color: #000;
}
.tab_head a.nav-link:hover {background: var(--olive);color: #fff;}
/*case study end*/


/*case study details start*/
.side_bar_case_study h2 {
    font-size: 28px;
    text-align: left;
}

.side_bar_case_study {
    position: sticky;
    top: 0;
}

.case_stuy_img {
    overflow: hidden;
    border-radius: 12px;
}

.case_study_content h4 {
    font-weight: 600 !important;
    font-size: 21px;
}

.case_study_content li {
    position: relative;
    padding-left: 20px;
}

.case_study_content li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--olive);
}

.case_study_content ul {
    list-style: none;
    padding-left: 9px;
}

.case_study_content {
    margin-top: 30px;
}
.side_bar_form {
    border: solid 1px #dfdfdf;
    border-radius: 12px;
    padding: 20px 20px;
}

.side_bar_form .col-sm-12 {
    width: 100%;
}
/*case study details end*/

.g-recaptcha iframe {
    height: 55px;
    border-bottom: solid 1px #dddddd;
    border-radius: 8px;
}
.g-recaptcha {
    height: 55px;
}
.captcha_set {
    height: auto !important;
}

.captcha_set iframe {
    height: auto;
}
.thankyou_section {
    padding-top: 110px;
}

/*mobile menu start*/
.mobileMenu {
    position: fixed;
    bottom: 8px;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
    box-shadow: 0px -4px 11px #dddddda8;
    padding: 0px 0 0px 0;
    /* border-top-left-radius: 10px; */
    /* border-top-right-radius: 10px; */
    border-radius: 10px;
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
}

.mobileMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.call-back-1 {
    display: none;
}

.mobileMenu ul li {
    /* display: flex; */
    /* justify-content: space-between; */
    width: 25%;
    border-right: solid 1px #f0f0f0;
    padding: 8px 0 4px 0;
}

.mobileMenu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.mobileMenu ul li a span {
    display: block;
}

.mobileMenu ul li a span i {
    font-size: 20px;
    color: var(--olive);
}

.mobileMenu ul li:last-child {
    border-right: 0;
}

.mobileMenu ul li:hover {
    background: var(--olive);
}

.mobileMenu ul li:hover a span i {
    color: #ffff;
}

.mobileMenu ul li:hover a {
    color: #fff;
}

.mobileMenu .container {
    padding: 0;
    max-width: 100%;
}
.mobileMenu {
    display: none;
}
/*mobile menu end*/

nav {
    height: 65px;
}
.addset {
    width: 80%;
}

.seo_services_tools .inner_icon_box {
    width: 19%;
}

.seo_services_tools .inner_icon_box span {
    display: block;
}

.seo_services_tools .inner_icon_box p {
    margin-bottom: 0;
}


/*call to action start*/
.calltocationset {
    background: var(--olive);
    border-radius: 20px;
    padding: 30px 30px;
}

.calltocationset h2 {
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}

.calltocationset p {
    color: #fff;
}

.calltocationset a {
    color: #fff;
    background: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
/*    margin-right: 12px;*/
}

.calltocationset .row {
    align-items: center;
    justify-content: space-between;
}

.calltocationset .section_title span {
    color: #fff !important;
}
p.calltocationhead {
    font-size: 20px;
}

/*call to action end*/
.owl-nav {
    display: none;
}
.service_content span {
    background: var(--olive);
    color: #fff;
    width: 55px;
    height: 55px;
    display: inline-block;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 50px;
    font-size: 25px;
}
.cta_option .web-btn {
    text-align: right;
}
.cta_option .web-btn a {
    padding-left: 25px;
    padding-l;
    padding-right: 25px;
}

.cta_option .web-btn a:hover {
    background: #fff;
    color: var(--olive);
}


/* responsive start */
@media screen and (max-width: 1069px) {
.section_title h2 {
    font-size: 42px;
    margin-bottom: 20px;
}
.seo_services_tools .inner_icon_box {
    width: 32%;
}
}


@media (max-width: 992px) {
.menu-toggle { display: block; }
.nav-menu { 
    position: fixed; 
    top: 0; 
    /* right: -100%;  */
    width: 30%; 
    height: 100vh; 
    background: white; 
    flex-direction: column;
    transition: 0.4s; 
    box-shadow: -10px 0 30px rgba(0,0,0,0.05); 
    
    z-index: 99999;
    align-items: start;
    gap: 0;
    padding-left: 0;
    transform: translateX(-360px);
    padding-top: 30px;
}
.nav-menu.active {
    left: 0;
    right: inherit !important;
    transform: translateX(0px);
}
.nav-menu li {
    margin: 0;
    padding-bottom: 10px;
    width: 100%;
    padding: 10px 0 10px 30px;
    border-bottom: solid 1px #efefef;
}
.nav-menu li a {
    font-size: 16px;
    font-weight: 400;
}
.nav-menu.active li:last-child {
    display: none;
}
.slide_brand_logo {
    display: block;
    padding: 15px 30px;
}
.first_home {
    padding-top: 50px !important;
}
ul.nav-menu {
    padding-top: 20px;
}
.slide_brand_logo {
    padding-top: 0;
}
.slide_brand_logo img {
    width: 129px;
}
.logo img {
    width: 129px;
}
.menu-icon {
    display: block;
}
}

@media screen and (max-width: 991px) {
.hero h1 {
    font-size: 49px;
    margin-bottom: 10px;
}
.section_title h2 {
    font-size: 38px;
}
}

@media screen and (max-width: 768px) {
.about-hero h1 {
    font-size: 40px;
}
.section_title h2 {
    font-size: 34px;
}
.about_page .about-content {
    padding-left: 20px;
}
.mobileMenu {
    display: block;
}
}
@media screen and (max-width: 767px) {
.mobileMenu {
    display: block;
}
}

@media screen and (max-width: 580px) {
.nav-container img {
    width: 120px;
}
.work-section span img {
    width: 58px;
}
.work-section .marquee-inners span {
    padding: 15px 14px;
    width: 23%;
}
.work-section .marquee-inners {
    gap: 10px;
}
.section_title h2 {
    font-size: 25px;
}
nav {
    right: 0;
}

.hero-btn {
    padding: 12px 22px;
    font-weight: 600;
}
.hero h1 br {
    display: none;
}
.hero h1 {
    font-size: 29px;
    margin-bottom: 8px;
}
.hero {
    padding: 140px 0 60px;
}
.herro_img {
    margin-top: 20px;
}
.gmb-section {
    padding: 60px 15px;
}
.section_title h2 {
    margin-bottom: 10px;
}
.gmb-btn {
    padding: 12px 22px;
    gap: 5px;
    font-weight: 600;
}
.gmb-flex {
    gap: 25px;
}
.googleset h3 {
    font-size: 18px;
}
.googleset i {
    font-size: 28px !important;
    margin-bottom: 12px;
}
.googleset {
    padding: 30px;
}
.servicebox {
    border-radius: 30px;
}
.best_service_all_desktop {
    display: none;
}
.best_service_all_mobile {
    display: block;
}
.more_service ul li a {
    font-size: 16px;
}
.more_service ul li {
    font-size: 16px;
}
.more_service {
    margin-top: 25px;
    padding: 15px 20px;
}
.section_padding {
    padding: 60px 0;
}
.counter_section {
    padding: 60px 15px;
    border-radius: 30px;
}
h2.counter {
    margin-top: 8px;
}
.milestone-item h2 {
    font-size: 30px;
    font-weight: 600;
}
.milestone-item p {
    font-size: 16px !important;
}
.counter_section .row {
    row-gap: 30px;
}
.marquee-inner span {
    font-size: 25px;
}
.marquee-container {
    padding: 0px 0;
}
.flywheel-container {
    width: 200px;
    height: 200px;
    margin: 0px auto;
}
.m-circle {
    margin-bottom: 70px !important;
}
.activeate_flywheel a {
    padding: 12px 22px !important;
}
.flywheel-section {
    padding: 60px 0;
}
.about-content .section_title h2 {
    text-align: center;
}
.about-content p {
    text-align: center;
}
.about-img {
    margin-top: 27px;
}
.about-img {
    margin-top: 27px;
}

.about-content .web-btn {
    text-align: center;
}

.about-content .web-btn a.hero-btn {
    padding: 12px 32px;
    font-size: 15px;
}
.india-edge {
    padding: 60px 0;
}
.edge-grid {
    gap: 20px;
    margin-top: 22px;
}
.step-circle span {
    font-size: 16px;
    text-transform: capitalize;
}
.step-circle i {
    font-size: 25px;
    margin-bottom: 7px;
}
.step-circle {
    width: 110px;
    height: 110px;
}
.lifecycle-visual {
    gap: 15px;
    margin: 25px 0 0 0;
}
.service-card {
    padding: 30px 30px;
    border-radius: 30px;
    min-height: 370px;
}
.service-card h3 {
    font-size: 20px;
}
.section_title h2 {
    text-align: center !important;
}
.review_client {
    justify-content: center;
}
.revie_content p {
    font-size: 16px;
    text-align: center;
}
.review_star {
    text-align: center;
}
.faq_box {
    margin-bottom: 25px;
    padding: 15px 15px;
    gap: 15px;
}
.faq_box_content h3 {
    font-size: 20px;
}
.faq_icon img {
    width: 60px;
}
.brand_log_footer img {
    width: 130px;
}
footer {
    padding: 60px 0;
}
.footer_section .row {
    row-gap: 30px;
}
.footer_list h4 {
    margin-bottom: 15px;
}
.copy_content p {
    text-align: center;
}
.policy ul {
    text-align: center;
}
.copy_footer .row {
    flex-direction: column-reverse;
}
.about-hero h1 {
    font-size: 28px;
}
.about_page .about-img {
    margin-top: 0;
    text-align: center;
}
.about_page .about-img img {
    width: 90%;
}
.about_page .about-content {
    margin-top: 50px;
    padding-left: 0;
}
.about_page .about-content h4 {
    text-align: center;
    margin: 0;
}
.about_page .about-content p {
    font-size: 16px !important;
}
.about_form {
    padding: 40px 30px;
    margin-top: 15px;
}
.flywheel-container {
    transform: initial !important;
}
.fly-center {
    width: 100px;
    height: 100px;
    font-size: 14px;
    font-weight: 500 !important;
    line-height: normal !important;
}
.fly-node {
    width: 75px;
    height: 75px;
}
.fly-node span {
    font-size: 12px;
    font-weight: 400;
}
.about-hero {
    padding: 80px 0 80px;
}
.m_contact_heading {
    display: block;
}
.d_contact_heading {
    display: none;
}
.details-col {
    padding-left: 0;
}
.info-box div {
    width: 85%;
}
.nav-menu { 
    width: 70%; 
}
.inner_icon_box {
    padding: 15px 10px;
    width: 48%;
}
.inner_icon_box span {
    display: block;
    font-size: 14px;
}
li.dropdown:hover ul.dropdown_list {
    display: none;
}

li.dropdown.active ul.dropdown_list {
    display: block;
}

ul.dropdown_list {
    position: static;
}
.pt-sm-3 {
    padding-top: 15px;;
}
.mt-sm-0 {
    margin-top: 0;
}
.flex-direction {
    flex-direction: column-reverse;
}
.cta_option .web-btn {
    text-align: center;
}

}
/* responsive end */

