/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800&display=swap');

*{
	margin: 0;
	padding: 0;
}

:root {
    --primary: #094f5f;
    --light: #fff;
    --dark: #000;
	--secondary: #8080807d;
    
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}
.container{
	max-width: 1200px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
  border-bottom: 1px solid #cec7c74a;
    position: absolute;
    top: 0;
    padding: 20px 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #000 !important;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #000 !important;
    padding: 12px 0; /* smooth shrinking effect */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* soft shadow */
    animation: slideDown 0.4s ease;
}

/* Slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .nav > li {
  position: relative;
}

.btn-primary{
	background: var(--primary);
    padding: 12px 15px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
	border: 1px solid var(--primary);
}

.btn-nav{
	background: var(--primary);
    padding: 12px 15px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
	border: 1px solid var(--primary);
	text-transform: uppercase;
}

.btn-nav:hover{
	background: transparent;
	border: 1px solid #fff;
	color: #fff !important;
}

.btn-primary:hover{
	background: transparent;
	border: 1px solid var(--primary);
	color: var(--primary) !important;
}

.wpcf7-submit {
    background: var(--primary);
    padding: 8px 30px;
    color: #fff !important;
    text-decoration: none;
    /* border-radius: 30px; */
    font-weight: 600;
    border: none;
}

.site-header .nav > li > a {
  color: #fff !important;
    text-decoration: none;
    padding: 8px 10px;
    font-weight: 500 !important;
    text-transform: uppercase;
    transition: all 0.3s 
ease;
    display: inline-block;
    font-size: 15px;
}

.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
	border-bottom: 1px solid #fff;
}

/* Dropdowns */
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}

.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}

.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}

/* Show dropdown on hover */
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}

/* Align submenu to parent */
.site-header .nav li ul.sub-menu li {
  position: relative;
}

/* Sub-sub menus (flyouts) */
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .site-header .nav {
    display: none; /* hidden, mobile uses side menu */
  }
}
.logo a{
	text-decoration: none;
}

.logo a h2 {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    width: 50%;
    font-style: oblique;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}

.mobile-menu strong{
	color: #000;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 12px 0px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

#mobileMenuBtn{
	margin: 0 30px;
}

/* FOOTER SECTION CSS */
footer{
	background: #000;
	color: #fff;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}

.footer a{
	color: #fff !important;
}

.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}
.footertop-cnt p {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
    
}
.footer_menu {
    padding: 40px 0 0 0;
}

.footer-details li {
    display: flex;
    position: relative;
    line-height: 40px;
    align-items: baseline;
    gap: 15px;
}

ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}

footer ul li.menu-item a {
  	line-height: 40px;
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}

footer h3 {

    margin-bottom: 18px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}

a{
	color: #fff !important;
}

footer .menu li{
	padding-left: 0 !important;
	color: #fff !important;
	  transition: transform 0.3s ease
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}

footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}

footer .social-icons {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
}

footer .social-icons a:hover{
	background: var(--primary);
}

footer .social-icons a {
    display: flex;
    padding: 3px;
    text-decoration: none;
    color: var(--light);
    background-color: #bcc6cc;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    align-items: center;
    height: 40px;
    width: 40px;
    justify-content: center;
}

footer .social-icons i {
    padding: 0 10px;
}

footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 200;
    position: relative;
	width: 90%;
    text-decoration: none;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}

footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
/* Scroll To Top Button */
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

#GoToTop i{
	color: #fff;
}

#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}

#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}

#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}

@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

#whatsappbtn img {
    width: 30px;
}

.logo{
	
    padding: 5px 0;
    border-radius: 10px;
}

.hm-title-bgbox h2 {
    color: #fff;
    font-size: 38px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}
.contact-btom-img{
	position: relative;
}
.overlay1{
    background-color: #c6d5ee;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    position: absolute;
}
.contact-btom-img img{
	height: 100%;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
}
section{
	padding: 60px 0 30px;
}
/* Hero Section */
.hero{
/* 	background: url(https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/11/hero-bg.webp); */
	background: url(https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/12/banner-bg.png);
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 0;
	margin-top: 2rem;
	position: relative;
}

.hero-content{
	color: #fff !important;
}

.banner-img {
    position: absolute;
    bottom: 0;
    width: 60%;
    right: 0;
    height: auto;
}

.hero .hero-content h1 span{
	font-size: 80px;
	font-weight: 400;
}

.hero .hero-content ul{
	gap: 12px;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
}

.hero .hero-content ul li{
	display: flex;
    width: 100%;
    font-weight: 400;
}

.hero .hero-content ul li::before{
	content: url(https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/11/tick.png);
    margin-right: 12px;
}


