
/* 1 General */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding:0;
}
:root{
    

    /* Text Color */
    --text-black:#000;
    --text-white:#fff;
    --text-dark-gray:#4c535d; 
    --text-light-2:#798089;
    --text-light-3:#5e5e72;
    --text-light-4:#A0A0A0;
    --text-dark-green:#12c4a0;
    --text-orange:#ff5d2a;
    --text-yellow:#ffc100;
    --background-color: #fe6d6a;

    /* Fonts */
    --primary-font: Quicksand;
    --secondary-font: 'Poppins', sans-serif;
    --normal-font-weight:400;
    --bold-font-weight:700;
}

html{
  font-size: 62.5%;
}

body{
    font-family:var(--primary-font);
    font-weight: var(--normal-font-weight);
    background-color: var(--bg-white); 
}

p {
  font-size: 1.5rem;
}

/* Custom CSS */
.learn-more-btn { 
    background-color:#fe6d6a;
    font-size: 18px; 
    font-weight: 700;
    color: var(--text-white) !important;
    padding: 12px 29px !important;
    border-radius:20px;
    /*
    border: 2px solid var(--bg-black);
    /*
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%); 
    */
    display: inline-block;
    text-decoration: none;
    transition: 0.7s;
}
.btn-extra-header {
    color: var(--text-dark-gray) !important;
    background-color: transparent; 
    border: 2px solid var(--text-dark-gray);
} 


/* 2 Navbar */
.header_wrapper .navbar{
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    background-color: white;
}
.header_wrapper .navbar-brand img{
    padding:0px 62px;
    max-width:330px;
    height:auto;  
}
.header_wrapper .menu-navbar-nav{
    width: 70%;
    display: flex;
    justify-content: center;
}   

.header_wrapper .nav-item{
    margin:0 10px;
}
.header_wrapper .nav-item .nav-link{
    font-weight: var(--bold-font-weight);
    font-size: 18px;
    color: var(--text-dark-gray);
    line-height: 1;
} 
.header_wrapper .nav-item .nav-link.active{
    color:#fe6d6a;
}
.header-scrolled {
    position: fixed;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background:var(--bg-white);
    -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, .05);
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, .05);
}

@keyframes animated {
    0% {
        width:210px;
    }
    50% {
        width:200px;
    }
    100% {
        width:190px;
    }
}
.header-scrolled .nav-item .nav-link{
    font-size: 17px; 
}

/* 3 Banner */
.banner_wrapper{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    padding: 125px 0 125px;
    background: url("../images/bg.02e620d1e1bc.png") no-repeat;
    background-size: cover; 
    justify-content:space-betwen;
    align-items: center;
}

.banner_wrapper .banner-title {
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size:32px;
    text-transform: capitalize;
    line-height: 1.15;
    margin-bottom:10px;
    color: var(--text-black);
}
.banner_wrapper .banner-title span {
    color: var(--text-dark-green);
}
.banner_wrapper .banner-title-text { 
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 450px;
    color: var(--text-light-2);
    text-align: justify;
}
.banner_wrapper .learn-more-btn-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}
.banner_wrapper .header-img-section img {
    width: 100%;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(20px);
    }
    100% {
        transform: translatey(0px);
    }
}

/* 4 Client */
.clients{
    padding:0px 0 50px;
    background:var(--bg-light-2);
}
.clients h2{
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 25px;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 40px;
    color:#fe6d6a;
}
.client-slider-section .item{
    display:flex;
    justify-content: center;
    align-items: center;
    width:auto;
}
.client-slider-section img{
    width:auto !important;
    height:50px;
    object-fit: cover;
}


/* 5 About */
.about_wrapper{
    padding:100px 0 0; 
    margin-bottom: 10rem;
}
.about_wrapper .about_number{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 24px;
    padding: 4px 17px;
    border-radius: 10px;
    margin-bottom: 25px;
    max-width: 44px;
    color: var(--text-white);
    background-color: var(--bg-dark-green);
}
.about_wrapper .about_title {
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 25px;
    color:#fe6d6a;
    text-align: center;
}

.our_solutions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 10rem;
}

.our_solutions button {
  border: none;
  font-size: 15px;
  padding: 0.8rem;
  border-radius: 20px;
}

