/* Varialbes */
:root {
	--font-default: 'Manrope', sans-serif;
	--font-heading: 'Manrope', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #171827;
	--white: #ffffff;
	--color-primary: #015FC9;
	--color-secondary: #25cdc7;
	--color-style-five: #05be8a;
	--color-heading: #04000b;
	--color-paragraph: #666666;
	--main: #009fd4;
	--border-radius: 3rem;
	--border-hover: transparent;
	--footer: #DDD;

}

::selection{
	background-color: var(--main);
	color: black;
}

.active-color{
    color: var(--main) !important;
    text-decoration: 3px underline;
}


/* ============================================================== 
     # Reset Browsers
=================================================================== */

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

body,
html {
	height: 100%;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

.color-style-five a:hover {
	color: var(--color-secondary);
}

.secondary a:hover {
	color: var(--color-primary);
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	min-height: 50px;
}

input:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

select:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

ul {
	list-style-type: none;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}


/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
	font-family: var(--font-default);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	overflow-x: hidden;
	background-color: var(--white);
	color: var(--color-paragraph);
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Inter Tight", sans-serif;
}

a, .btn, button {
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	outline: medium none;
	text-decoration: none;
	font-weight: 700;
}

p {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
}

.bg-dark {
	background-color: var(--dark) !important;
}

.color-style-five .bg-theme {
	background-color: var(--color-secondary);
}

.text-light {
	color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
	color: var(--white);
}

.title {
	font-weight: 800;
	font-size: 50px;
}

@media (max-width: 767px) {
	.title {
		font-size: 36px;
		margin-top: 0;
	}
}

.bg-dark .title {
	color: var(--white);
}


button {
	display: inline-block;
	font-weight: 700;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 7px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	font-size: 16px;
	letter-spacing: 0;
	padding: 14px 40px;
	background: #E7EDF8;
	position: relative;
	z-index: 1;
	color: var(--white);
	border: none;
	background: var(--color-primary);
}

.color-style-five button {
	background: var(--color-secondary);
}

button i {
	margin-right: 4px;
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
	color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
	color: var(--white);
}

.scroll-top {
	width: 50px;
	height: 50px;
	line-height: 50px;
	position: fixed;
	bottom: 105%;
	right: 25px;
	font-size: 24px;
	z-index: 99;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	transition: 1s ease;
	border-radius: 50%;
  }
  
  .scroll-top:hover{
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  }
  
  .scroll-top.open {
	bottom: 100px;
  }
  
  .scroll-top i{
	color: #fff;
  }

.scroll-top{
	background: var(--main);
}

/*-- ==================== Banner Section  ====================== --*/

.banner{
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.048), #131112), url(../images/banner.webp);
    background-size: cover;
    background-position: center;
    height:40vh;
    display: grid;
    place-items: center;
  }
  
  .banner h2{
    font-size: clamp(27px, 3vw, 120px);
    color: white;
    font-weight: 700;
  }
  
  .banner p{
    color: var(--white);
  }
  
  .banner a{
    color: var(--white);
  }
  

  /*-- =====================   FAQ Section ====================== --*/

  .faq{
    background-image: url(../images/bg-shape-8.webp);
    background-size: cover;
    background-position: center;
  }

.faq .heading h5{
	background-color: var(--main);
	color: var(--white);
	font-weight: 700;
	padding: 7px 18px;
	display: inline-block;
	border-radius: 50px;
	font-size: 18px;
}

.faq .heading h1{
	font-size: clamp(30px, 2.6vw, 120px);
	color: var(--black);
	font-weight: 600;
}

.faq .section-title h5 {
    text-decoration: underline;
    text-decoration-color: var(--main);
}

.faq .section-title p {
    color: var(--black);
    font-weight: 500;
}

.faq .section-title h2 {
    font-size: clamp(30px, 3vw, 120px);
}

.faq .section-title h2 span {
    color: var(--main);
}

.faq .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
    border-radius: 30px 0px 30px 0 !important;
    border: none;
}

.faq .accordion-header button {
    font-size: 18px;
}

@media(max-width:525px){
.faq .accordion-header button {
    font-size: 16px;
}
}
.faq .accordion-body p {
    color: var(--black);
}

.faq .accordion-item {
    border-radius: 10px;
    overflow: hidden;
}

.faq .accordion-button {
    padding: 1.5rem 1.25rem;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--black) !important;
    background-color: var(--white) !important;
    font-weight: 700;
    border-bottom: 1px solid var(--black);
}

.faq .accordion-button:focus {
    box-shadow: 0 0 0 .25rem #FFF !important;
}

.faq.accordion-item span {
    width: 45px;
    height: 45px;
}

.faq .accordion-item i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50px;
    background: var(--main);
    text-align: center;
    color: var(--white);
}

.accordion-button::after {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%230c63e4"><path fill="none" stroke="black" stroke-width="2" d="M8 1v14M1 8h14"/></svg>');
    background-size: 1rem 1rem;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    transition: transform 0.2s ease, background-image 0.2s ease;
    color: var(--main) !important; 
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor"><path fill="none" stroke="currentColor" stroke-width="2" d="M2 8h12"/></svg>');
}

/* Change the icon color dynamically on hover */
.accordion-button:hover::after {
    color: var(--main); 
}


