/*------------global------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1342px;    
}    
html,body {
    /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
    
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    color: rgb(84, 84, 84);
    overflow-x: hidden;
    background-color: var(--bg-color);
}
:root {
    --blue-color: #0B3948;
    --yellow-color: #FFD470;
    --bg-color: #F7F5F2;
    --purple-color:  #6B2875;
}
p, li, a{
    font-family: "Inter", sans-serif;
}

h2, h1{
    font-family: 'Recoleta';
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    font-size: 54px;
    color: var(--blue-color);
}


a {
    text-decoration: none;
}

.cta-btn, .cta-btn2{
    padding: 15px 35px;
    background-color: var(--yellow-color);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    color:#0B3948;
    margin-right: 20px;
}
.cta-btn2{
    background-color: #ffffff;
}
.cta-btn button i{
    padding-left: 15px;
}
.cta-btn .btn2{
    background-color: var(--blue-color);
    color: #ffffff
}
 h6 span{
    text-transform: uppercase;
    font-size: 13px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 2px 2px 3px 2px rgba(218, 210, 210);
    text-align: center;
    padding: 5px 10px;
 } 
 h4{
    color: var(--blue-color);
 }
 .dis li{
    list-style: none;
 }
/*------------global end------------*/

/*------------navbar------------*/
 /* .navbar {   
    background-color: #ffffff;
    line-height: 84px;
}
 ul li {
    list-style: none;
}
 .navbar ul li a {
    font-size: 18px;
    color: rgb(84, 84, 84);
    line-height: 24px;
}
.navbar .logo{
    background-color: var(--blue-color); height: 55px; border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .logo img{
    width: 250px;
}
.btn{
    background-color: var(--blue-color);
    color: #ffffff;
    padding: 14px 35px;
    font-size: 22px;
    font-weight: 600;
}

.navbar .dropdown{
   position: relative;
}

.navbar .dropdown ul {
    position: absolute;
    top: 175%;
    background-color: #ffffff;
    z-index: 10;
    width: 300px;
    box-shadow: 0px 0px 4px 2px rgb(241, 239, 239);
    opacity: 0;
    transform: translateY(20px); 
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease; 
}


.navbar .dropdown:hover ul {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.navbar .dropdown ul li{
    line-height: 44px;
} */
/*------------navbar end------------*/


/* ---------------------first section--------------- */
/*------------first part------------*/
.first-sec{
    background-color: var(--bg-color);
    padding: 90px 0px 50px 0px;  
    position: relative;
}

.small-circle {
    width: 12px;
    height: 12px;
    background-color: var(--blue-color);
    border-radius: 50%;
    position: absolute;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: diagonal-revolution 12s infinite ease-in-out;
    z-index: 100;
}

/* Keyframes for diagonal movement + half-circle revolution */
@keyframes diagonal-revolution {
    /* Move diagonally at 45 degrees */
    0% {
        transform: translate(-50%, -50%) translateX(0) translateY(0);
    }
    25% {
        transform: translate(-50%, -50%) translateX(100px) translateY(-100px); /* Move 45 degrees */
    }

    /* Half circle revolution */
    50% {
        transform: translate(-50%, -50%) translateX(100px) translateY(-100px) rotate(100deg) translateX(100px); /* Half revolution */
    }

    /* Move back along the same path */
    75% {
        transform: translate(-50%, -50%) translateX(100px) translateY(-100px); /* Move back to original 45-degree point */
    }

    100% {
        transform: translate(-50%, -50%) translateX(0) translateY(0); /* Return to start */
    }
}





