@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;700;900&display=swap');


/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

:root {
  /* Primary Color */
  /*--primary-color: rgb(255, 111, 0);*/
  --primary-color: #87A922 ;

  --background-color : #0C359E;

  /* Background */
  --white-color: #ffffff; 

  /* Accent Gray */
  --heading-text: #000;

  /* Text and Secondary Elements */
  --text-color: #333;

  /* Divider Lines */
}



*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body{
  font-family: 'Lato', sans-serif;
  color: #333;
  font-size: 1.8rem;
   line-height: 1.6;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.bg-header{
  background-color: var(--background-color);
}


nav{
  height: 9rem;
}

.navbar-brand{
  font-size: 2.4rem;
}

.navbar-brand img2 {
  width: auto; /* maintain aspect ratio */
  height: 20px; /* adjust height as needed */
  max-width: 100px; /* ensure it doesn't overflow horizontally */
}

.nav-link:link , .nav-link:visited {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  display: inline-block;
}


.nav-link:hover , .nav-link:active{
  color: var(--primary-color);
}


.nav-link.cta {
  background-color: var(--primary-color);
  color: black;
  display: inline-block;
  padding: 0.5rem 2rem !important;
  border-radius: 4px;
}

.nav-link.cta:hover{
  color: white !important;
 background-color: var(--background-color);
}

.btn{
  color: #000 !important;;
}
.btn:hover{
  color: #fff !important;;
}
.btn2{
  color: #000;
}
.btn2:hover{
  background-color: var(--background-color);
  color: #fff;
}

.faq {
  font-size: 2.1rem;
  color: #000000;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

h1 {
  font-size: 5.2rem;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

h2{
  font-size: 4.4rem;
  line-height: 1.3;
}

.hero-section{
  padding: 3.2rem 0;
}
 .hero-section p{
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
}


.btn{
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 24px;
  font-size: 1.8rem;
  border-radius: 4px;
}

.hero-img{
  width: 90%;
  height: 20%;
}

.card-title{
  font-size: 1.8rem;
  font-weight: bold;
}

.card-text {
  font-size: 1.6rem;
  color: #000;
  max-height: 8em; 
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease; 
}

.card-text.expanded {
  max-height: none;
}
.more-btn {
  cursor: pointer;
  color: blue;
  text-decoration: underline;
  display: block;
  margin-top: 10px;
}

.sub-section{
  padding: 3.2rem 0;
}
 .sub-section p{
  font-size: 2.8rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.sub-head {
  font-size: 2.8rem;
  color: #4054f0;
  line-height: 1.7;
  letter-spacing: 0.3px;
  position: relative;
  display: inline-block;
}

.sub-head::after {
  content: '';
  position: absolute;
  bottom: -2px; 
  left: 5%; 
  width: 90%;
  height: 2px;
  background: #b240f0;
  z-index: 1;
}

.sub-head span {
  color: #000000;
  position: relative;
}


.sub-section p3{
  font-size: 2.1rem;
  color: #000000;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.sub-section p4{
  font-weight: bold;
  font-size: 2.8rem;
  color: #000000;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.sub-section .underline-text {
  border-bottom: 7px solid #87A922; 
  color: #000;
}

.how-it-works-title{
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.how-it-works-text{
  font-size: 1.8rem;
  color: #333;
  line-height: 1.7;
}

.icon{
  width: 1.8rem;
  height: 1.8rem;
  padding: 1.2rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  margin-bottom: 1.6rem;
}

.how-it-works{
  padding: 2.4rem 0;
}

.testimonials{
  padding: 5rem 0;
  background-color: var(--background-color);
}

.testimonial-text {
  color: #fff;
}

.testimonials-name{
  color: #fff;
}

.testimonial-card{
  width: 70%;
}

h3{
  font-size: 2.4rem;
}



 span.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='yellow' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  color: white;
}

/* change hamburger button border color */
 button.navbar-toggler {
  border-color: #fff;
}

/* change navbar background on collapse */
@media (max-width: 982px) {
  nav .navbar-nav {
    background-color: #048e7c74;
    padding: 2rem;
    backdrop-filter: blur(5px);
  }

  .hero-section{
    text-align: center;
    width: 100%;
  }
  h1{
    font-size: 4rem;
    margin-bottom: 1rem;
  }
}

.navbar-brand:hover{
  color: #048E7B ;
}

.copyright{
  font-size: 1.4rem;
  color: #777;
}

.f-label{
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.form-control {
  height: 52px;
  background: #fff;
  color: #000;
  font-size: 2.4rem;
  border-radius: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about{
  width: 100%;
  min-height: 70vh;
  display: grid;
  place-items: center;
  margin-bottom: 2.2rem;
} 

.about-row{
  width: 80%;
  max-width: 1170px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 50px 30px;
}

.about-row .left{
  overflow: hidden;
}

.about-row .left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.about-row .right{
  display: flex;
  align-items: center;
}

.about-row .right .content{
  padding-left: 20px;
}

.about-row .right .content p{
  font-size: 1.8rem;
  line-height: 1.7;
  padding-bottom: 15px;
}

.terms-title{
  font-size: 2.5rem;
  line-height: 1.7;
  padding-bottom: 15px;
  color: #000;
}
.terms-head-text{
  color: #000;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: bold;
  padding-bottom: 15px;
}
.terms-text{
  color: #000;
  font-size: 1.8rem;
  line-height: 1.7;
  padding-bottom: 15px;
}
.terms-text ul {
  list-style-type: disc;
  margin-left: 20px;
}

@media (max-width: 991px){
  .about-row .right .content{
    padding-left: 0px;
  }  
}
@media (max-width: 768px){
  .about-row{
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.alert{
  width: 100%;
  background-color: black;
  color: white;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  display: none;
}

.underline-text2 {
  color: #87A922;
  text-decoration: underline;
  text-decoration-color: #87A922;
}


.animated-text{
  font-size: 22px;
  font-weight: 500;
  min-width: 280px;
  color: #fff;
}

.about-row.right{
  display: flex;
  align-items: center;
}

.about-row.right .content{
  padding-left: 20px;
}

.project-counter-wrap{
  background-color: #fff
}

.project-counter-wrap ul{
  list-style-type: none;
  display: flex;
}

.project-counter-wrap ul li{
  width: 33.33%;
  height: 100%;
  padding: 30px 0px;
  text-align: center;
  transition: 0.2s linear;
}

.project-counter-wrap ul li:hover{
  transform: scale(1.1);
}

.project-counter-wrap ul li p.number{
  font-size: 40px;
  padding: 0;
  font-weight: bold;
}

.project-counter-wrap ul li p{
  color: rgb(255, 255, 255,0.8);
  font-size: 18px;
  margin: 0;
  padding: 10px;
}

.project-counter-wrap ul li span{
  width: 60px;
  background-color: rgb(255, 255, 255,0.8);
  height: 2px;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.project-counter-wrap ul li ion-icon{
  color: white;
  font-size: 50px;
  vertical-align: middle;
}

.pricing-table-area {
  padding: 70px 0;
  background: white;
}
.head-section-title {
  color: #fff;
  margin-bottom: 40px;
}
.head-section-title h2{
  color: #fff;
}
.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.section-title h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
.section-title {
  margin: 0;
  color: #fff;
}
.single-table {
  padding: 40px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
}
.single-table h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: #141f4e;
}
.single-table h2 {
  font-size: 50px;
  font-weight: 800;
  margin: 30px 0;
  color: #141f4e;
}
.single-table .title {
  text-decoration: underline;
  color: #141f4e;
}
.single-table h2 span {
  color: #777;
  font-size: 24px;
  font-weight: 400;
}
.single-table ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-table ul li {
  font-size: 16px;
  line-height: normal;
  text-align: start;
  font-weight: 400;
  padding-bottom: 10px;
  color: #141f4e;
}
.single-table a {
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #141f4e;
  border-radius: 3px;
  color: #141f4e;
  padding: 15px 30px;
  margin: 15px 0;
  display: inline-block;
  text-decoration: none;
}
.single-table a:hover {
  background-color: var(--background-color);
  color: #ffffff;
}
.single-table.popular {
  position: relative;
}
.popular-price {
  font-size: 14px;
  position: absolute;
  top: 25%;
  left: -30px;
  line-height: 1;
  color: #fff;
  background: #141f4e;
  margin-right: -5px;
  text-transform: uppercase;
  font-weight: 300;
  padding: 10px 20px;
  transform: rotate(-90deg);
}
p{
  line-height: normal;
}
.popular-price::before {
  width: 0;
  height: 0;
  position: absolute;
  content: "";
  border-right: 0px solid transparent;
  border-left: 10px solid #fff;
  border-bottom: 20px solid transparent;
  border-top: 18px solid transparent;
  top: 0;
  left: 0;
}
.single-table.popular a {
  background: #141f4e;
  color: #fff;
}
.single-table-title{
  color: #000;
  font-weight: bold;
  line-height: normal;
  font-size: 2.0rem;
}
.actual-price{
  color: #6e6d6d;
  line-height: normal;
  font-size: 1.5.0rem;
}



/*Pricing css*/
.price-head-section-title {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: bold;
  color: #000000;
  margin-top: 30px; /* Example margin top */
}

.section-description {
  color: #000000;
  padding: 0 20px; /* Example padding */
}

.session-link {
  color: #007bff; 
  font-size: 1.4rem;
  text-decoration: none;
  padding: 5px 10px;
}

.session-link:hover {
  text-decoration: underline;
}

.container p.d-inline-flex a.faq{
  line-height: 1.2; 
}
.container div.collapse div.card{
  line-height: 1.2; 
}

.sub-section-faq{
  padding: 3.2rem 0;
  background-color: #f4f4f4;
}





.col-megamenu .title {
  font-size: 1.6rem;
  font-weight: bold;
  color: rgb(0, 0, 0); 
}
.col-megamenu ul.list-unstyled {
  padding-left: 0; 
}

.col-megamenu ul.list-unstyled li a {
  font-size: 1.6rem;
  color: rgb(93, 89, 89); 
  text-decoration: none; 
}

.col-megamenu ul.list-unstyled li a:hover {
  font-size: 1.6rem;
  color: black;
  text-decoration: underline;
}

.mtitle b{
  font-size: 1.6rem;
  color: blue; 
}

.navbar .megamenu{ padding: 1rem; }
/* ============ desktop view ============ */
@media all and (min-width: 992px) {

.navbar .has-megamenu{position:static!important;}
.navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }

}	
/* ============ desktop view .end// ============ */


/* ============ mobile view ============ */
@media(max-width: 991px){
.navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
  overflow-y: auto;
    max-height: 90vh;
    margin-top:10px;
}
}


/* Style for the dialog */
dialog {
  width: 70%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Ensure the dialog is always centered */
dialog::backdrop {
  background: rgba(0, 0, 0, 0.5); /* Dim the background */
}

#closeDialogBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1px; /* Centers the 'x' inside the button */
  text-align: center;
}

#openPaymentDialog:hover{
  color: white !important;
  background-color: var(--background-color);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  border-radius: 50%;
  padding: 10px;
  z-index: 1000; 
  transition: all 0.3s ease;
}

.whatsapp-button .icon {
  background-color: green;
  color: #fff;
  font-size: 24px;
}

.whatsapp-button:hover {
  color: #1ebe57;
  transform: scale(1.1);
}