/*-- =================  About Section ================== --*/



.about-sec .container .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Image Section */
.image-container {
    flex: 1;
    min-width: 45%;
    position: relative;
}

.image-wrapper {
    position: relative;
}

.about-sec .image-container .anchor a:hover{
    background-color: var(--main);
    color: var(--white);
  }
  
  .about-sec .image-container .about-img{
    width: 90%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
  }
  .about-sec .image-container .about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;
  }
  .about-sec .image-container .about-img:hover img{
     transform: scale(1.2);
  }
 

.experience-box {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background-color: var(--main);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.experience-content {
    display: flex;
    align-items: center;
}

.experience-box .icon {
    width: 40px;
    margin-right: 10px;
}

.experience-box h4 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

/* Content Section */
.content-container {
    flex: 1;
    min-width: 45%;
    padding: 20px;
}

.section-title .sub-title {
    font-size: 16px;
    color: #007bff;
    font-weight: bold;
    text-transform: uppercase;
}

.section-title h2 {
    /* font-size: 28px; */
    font-weight: bold;
    margin: 10px 0;
    color: #333;
    font-size: calc(1.425rem + 1.3vw);
    font-family: "Plus Jakarta Sans", serif;
}

.highlight-text {
    font-size: 18px;
    color: var(--main);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid black;
}

.feature-box {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 45%;
}

.feature-box img {
    width: 50px;
    margin-right: 10px;
}

.feature-box h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 800;
    font-family: "Plus Jakarta Sans", serif;
}

/* Description */
.description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Contact Box */
.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    background-color: var(--main);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info i {
    background-color: var(--main);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
}

.contact-info span {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    font-family: "Plus Jakarta Sans", serif;
}

.contact-info h5 a{
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 800;
    text-decoration: underline !important;
}

.contact-info h5 a:hover{
    color: var(--main);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-sec .row {
        flex-direction: column;
    }
    .image-container, .content-container {
        min-width: 100%;
    }
    .experience-box {
        bottom: 10px;
        left: 25px;
        padding: 10px;
    }
    .experience-box h4 {
        font-size: 16px;
    }
    .about-sec .image-container .about-img{
        width: 100%;
    }

}

@media (max-width: 576px) {
    .features {
        flex-direction: column;
    }
    .feature-box {
        min-width: 100%;
    }
    .contact-box {
        flex-direction: column;
    }

    .contact-box {
        display: block;
    }
    .contact-info{
        margin-top: 20px;
    }
    br{
        display: none;
    }
}

.about-sec .content-container .sub-title{
    background-color: var(--main);
	color: var(--white);
	font-weight: 700;
	padding: 7px 18px;
	display: inline-block;
	border-radius: 50px;
	font-size: 18px;
}

.highlight-text{
    font-weight: 700;
}



.about-sec .common-btn{
	background-color: var(--white);
	padding: 10px 18px;
	color: var(--black);
	border-radius: 50px;
	font-size: 20px;
	overflow: hidden;
	box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.coolBeans {
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-decoration: none;
    transition: transform 1s ease-in-out, border-color 0.5s ease-in-out, color 0.5s ease-in-out;
    will-change: transform, border-color, color;
    background-color: none;
    z-index: 0;
  
    &::after {
      background-color: var(--black);
      border-radius: var(--border-radius);
      content: '';
      display: block;
      height: 100%;
      width: 100%;
      position: absolute;
      left: 0;
      top: 0;
      transform: translate(-100%, 0) rotate(10deg);
      transform-origin: top left;
      transition: transform 0.4s ease-out;
      will-change: transform;
      z-index: -1;
    }
  
    &:hover::after {
      overflow: hidden;
      transform: translate(0, 0);
    }
  
    &:hover {
      color: var(--white);
      transform: scale(1.05);
      will-change: transform, border-color, color;
    }
  }



  /*-- =================  Counter CSS HERE =================== --*/
.counter-up {
    position: relative;
    z-index: 1;
    padding: 2% 0px;
}

.counter-up::before {
    content: "";
    position: absolute;
    background: var(--black);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: -1;
}

#counterr .item {
    border-radius: 10px;
    height: auto;
    display: grid;
    place-items: center;
}

#counterr .item .count {
    color: var(--white);
    margin-bottom: 5px;
}

#counterr .item h3 {
    color: var(--white);
    text-transform: capitalize;
}

.counter-up .image {
    position: relative;
    text-align: center;
    font-size: 60px;
    width: 100px;
    height: 100px;
    line-height: 88px;
    color: var();
    background: var(--white);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
    display: grid;
    place-items: center;
}

.counter-up .image::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 4px solid var(--main);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.counter-up .image img {
    width: 60px;
}

/* .counter-up h1 {
    font-size: 30px;
} */

.counter-up .item .odometer {
    font-size: 40px;
    font-weight: bold;
    color: var(--white);
    display: inline-block;
}

.odometer.plus {
    position: relative;
}

.odometer.plus::after {
    content: "+";
    position: absolute;
    top: 20px;
    right: -16px;
    font-size: 20px;
}

.counter-up .item .type {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

@media(max-width:991px){
    .counter-up .item .odometer{
        font-size: 30px;
        margin-top: 12px;
    }
    
.counter-up .item .type{
    font-size: 18px;
}
}