.hero h6 span{
    font-size: 13px;
    background: white;
    padding: 5px 10px;
    border-radius: 18px;
}
.hero h1{
    color: var(--blue-color);
    font-size: 45px;
}
.hero .cta-btn2{
    background-color: var(--blue-color);
    color: white;
}
.hero .cta-btn2:hover{
    background-color: var(--yellow-color);
    color: var(--blue-color);
    transition: .5s ease-in-out;
}
 .cta-btn:hover{
    background-color: var(--blue-color);
    color: white;
    transition: .5s ease-in-out;
}
.hero .cta-btn:hover i{
 margin-left: 18px !important;
}
.hero .number h4{
 font-size: 40px;
 color: var(--blue-color);
}
.hero .number img{
    margin-right: 15px;
}
.numbers{
    display: flex;
    align-items: center;
}

.number img {
    max-width: 100%; 
    height: auto;  
    flex-shrink: 0; 
}
.first-sec .right{
    position: relative;
}

.hero .child{
position: absolute;
top: -45%;
left: 2%;
}
.hero .shape{
    position: absolute;
    top: -30%;
    left: -10%;
}
/*------------first part end------------*/

/* ----------------------second part--------------------- */
.about{
    background-color: var(--blue-color);
    color: #ffffff;
    margin: 200px 0px 120px 0px;
    padding: 100px 70px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}
.about h3{
    font-size: 54px;
    line-height: 64px;
}
.about .desc{
    font-size: 17px;
}
.about .content > span{
    font-size: 13px;
    background: #21596D;
    padding: 5px 10px;
    border-radius: 18px;
}
.about h5{
    color: #CBD8ED;
}
.about h5 i{
    color: var(--yellow-color);
}
.about .content .shape .shape1{
 position: absolute;
 top: 0;
 left: 0;
}
.about .content .shape .shape2{
    position: absolute;
    bottom: 0;
    left: 0;
}
.about .content .shape .shape3{
    position: absolute;
    top: 0;
    right: 0;
   }
   .about .content .shape .shape4{
       position: absolute;
       bottom: 0;
       right: 0;
   }


   .circle-container {
    position: relative;
    display: inline-block;
    margin: 50px; /* Adjust as needed */
    transition: transform 0.3s ease;
}



.circle, .circle2, .circle3 {
    width: 10px;
    height: 10px;
    background-color: #FFD470;
    border-radius: 50%;
    
    box-shadow: 
        0 0 10px 5px rgba(255, 212, 112, 0.5), s
        0 0 20px 10px rgba(255, 212, 112, 0.3);
    position: relative; 
    transition: width 0.3s ease, height 0.3s ease;
}