/* Business Section */
.business{
	background: url(https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/11/business-bg.png);
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.business .energy{
	width: 80%;
	margin: auto;
}

.business .energy h1{
	text-align: center;
	margin-bottom: 2rem;
	font-weight: 700;
}

.business .energy h1 span{
	color: var(--primary);
	display: block;
}

.business .energy p span{
	color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    display: block;
}
.business .energy-main-box{
	padding: 20px;
    box-shadow: 0 0 10px 0 #80808070;
    background: #fff;
    border-radius: 8px;
	display: flex;
	gap: 20px;
}

.business .energy-main-box img{
	height: 20px;
	width: 20px;
}

.primary-box{
	display: flex;
    justify-content: center;
    align-items: center;
	margin: 4rem 0 0;
}

/* Success Section css */
.success-inner{
	width: 80%;
	margin: auto;
}
.success h4{
	text-align: center;
}

.success-queat {
    display: flex;
    border-top: 1px solid #80808066;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #80808066;
    padding: 30px 0;
    margin: 50px 0 0;
}

.sucess-img img {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.success-content img{
	width: 10%;
}

.success-content ul li{
	color: var(--primary);
    font-weight: 700;
    font-size: 20px;
	padding: 10px 0;
}

/* Transformations Section */
.transformations{
	padding: 40px 0 30px;
}
.transform-card {
    flex: 1;
    height: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
	padding-top: 65px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 5px 40px rgba(90, 90, 150, 0.2);
    position: relative;
    transition: 0.3s;
}

.transformations-heading{
	width: 75%;
    margin: 0px auto 7rem;
    font-size: 30px;
    font-weight: 700;
}

.transformations-heading span{
	color: var(--primary);
}

.transform-card:hover {
    transform: translateY(-6px);
}

.transform-card h3 {
    font-size: 25px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

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

.transform-card ul li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.transform-card ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 16px;
}

.transformations{
	position: relative;
}

.session {
    position: absolute;
    top: 26%;
    left: 50%;
	transform: translate(-50%, -50%);
    height: 150px;
    width: 150px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    z-index: 1;
	font-size: 16px;
}

.session p span{
	font-size: 18px;
	font-weight: 700;
	display: block;
}

/* Framework section */
.framework{
	background: linear-gradient(180deg, #ffffff, #1c7ba526);
    clip-path: polygon(50% 0%, 100% 0, 100% 35%, 100% 70%, 100% 100%, 50% 94%, 0 100%, 0% 50%, 0% 35%, 0 0);
	padding-bottom: 100px;

}

.underline{
	background: var(--primary);
	height: 3px;
	width: 80px;
	margin: auto;
	margin-bottom: 2rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.timeline-item {
    width: 50%;
    padding: 20px 30px;
    position: relative;
}

.timeline-item.left {
    text-align: right;
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.circle {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    left: calc(50% - 22px);
    top: 80px;
    z-index: 10;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0px 4px 20px #0001;
    border-left: 5px solid var(--primary);
}

.left .box{
	border-right: 5px solid var(--primary);
	border-left: 0;
}
.box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.box p {
    margin: 0;
    color: #444;
}
iframe{
	border-radius: 8px;
	box-shadow: 0 0 6px 0 #80808047;
}
/* Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    .circle {
        left: 8px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 70px;
    }
}

/* Overcome */

.overcome{
	background: url(https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/11/overcome-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.overcome-inner{
	padding: 35px;
    background: #fff;
    box-shadow: 0 0 10px 0 #c1baba;
    border-radius: 10px;
}
.overcome-inner h3{
	font-size: 40px;
    line-height: 52px;
    padding-bottom: 24px;
    font-weight: 600;
    color: #171717;
}
.overcome-inner ul,
.book-content ul{
	padding-left: 0;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.overcome-inner ul li,
.book-content ul li{
        color: #505050;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    width: 100%;
    list-style: none;
    display: flex;
    align-items: baseline;
}

.overcome-inner ul li strong,
.book-content ul li strong{
	display: contents;
    font-weight: 700;
}

.overcome-inner ul li::before ,
.book-content ul li::before{
    content: url(https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/11/tick.png);
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

/* Testimonial Section Css */

.testimonial-section{
    background: url('https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/11/testimonial-bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
}

.testimonial-section::before{
    content:"";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* overlay */
}

.testimonial-content{
    position: relative;
    z-index: 2;
}

/* Testimonial Card */
.testimonial-box{
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.testimonial-box h4{
    font-weight: 700;
	text-align: center;
    margin-bottom: 15px;
}

.testimonial-box p{
    color: #333;
    font-size: 16px;
    line-height: 26px;
}

.client-info{
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-info img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info .name{
    font-weight: 700;
    font-size: 16px;
}

.client-info .role{
    font-size: 14px;
    color: #666;
}

.testimonial-img{
	display: flex;
	align-items: center;
    justify-content: center;
}

.testimonial-img img{
	width: 25%;
	margin-bottom: 2rem;
}

/* Meet Sachin Raj */
.meet{
	background: url(https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/11/business-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.meet h1{
	font-size: 35px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 2rem;
}

.meet h1 span{
	display: block;
	color: var(--primary);
}

.meet .about{
	margin-top: 2rem;
}

.meet .about h5{
	color: var(--primary);
	font-weight: 700;
}

.meet-img-container{
	display: flex;
	align-items: center;
	justify-content: center;
}

.meet-img-container img{
	border-radius: 10px;
	height: 500px;
}

/* Book Section css */
.book{
    background: #E8E8E4;
    padding: 40px;
    margin-bottom: -230px;
    box-shadow: 0 0 16px 0 #808080d1;
    z-index: 3;
    position: relative;
}

.book .book-content h1{
	font-weight: 700;
	font-size: 35px;
}

.book .book-content h1 span{
	display: block;
    color: var(--primary);
    margin-bottom: 1rem;
}

.book img{
	height: 500px;
    width: 100%;
    object-fit: contain;
}

/* Book Testimonial css */

.book-testimonial-section {
    background: #000;
   	padding-top: 260px;
}

.book-testimonial-section .container {
    position: relative;
    z-index: 2;
}

.book-testimonial-section .testimonial-box {
    background: transparent;
    padding: 30px 20px;
    color: #fff;
    text-align: center;
}

.book-testimonial-section .stars i {
    color: #f0a500;
    font-size: 20px;
    margin: 0 2px;
}

.book-testimonial-section .client-name {
    margin-top: 25px;
    font-weight: 700;
    font-size: 18px;
}

.book-testimonial-section .client-role {
    font-size: 14px;
    opacity: 0.8;
}

/* Strategy Session css */

.strategy .strategy-inner h1{
	text-align: center;
    font-size: 40px;
    font-weight: 700;
}

.strategy .strategy-inner h1 span{
	color: var(--primary);
}

.strategy ul{
	padding-left: 0;
    gap: 32px;
    display: flex;
    flex-wrap: wrap;
}

.strategy ul li{
	color: #505050;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    list-style: none;
    display: flex;
    align-items: flex-start;
}

.strategy ul li::before{
	content: url(https://webzensys.com/work/becomingbusinessbuddha.com/wp-content/uploads/2025/11/tick.png);
    margin-right: 12px;
    width: 43px;
    height: 43px;
}

.strategy ul li strong{
	display: contents;
}

.strategy h5{
	color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Real estate css */

.business-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 25px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    position: relative;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.business-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: : var(--primary);
}

.business-card p {
    font-size: 16px;
    color: #444;
}

.cta-box {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.cta-box a {
    text-decoration: none;
    font-weight: 600;
	line-height: 30px;
    color: var(--primary) !important;
}

.cta-box .btn-primary{
	display: inline-block;	
	color: #fff !important;
	padding: 5px 15px;
}
.cta-box .btn-primary:hover{
	color: var(--primary) !important;
}
.cta-box span {
    color: #000;
}

.icon-badge {
    width: 70px;
    height: 70px;
    padding: 12px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 14px; */
    position: absolute;
    top: -35px;
    right: 20px;
}

.icon-badge img{
    filter: invert(1);
}

.business-section h2 span{
	color: var(--primary);
}

/* Contact Section */


        .form-box {
            background: #f5f5f5;
            border: 1px solid #e5e5e5;
            padding: 16px 20px;
            border-radius: 6px;                 
            font-size: 16px;
        }

.form-box p{
	 display: flex;
      align-items: flex-start;
	  gap: 15px;
	margin: 0;
}
        .form-box i {
            font-size: 22px;
            color: #555;
        }

        .form-box input,
        .form-box textarea {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            font-size: 16px;
        }

        .form-box textarea {
            height: 130px;
            resize: none;
        }

        .submit-btn {
            background: #0b6655;
            color: #fff;
            border: none;
            padding: 12px 25px;
            font-size: 17px;
            border-radius: 5px;
            margin-top: 10px;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background: #094e43;
        }

/* Responsive */

@media (max-width: 1199px){
	.hero .hero-content h1 span{
		font-size: 70px;
	}
	
	.btn-nav{
		padding: 12px 15px;
		color: #fff !important;
		text-decoration: none;
		font-weight: 600;
		border: 1px solid #fff;
		display: inline-block;
		margin-top: 1rem;	
	}
}

@media (max-width: 1024px){
	.hero .col-md-7{
		width: 100%;
	}
	.hero .hero-content ul{
		padding: 0;
	}
	
	.banner-img{
		width: 70%;
	}
	
	.hero .hero-content h1 span{
		font-size: 60px;
	}
	
	.hero .hero-content h1{
		font-size: 30px;
	}
}

@media (max-width: 991px){
	.book .book-content h1{
		font-size: 30px;
	}
	
	.business-section .row{
		    justify-content: center;
	}
	
	.business-card h4{
		font-size: 20px;
	}

	.banner-img{
		position: relative;
	}
	
	.hero{
		height: auto;
	}
	.hero-content{
		padding-top: 4rem;
	}
	
	.banner-img {
        width: 100%;
    }
	
}

@media (max-width: 767px){
	.session{
		top: 48%;
	}
	
	section {
		padding: 40px 0 20px;
	}
	
	.success-queat{
		flex-direction: column;
		gap: 25px;
	}
	
	.transform-card{
		padding: 50px 30px;
		height: auto;
	}
	.strategy ul li{
		font-size: 16px;
	}
	
	.strategy ul{
		gap: 20px;
	}
	
	.business-card{
		height: auto;
	}
	
	.left .box {
		border-right: 0;
		border-left: 5px solid var(--primary);
	}
	
	.overcome-inner img{
		border-radius: 10px;
	}
	
	.meet h1{
		font-size: 25px;
	}
	
	.testimonial-img img{
		width: 10%;
	}
	.book .book-content h1 {
        font-size: 25px;
    }
	
	.business .energy h1{
		font-size: 25px;
	}
	
	.book-testimonial-section .client-name{
		margin-top: 0px;
	}
	.book-testimonial-section .testimonial-box{
		padding: 15px 20px;
	}
	
	.strategy .strategy-inner h1 {
		font-size: 30px;
	}
	
	.transformations-heading {
		width: 100%;
		font-size: 28px;
		font-weight: 700;
		margin-bottom: 2rem;
	}
}

@media(max-width: 667px){
	.hero .hero-content h1 span {
        font-size: 60px;
    }
	
	.transformations-heading {
    	font-size: 26px;	
	}
	
	.hero-content h1{
		font-size: 30px;
	}
	
	.book .book-content h1 {
        font-size: 22px;
    }
}

@media(max-width: 568px){
	.hero-content h1 {
        font-size: 25px;
    }
	.hero .hero-content h1 span {
        font-size: 50px;
    }
	
	.book .book-content h1 {
        font-size: 20px;
    }
	.business-card h4 {
        font-size: 16px;
		width: 70%;
    }
	.meet-img-container img{
		height: auto;
	}
	
	.session {
        top: 50%;
    }
	
}

@media (max-width: 479px){
	.business .energy h1 {
        font-size: 18px;
    }
	.business .energy p span{
		font-size: 16px;
	}
	.success-inner{
		width: 100%;
	}
	.strategy .strategy-inner h1 {
        font-size: 22px;
    }
	
	.framework {
		clip-path: polygon(50% 0%, 100% 0, 100% 35%, 100% 70%, 100% 100%, 50% 98%, 0 100%, 0% 50%, 0% 35%, 0 0);
		padding-bottom: 80px;
	}
	
	.business .energy{
		width: 90%;
	}
	#mobileMenuBtn {
		margin: 0px 15px;
	}
	
	.overcome-inner h3 {
		font-size: 25px;
		line-height: 40px;
	}
}

@media (max-width: 414px){
	.hero .hero-content h1 span {
        font-size: 40px;
    }
	
	.transform-card {
        padding: 50px 15px;
	}
	.hero-content h1 {
        font-size: 20px;
    }
	.box h3{
		font-size: 18px;
	}
	
	.circle {
		width: 40px;
		height: 40px;
	}
	.testimonial-section{
		padding: 30px 0;
	}
	.overcome-inner {
    	padding: 20px;
	}
	
  .transformations-heading {
        font-size: 23px;
    }
	.session {
        top: 48%;
    }
	
	iframe{
		height: 350px !important;
	}
	
}

@media (max-width: 360px){
	.hero .hero-content h1 span {
        font-size: 32px;
    }
	
	.session {
		height: 130px;
		width: 130px;
		padding: 8px;
	}
}

@media (max-width: 325px){
	.business .energy h1 {
        font-size: 16px;
    }
	
	.hero .hero-content ul{
		display: none;
	}
	
	    .transformations-heading {
        font-size: 18px;
    }
	
	.transform-card h3 {
    font-size: 20px;
	}
}