.sub_heading {
  font-weight: 600;
  margin-bottom: 20px;
}
.about_wrapper .about_text{ 
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    max-width: 700px;
    color:var(--text-light-2);
}
.about_wrapper .innovate{
    background:var(--bg-light-2);
    padding:80px 0; 
}
.about_wrapper .projects{
    padding:30px 0;
}
.about_wrapper .projects h2{
    color: var(--text-orange);
    font-family: Poppins;
    font-weight: 800;
    font-size: 50px;
    line-height: 1.5;
    margin-bottom:0;
}
.about_wrapper .projects p{ 
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5; 
    color:var(--text-light-2);
}
.about_features {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.about_features li {
    margin-bottom: 10px;
    font-size: 15px; /* Adjust size as needed */
    display: flex;
    /* align-items: center; */
    position: relative;
    text-align: left; 
}

.about_features i {
    color:#fe6d6a; /* Change color to match your design */
    /* margin-right: 10px; */
    position: absolute;
    top: 4px;
}
.about_features span{
    color:#fe6d6a; /* Change color to match your design */
    font-weight:600;
    /* margin-right:2px;   */
    margin-left: 30px;
}

/* 6 Features */

#section-service {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

#section-service .heading {
  text-align: center;
  margin-bottom:4rem;
}

#section-service .heading .subheading {
  color: var(--paragraph-color);
}

#section-service .heading .main-heading {

  max-width: 30%;
  margin: 1rem auto;
  font-size:22px;
  font-weight: bolder;
}