.map-area{
    position: relative;
}
.c1{
    position: absolute;
    top: 15%;
    left: 12%;
}
.c2{
    position: absolute;
    top: 10%;
    right: 28%;
}
.c3{
    position: absolute;
    bottom: 26%;
    right: 37%;
}
.circle-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 212, 112, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.circle-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 33px;
    height: 33px;
    background: rgba(255, 212, 112, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.circle-container:hover .circle , .circle-container:hover .circle2 , .circle-container:hover .circle3 {
    width: 20px; 
    height: 20px;
    border: 4px solid black; 
}

.circle-container:hover::before  {
    width: 60px; 
    height: 60px; 
    border: 2px solid black; 
    background-color:#CEB467;
    
}

.circle-container:hover::after {
    width: 81px;
    height: 81px; 

}
 /* Tooltip container */
 .tooltip-text {
    visibility: hidden;
    height: 10px;
    border-radius: 5px;
     width: 400px;
     color: var(--blue-color);
    /* Positioning the tooltip */
    position: absolute;
    top: 40px;
    left: -210%;
    transform: translateX(-50%);
    z-index: 1;

    /* Animation for smooth appearance */
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tooltip-text img{
    height: 100%;
    width: 100%;
}

/* Show the tooltip text when hovering over the circle */
.circle-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Active class to show the tooltip by default */
.circle-container.active .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Hide the default active tooltip when hovering over another circle */
.circle-container:hover ~ .circle-container.active .tooltip-text {
    visibility: hidden;
    opacity: 0;
}

/* ----------------------second end--------------------- */

/* ----------------------third part--------------------- */
.trusted-section {
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 80px;
  }
  .trusted-section h3{
    font-family: cursive;
    font-size: 37px;
    font-weight: 700;
   border-bottom: 1px solid rgba(0, 0, 0, .2);
   display: inline;
   padding-bottom: 25px;
  }
  .trusted-section h3 img{
    width: 70px;
  }
  .trusted-section .owl-carousel .owl-nav{
    display: none;
  }

  .trusted-section h5 a {
    color: rgb(84, 84, 84); 
    font-family: poppins;
    font-weight: 600; 
  }
  .trusted-section h5:hover{
    transform: scale(1.1);
    transition: .2s ease-in;
  }
.trusted-section .cta-btn2{
    background-color: var(--blue-color);
    color: white;
}
.trusted-section .cta-btn2:hover{
    background-color: var(--yellow-color);
    color: var(--blue-color);
    transition: .5s ease-in-out;
}
  .owl-carousel .item {
    padding: 20px;
}
  /* ----------------------third part--------------------- */

  /* ---------------------first section end--------------- */


    /* --------------------- second section--------------- */
   




/*----------new main service-----------*/
.new-service {
    background-color: var(--purple-color);
    padding: 120px 0px 60px 0px;
    position: relative;
}
.new-service .we-love img{
    position: absolute;
    top: -40px;
    left: 60px;
    width: 100px;
}
.new-service h4 a, .new-service i{
 color: black;
}

.new-service h6,
.new-service p,
.new-service h2 {
    color: white;
}

.new-service h4 {
    font-size: 26px;
    line-height: 38px;
    color: rgb(11, 57, 72);
}

.new-service img {
    height: auto; /* Maintain aspect ratio */
}

.new-service p {
    font-size: 20px;
}

.new-service .card {
    padding: 22px;
    border-radius: 18px;
    position: relative; /* Required for absolute positioning of shadow */
}

.new-service .card img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 18px;
    transition: transform 0.3s ease; /* Smooth transition for the image */
}

.new-service .cta-btn {
    border-radius: 40px;
    padding: 17px 40px;
}

.new-service .card p {
    color: rgb(93, 106, 131);
    font-size: 18px;
    line-height: 26px;
}

.new-service .card a i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    background-color: var(--yellow-color);
    font-size: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-40deg);
    z-index: 10;
}

.new-service .img-sec {
    position: relative; /* Positioning context for shadow */
    overflow: hidden; /* Ensures shadow does not overflow the image */
}

.new-service .shadow-effect {
    position: absolute;
    top: -100%; /* Start above the image */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Shadow color and transparency */
    opacity: 0; /* Initially invisible */
    transition: opacity 0.5s ease, top 0.5s ease; /* Smooth transition */
    z-index: 2; /* Ensure it appears above the image */
}

.new-service .card:hover .shadow-effect {
    opacity: 1; /* Make shadow visible on hover */
    top: 0; 
}

.new-service .card:hover img {
    transform: scale(1.05);
    
}

/*----------new main service end-----------*/





/* -------------new steps-------------- */
.steps{
    padding: 120px 0px 100px 0px;
    background-color: #F4F3EF;
}

.steps .cards{
    margin-top: 150px;
}
.steps .content h4{
    font-size: 26px;
    color: var(--blue-color);
}
.steps p{
    font-size: 18px;
}
.steps .first, .three-steps .second, .three-steps .third{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 19px; 
    margin-left: 30px; 
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}
.steps .first{
    position: absolute;
    bottom: -10px;
    right: 38%;
}
.steps .item{
    position: relative;
}

.steps .item .content{
    background-color: #67A859;
    padding: 120px 0px 30px 0px;
    border-radius: 18px;
    height: 300px;
}

.steps .item .content {
    background-color: transparent;
    border-radius: 18px;
    height: 300px;
    transition: background-color 0.5s ease, transform 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1; 
}

.steps .item.active .content {
    background-color: #67A859;
    transform: translateY(0);
    color: #fff; 
}

.steps .item .content::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #67A859;
    transition: top 0.5s ease;
    z-index: 0; 
}

.steps .item:hover .content::before {
    top: 0;
}

.steps .item .content {
    position: relative;
    z-index: 1; 
}

.steps .item.active .content::before {
    top: 0;
}

.steps .img-num {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2; 
    max-width: 100%;
    height: auto;
}

.steps .img-num img {
    max-width: 100%;
    height: auto;
    display: block;
}

.steps .item .content h4,
.steps .item .content p {
   color: inherit;
    z-index: 2; 
    position: relative;
}


/* -------------new steps end-------------- */

/* ---------------------second section end--------------- */


/* ---------------------third section --------------- */
.third-section{
    background-color: var(--bg-color);
}
.three-steps{
    position: relative;
}
.three-steps .item{
   margin: 35px 0px;
}
.three-steps .shape{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.three-steps .item img{
    border-radius: 18px;
}

.three-steps .item img:hover{
    transform: scale(1.1);
    transition: .3s ease-in-out;
}
.three-steps h4{
    color: var(--blue-color);
}
.three-steps .first, .three-steps .second, .three-steps .third{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    font-size: 19px; 
    margin-left: 30px; 
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}
.three-steps .item .number{
    position: relative;
}
.three-steps .item .first{
    position: absolute;
    right: 15%;
    top: 30%;
    z-index: 10;
}
.three-steps .item .second{
      z-index: 10;
    position: absolute;
    bottom: 2px;
    right: 45%;
}
.three-steps .item .third{
    position: absolute;
    left: 8%;
    top: 30%;
    z-index: 10;
}
/* ---------------------third section end--------------- */


/* ---------------------Getting started with a new plan--------------- */
.new-plan .shape2{
    position: absolute;
    bottom: 0;
    left: 0;
}
.new-plan .shape3{
    position: absolute;
    top: 0;
    right: 0;
}
.new-plan h4{
    color: white;
    font-size: 22px;
    font-weight: 600;
}
.new-plan h3{
    font-size: 30px;
    line-height: 38px;
}
.new-plan p{
    font-size: 18px;
}
.new-plan .card{
    background-color: var(--blue-color);
    color: #ffffff;
    padding: 70px;
    position: relative;
    border-radius: 18px;
}

.new-plan ul{
    padding: 0;
}
.new-plan .icon-text {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 10px; 
}

.new-plan .icon-text i {
    width: 18px; 
    height: 18px; 
    border-radius: 50%; 
    background-color: var(--yellow-color); 
    color: var(--blue-color); 
    display: flex;
    justify-content: center; 
    align-items: center;  
    margin-right: 10px;
    flex-shrink: 0; 
    font-size: 12px;
    margin-top: 4px;
    margin-right: 12px;
}

.new-plan ul li{
    list-style: none;
    display: flex;
    margin: 3px 0px;
    font-size: 18px;
}

.new-plan .card .cta-btn:hover{
    background-color: white;
    color: var(--blue-color);
}
.new-plan .card .cta-btn2:hover{
    background-color: var(--yellow-color);
    color: var(--blue-color);
}

/* ---------------------Getting started with a new plan end--------------- */


 /* ---------------three steps----------------- */
.three-btn{
    background-color: #ffffff;
    padding: 20px 65px;
}
.three-btn i{
    background-color: #F7F5F2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
}
.three-btn i {
    background-color: #F7F5F2;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    position: relative; /* Ensure pseudo-element is positioned correctly */
    z-index: 1; /* Keep icon on top */
}


/* On hover, rotate the border only */
.three-btn i:hover::after {
    content: '';
    position: absolute;
    top: -10px; /* Adjust for distance between border and icon */
    left: -10px;
    width: calc(100% + 20px); /* Adjust size to surround the icon */
    height: calc(100% + 20px);
    border: 2px dotted var(--blue-color); /* Dotted border */
    border-radius: 50%; /* Circular shape */
    z-index: -1; /* Keep border behind the icon */
    transform-origin: center;
    animation: rotateBorder 15s linear infinite;
}

/* Keyframes to handle border rotation */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.three-btn h4{   
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    padding-top: 6px;
}

   /* ---------------three steps----------------- */
  


     /* ---------------testimonial ----------------- */
     .testimonial{        
        margin: 150px 0px 0px 0px;
        padding-bottom: 10px;
        padding: 100px 0px;        
        background-color: var(--purple-color);
        position: relative;
   }
   .testimonial .we-love img{
    position: absolute;
    top: -40px;
    left: 60px;
   }
     .testimonial .card{
        padding: 0px 50px 50px;
     }
     .testimonial h2{
        color: #ffffff;
     }
.testimonial .card img{
 border-radius: 50%;
}
.testimonial .t1{
    background-color: var(--purple-color);
    padding: 20px;
    border-radius: 0px 0px 50% 50%;
    width: 175px;
}
.testimonial .content{
    padding: 30px;
}
.testimonial .content i{
    color: var(--yellow-color);
    margin-top: 12px;
    font-size: 18px;
}
.testimonial .content span{
    margin-left: 5px;
    font-size: 19px;
}
.testimonial .card p{
    font-size: 20px;
    margin-top: 40px;
}
.testimonial h5{
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
}
    /* ---------------testimonial end----------------- */

        /* ---------------third section end----------------- */




/* ---------------------award--------------- */
.award{
    background-color: #ffffff;
    padding: 100px 60px;
    overflow: hidden;
    height: 600px;
    position: relative;
}

.award .logo img {
    display: block;
    margin-bottom: 40px; 
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    padding: 35px;
    width: 180px;
}



/* --------------------award end--------------- */

/* ---------------------last child sec--------------- */
.child-sec{
    background-color: var(--blue-color);
    min-height: 300px;
    position: relative;
    color: #ffffff;
    border-radius: 20px;
    transform: translateY(155px);
}
.child-sec .content{
    padding: 60px;
}
.child-sec .content h2{
    color: #ffffff;
    font-size: 34px;
    line-height: 44px;
}
.child-sec img{
    position: absolute;
    bottom: 0;
    right: 0;
}
.child-sec a:hover{
 background-color: var(--yellow-color);
 color: var(--blue-color);
}
/* ---------------------last child sec end--------------- */


/* ---------------------footer--------------- */
footer{
    background-color: #051C22;
    padding: 0px 0px;
    color: #ffffff;
}
footer .content{
 padding:  250px 0px 50px 0px;
}
footer h6{
    margin-bottom: 22px;
}
footer .first-c h5{
 font-size: 21px;
}
footer .first-c i{
    width: 18px; 
    height: 18px; 
    border-radius: 50%; 
    background-color: var(--yellow-color); 
    color: var(--blue-color); 
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-shrink: 0; 
    font-size: 15px;
    margin-top: 4px;
}
footer .first-c i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0B3948;
    color: var(--yellow-color);
}
footer .second-list li{
    list-style: none;
    margin: 12px 0px;
}
footer .second-list li a{
    color: #ffffff;
}
footer .second-list li a:hover{
   text-decoration: underline;
}
footer .second-list li span{
    color: var(--yellow-color);
}