.services{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

 .features {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.services menu {
  display: grid;
  grid-template-columns: repeat(2, 0.4fr);
  gap: 3rem;
  margin-top: 4rem;
  
  & button{
    width: 60%;
    padding: 2rem;
    font-size: 4rem;
    border-radius: 2rem;
    border: none;
    color: var(--background-color);
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    
  }

  & .active-feature{
      background-color: var(--background-color) !important;
      color: #fff !important;
      box-shadow: none;
    }
  
  & button:hover{
    background-color: var(--background-color);
    color: #fff;
    opacity: 0.5;
  }
}

.service-right .service-details{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 4rem;
  
  & i{
    font-size: 4rem;
    color:#fe6d6a;
    margin-bottom: 2rem;
  }
  
  & h3{
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4rem
  }
  
  & .para{
    color: var(--paragraph-color);
    line-height: 1.2;
    text-align: justify;
  }
  
}


/** slider ***/
.slider {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

  .slide-btn {
  width: 40px;
  height: 0;
  border: 2px solid gray; 
  background-color: transparent; 
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

  .slide-btn.active-slide {
  border-color: red; 
}


/* 7 Pricing */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.pricing-container h1{
    color:#ff7675;
    text-align: center;
}


.toggle-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.toggle-btns button {
    border: none;
    padding: 10px 25px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 25px;
    background-color: #eaeaea;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1.5rem;
}

.toggle-btns .active {
    background-color: #ff7675;
    color: white;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Increased gap between cards */
    margin-top: 20px;
}

.pricing-card {
    background: white;
    border: 1px solid #ff7675; /* Added border color */
    border-radius: 25px;
    width: calc(25% - 15px); /* Adjusted width for four cards in a row on desktop */
    padding: 30px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Added box-sizing */
    position: relative;
    min-height:420px;
    display: flex; /* content arranged vertically */
    flex-direction: column; /* stack children vertically */
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    margin-bottom: 15px;
    color: #ff7675;
    font-size: 1.8em;
    font-weight: bold;
}

.pricing-card .price {
    position: relative;
    margin: 20px 0;
    font-size: 2.9em;
    color: #333;
    font-weight: bold;
}

.pricing-card .price sup {
    position: absolute;
    top:1em; /* Adjust this value to position the discount correctly */
    right: 0;
    font-size: 0.45em;
    color: #ff7675;
    border:2px solid #ff7675;
    border-radius: 10px;
    font-weight: 100;
    padding: 5px 5px;
}

.pricing-card .discount {
    font-size: 0.9em;
    color: #ff7675;
    margin-bottom: 10px;
    display: none; /* Hide the discount text if it's shown in the price */
}

.pricing-card .billing-info {
    font-size: 0.5em;
    color: #777;
    margin-bottom: 20px;
    margin-top: -10px;
    display: block;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: -10px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1.3em;
    color: black;
    position: relative;
    padding-left: 30px;
    font-weight:600;
}

.pricing-card ul li::before {
    content: '➔';
    position: absolute;
    left: 0;
    top: 0;
    background-color:white;
    color:black;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    border: 1px solid black;
}

.btn {
    background-color: #ff7675;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2rem;
    font-size: 1.5rem;
}

.btn:hover {
    background-color: #ff4a4a;
    box-shadow: 0 8px 15px rgba(255, 122, 122, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-card {
        width: calc(50% - 15px); /* Adjusted width for two cards in a row on medium screens */
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        margin-bottom: 20px; /* Added margin for better spacing */
    }
    
    footer .row .col {
       flex-basis: 100%;
    }

}

/* 8 Reviews */


/* 10 FAQs */
.faq_wrapper{
    padding:100px 0 0;
}
.faq_wrapper .faq_subtitle{ 
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--text-light-3);
}
.faq_wrapper .faq_title{
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 25px;
    color:#fe6d6a
}
.faq_wrapper .accordion-button:hover,
.faq_wrapper .accordion-button:focus{
    box-shadow: none;
    color:#fe6d6a;
}
.faq_wrapper .accordion-item{
    border:0;
}
.faq_wrapper .accordion-button{
    font-size: 17px;
    font-weight: 500;
    color: var(--text-black);
    background-color: var(--text-white);
    border-radius: 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid var(--text-light-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.faq_wrapper .accordion-button::after{
    content:'\002B';
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    display: inline-block;
    background-image: none;
}
.faq_wrapper .accordion-button:not(.collapsed)::after{
    content:"\2212";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    display: inline-block;
    background-image: none;
    transform:unset;
}
.faq_wrapper .accordion-body{
    color: var(--text-black); 
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 25px;
    line-height: 1.5; 
}




@media (max-width:1300px){
    /* 2 Navbar */
    .header_wrapper .menu-navbar-nav{
        width:auto;
    }
}

@media (max-width:1230px){
    /* 2 Navbar */
    .header_wrapper .nav-item{
        margin:0 5px;
    }
    .header_wrapper .learn-more-btn{
        padding:12px 10px !important;
    }

    /* 3 Banner */
    .banner_wrapper .banner-title {
        font-size: 50px;
    }
}

@media (max-width:1070px){
    /* 2 Navbar */
    .header_wrapper .nav-item .nav-link{
        font-size: 16px;
    }

    /* 5 About */
    .about_wrapper .about_title{
        font-size: 30px;
    }
}

@media (max-width:991px){
    /* 2 Navbar */
    .navbar {
      height: fit-content;
    }
    .header_wrapper .navbar-brand img{
        width:200px;
    }
    .header_wrapper .navbar-toggler:focus{ 
        box-shadow: none;
    }
    .header_wrapper .menu-navbar-nav{
        text-align: center;
    }
    .header_wrapper .nav-item .nav-link{
        margin-top:15px;
        font-size: 18px;
    }
    .header_wrapper .nav-item:last-child .nav-link{
        margin-bottom:20px;
    }
    .header_wrapper .learn-more-btn{
        padding:12px 29px !important;
    }
    .header_wrapper .navbar-collapse{
        background:var(--bg-white);
    }

    /* 3 Banner */
    .banner_wrapper .banner-title {
        font-size:24px;
    }

    /* 5 About */
    .about_wrapper .about_number{
        margin:20px auto;
    }
    .about_wrapper .about_title{
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    /* 3 Banner */
    .banner_wrapper{
        padding: 100px 0 100px;
    }
    .banner_wrapper .row{
        flex-direction: column-reverse;
    }
    .banner_wrapper .learn-more-btn-section{
        justify-content: center;
    }


    /* 10 FAQs */
    .faq_wrapper .accordion-button{
        font-size: 13px;
    }

    /* 11 Footer */
    .footer_wrapper .footer_logo img{
        max-width: 50%; 
    }
}  
/* =============== Testomonal SECTION =============== */
.custom-slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url("../images/bg.02e620d1e1bc.png") no-repeat;
}

.custom-testimonial-slider {
    width: 80%;
    max-width: 900px;
    text-align: center;
    background-color: #fff;
    padding:20px;
    border-radius: 10px;
    margin: 128px;
   
}

.custom-testimonial-slider h3 {
    font-size:28px;
    margin-bottom: 20px;
    font-weight: normal;
    color:#fe6d6a;
    font-weight: 800;
}

.custom-testimonial-slider h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.custom-testimonial-slider h2 span {
    color: #ff5c5c;
}

.custom-icon {
    font-size: 24px;
    color: #ff5c5c;
    margin-bottom: 20px;
}

.custom-testimonial-container {
    display: flex;
    overflow: hidden;
    position: relative;
}

.custom-testimonial {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.custom-testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
    font-weight: 700;
}

.custom-testimonial img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.custom-testimonial h4 {
    margin: 10px 0 5px;
    font-size: 18px;
    font-weight: bold;
}

.custom-testimonial span {
    font-size: 14px;
    color: #999;
}

.custom-dots {
    text-align: center;
    margin-top: 20px;
}

.custom-dot {
    height: 10px;
    width: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.custom-active {
    background-color: #ff5c5c;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-testimonial-slider {
        width: 90%;
        padding: 20px;
    }
    #section-service .heading {
        text-align: center;
        margin-bottom: 4rem;
        font-size: small;
    }
    .custom-testimonial-slider h3 {
        font-size: 16px;
    }

    .custom-testimonial-slider h2 {
        font-size: 20px;
    }

    .custom-testimonial p {
        font-size: 14px;
    }

    .custom-testimonial h4 {
        font-size: 16px;
    }

    .custom-testimonial img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .custom-testimonial-slider {
        width: 100%;
        padding: 15px;
    }

    #section-service .heading .main-heading {
      max-width: 100%;
    }

    .custom-testimonial-slider h3 {
        font-size: 14px;
    }

    .custom-testimonial-slider h2 {
        font-size: 18px;
    }

    .custom-testimonial p {
        font-size: 12px;
    }

    .custom-testimonial h4 {
        font-size: 14px;
    }

    .custom-testimonial img {
        width: 30px;
        height: 30px;
    }
}


/* =============== FOOTER SECTION =============== */
footer {
  width: 100%;  
  /*background: linear-gradient(to right, #00093c, #2d0b00);*/
  padding: 0px 0 30px;
  border-top-left-radius: 125px;
  font-size: 13px;
  line-height: 20px;
  background: url("../images/bg.02e620d1e1bc.png") no-repeat;
}

/*footer .row{
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
*/

footer .row .col {
  flex-basis: 25%;
  padding: 10px;
}


footer .col:nth-child(2),
footer .col:nth-child(3),
footer .col:nth-child(4) {
  flex-basis: 10%; /* Sets the flex basis to 15% for these specific columns */
}

footer .col h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

footer .col h2 {
  color: #fe6d6a;
  margin-bottom: 2rem;
}

footer .logo {
  margin-bottom: 4rem;
}     

footer img{
  width: 20rem;
} 

footer ul{
  padding-left: 0;
}

footer ul li {
  list-style: none;
  margin-bottom: 12px;
  font-weight: bold;
}

footer ul li a {
  text-decoration: none;
  color: #000;
}

footer .social-icons .fa-brands{
  width: 20px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #fe6d6a;
  margin-right: 15px;
  cursor: pointer;
}

footer .row .col form {
  min-width: 270px;
  max-width: 270px;
  padding: 4px;
  background: #dbd4d4;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

footer form input {
  outline: none;
  border: none;
  padding: 8px;
  background: none;
  width: 180px;
}

footer form button {
  background: #fe6d6a;
  border: none;
  padding: 8px;
  border-radius: 16px;
}

hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}

.copyright{
  text-align:center;
}

@media (max-width: 768px) {
    footer .row .col:nth-of-type(1) {
        flex-basis: 100%;
    }

   .services {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
    }

    .services menu {
        place-content: center;
        place-items: center;
    }
}