footer .second-list .social-icon i{
    background-color: var(--yellow-color);
    padding: 7px;
    border-radius: 5%;
    color: var(--blue-color);
    display: inline;
}


footer .copyright i{
    color: rgb(143, 142, 142);
}
/* ---------------------footer end--------------- */



/* ---------------------service page--------------- */
 .service-page {
    background-image: url('../img/about.jpg');
    height: 380px;
    background-position: right;
    padding: 110px 20px;
    display: flex;
    align-items: center;
} 
 
.service-page h1, .service-page span{
    color: #ffffff;
}

  .second-sec{
    padding: 150px 0px 30px 0px; 
   }
 
 .second-sec h2{
    text-align: center;
    color: var(--blue-color);
 }
 .second-sec .card{
    padding: 40px;
    border-radius: 18px;
    transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, color 0.5s ease-in-out;    
 }
 .second-sec a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    display: flex;
}

.second-sec a i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 19px; 
    margin-left: 30px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
    transform: rotate(-40deg);
    transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.second-sec .item h4{
    color: var(--blue-color);
    font-weight: 600;
    font-size: 25px;
}
.second-sec .item p{
    font-size: 17px;
}
.second-sec .item:hover .card{
    background-color: var(--blue-color);
    color: #ffffff;
}
.second-sec .item:hover h4{
   color: #ffffff;
}
.second-sec .item:hover a i{
    transform: rotate(0deg);
    background-color: var(--yellow-color);
    color: var(--blue-color);
}  
.second-sec .item:hover a{
    color: #ffffff;
}  
/* ---------------------service page end--------------- */


/* ---------------------sub service page-------------- */
.sub-service-page{
 margin: 130px 0px;
}
.sub-service-page h3{
    font-size: 45px;
    line-height: 55px;
    color: var(--blue-color);
}
.sub-service-page p{
    font-size: 17px;
    line-height: 30px;
    margin: 30px 0px;  
color:rgb(93, 106, 131);
}
.sub-service-page ul li{
    font-size: 18px;
    line-height: 40px;
}
.sub-service-page h4{
    margin-top: 30px;
}
.sub-service-page .content-second{
    margin: 110px 0px;
   }
   .sub-service-page .content-second i{
    background-color: var(--bg-color);
    padding: 5px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 4px;
   }
   .sub-service-page .content-second .card{
    border:none;
    padding: 20px 17px;
    border-radius: 10px;
   }
   .sub-service-page .card h6{
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-color);
    padding: 6px 0px 0px 0px;
   }
/* ---------------------sub service page end--------------- */

/*------------------contact-page----------------------*/
.contact-page-card {
    margin-top: 130px;
    padding: 0 30px;
}

.contact-page-card .card {
    height: 300px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center */
    align-items: center; /* Horizontally center */
    text-align: center;
}

.contact-page-card .card h6 {
    line-height: 60px;
    color: var(--blue-color);
    font-size: 18px;
    font-weight: 600;
}
.contact-page-card .card p{
    font-size: 18px;
    font-weight: 600;
}
.contact-page-card .card i {
    background-color: #F7F5F2;
    padding: 15px 18px;
    height: 45px;
    width: 45px;
    display: inline;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    font-size: 25px;
    line-height: 50px;
    color: var(--blue-color);   
}
.contact-page-card a{
    color: #695E59;
}


.contact-page-form{
    margin-top: 130px;
}

.contact-page-form .left{
    background-color: white;
    padding: 60px 50px;    
    border-radius: 20px;
}
.contact-page-form input{
    background-color: var(--bg-color);
}
.contact-page-form h3{
    font-size: 35px;
    color: var(--blue-color);
}
.contact-page-form p{
    font-size: 18px;

    color: var(--blue-color);
}
.contact-page-form label{
    color: var(--blue-color);
    line-height: 40px;
}
.contact-page-form input{
    padding: 14px 20px;
}
.contact-page-form textarea{
    padding-bottom: 90px;
    background-color: var(--bg-color);
}

.contact-page-form a{
    background-color: var(--blue-color);
    color: white;
}
.contact-page-form iframe{
    border-radius: 18px;
    width: 100%;
    height: 750px;
}



/*--------------about us--------------*/
.about-us{
    margin: 120px 0px;
}

.about-us-first-sec{
    padding: 0px 80px;
}
.about-us-first-sec h4{
    font-size: 25px;
    padding: 20px 0px;
}
.about-us-first-sec p{
    font-size: 18px;
}
.about-us-first-sec i{
    font-size: 35px;
}